Home | History | Annotate | Download | only in fuchsia
      1 #
      2 # Copyright (C) 2019 The Android Open Source Project
      3 #
      4 # Licensed under the Apache License, Version 2.0 (the "License");
      5 # you may not use this file except in compliance with the License.
      6 # You may obtain a copy of the License at
      7 #
      8 #      http://www.apache.org/licenses/LICENSE-2.0
      9 #
     10 # Unless required by applicable law or agreed to in writing, software
     11 # distributed under the License is distributed on an "AS IS" BASIS,
     12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13 # See the License for the specific language governing permissions and
     14 # limitations under the License.
     15 
     16 # Common product definitons.
     17 
     18 PRODUCT_BRAND := Fuchsia
     19 PRODUCT_MODEL := Fuchsia
     20 
     21 # Define the Fuchsia product.
     22 PRODUCT_FUCHSIA := true
     23 
     24 # Don't build ramdisk for Fuchsia.
     25 PRODUCT_BUILD_RAMDISK_IMAGE := false
     26 
     27 # default is nosdcard, S/W button enabled in resource
     28 PRODUCT_CHARACTERISTICS := nosdcard
     29 
     30 # Hand-picked packages.
     31 PRODUCT_PACKAGES += \
     32     art-runtime \
     33     bouncycastle \
     34     conscrypt \
     35     core-libart \
     36     core-oj \
     37     dalvikvm \
     38     libart \
     39     libjavacore \
     40     libopenjdk \
     41     okhttp
     42 
     43 # Fuchsia only has 64-bit support.
     44 TARGET_SUPPORTS_32_BIT_APPS := false
     45 TARGET_SUPPORTS_64_BIT_APPS := true
     46