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
18PRODUCT_BRAND := Fuchsia
19PRODUCT_MODEL := Fuchsia
20
21# Define the Fuchsia product.
22PRODUCT_FUCHSIA := true
23
24# Don't build ramdisk for Fuchsia.
25PRODUCT_BUILD_RAMDISK_IMAGE := false
26
27# default is nosdcard, S/W button enabled in resource
28PRODUCT_CHARACTERISTICS := nosdcard
29
30art_apex := com.android.art.release
31ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
32    art_apex := com.android.art.debug
33endif
34
35# Hand-picked packages.
36PRODUCT_PACKAGES += \
37    art-runtime \
38    bouncycastle.$(art_apex) \
39    conscrypt.com.android.conscrypt \
40    core-icu4j.$(art_apex) \
41    core-libart.$(art_apex) \
42    core-oj.$(art_apex) \
43    dalvikvm.$(art_apex) \
44    libart.$(art_apex) \
45    libjavacore.$(art_apex) \
46    libopenjdk.$(art_apex) \
47    okhttp.$(art_apex)
48
49art_apex :=
50
51# Fuchsia only has 64-bit support.
52TARGET_SUPPORTS_32_BIT_APPS := false
53TARGET_SUPPORTS_64_BIT_APPS := true
54
55# The target has no boot jars to check.
56SKIP_BOOT_JARS_CHECK := true
57