core_tiny.mk revision b9171a320680a85f4302c9cdfc2b2f54516f9c3f
1#
2# Copyright (C) 2013 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# Tiny configuration for small devices such as wearables. Includes base and embedded.
17# No telephony
18
19PRODUCT_PACKAGES := \
20    Bluetooth \
21    CalendarProvider \
22    ContactsProvider \
23    CertInstaller \
24    FusedLocation \
25    InputDevices
26
27PRODUCT_PACKAGES += \
28    clatd \
29    clatd.conf \
30    pppd
31
32PRODUCT_PACKAGES += \
33    audio.primary.default \
34    audio_policy.default \
35    local_time.default \
36    power.default
37
38PRODUCT_PACKAGES += \
39    BackupRestoreConfirmation \
40    DefaultContainerService \
41    SettingsProvider \
42    Shell \
43    bcc \
44    bu \
45    com.android.location.provider \
46    com.android.location.provider.xml \
47    framework-res \
48    installd \
49    ims-common \
50    ip \
51    ip-up-vpn \
52    ip6tables \
53    iptables \
54    gatekeeperd \
55    keystore \
56    keystore.default \
57    ld.mc \
58    libOpenMAXAL \
59    libOpenSLES \
60    libdownmix \
61    libfilterfw \
62    libgatekeeper \
63    libkeystore \
64    libwilhelm \
65    libdrmframework_jni \
66    libdrmframework \
67    make_ext4fs \
68    e2fsck \
69    resize2fs \
70    nullwebview \
71    screencap \
72    sensorservice \
73    uiautomator \
74    uncrypt \
75    telephony-common \
76    voip-common \
77    logd \
78    wifi-service
79
80# The order matters
81PRODUCT_BOOT_JARS := \
82    core-oj \
83    core-libart \
84    conscrypt \
85    okhttp \
86    core-junit \
87    bouncycastle \
88    ext \
89    framework \
90    telephony-common \
91    voip-common \
92    ims-common \
93    apache-xml \
94    nullwebview \
95    org.apache.http.legacy.boot
96
97# The order of PRODUCT_SYSTEM_SERVER_JARS matters.
98PRODUCT_SYSTEM_SERVER_JARS := \
99    services \
100    wifi-service
101
102PRODUCT_DEFAULT_PROPERTY_OVERRIDES += \
103    ro.zygote=zygote32
104PRODUCT_COPY_FILES += \
105    system/core/rootdir/init.zygote32.rc:root/init.zygote32.rc
106
107PRODUCT_PROPERTY_OVERRIDES += \
108    ro.carrier=unknown
109
110# Different dexopt types for different package update/install times.
111PRODUCT_DEFAULT_PROPERTY_OVERRIDES += \
112    pm.dexopt.first-boot=interpret-only \
113    pm.dexopt.boot=verify-profile \
114    pm.dexopt.install=interpret-only \
115    pm.dexopt.bg-dexopt=speed-profile \
116    pm.dexopt.ab-ota=speed-profile \
117    pm.dexopt.nsys-library=speed \
118    pm.dexopt.shared-apk=speed \
119    pm.dexopt.forced-dexopt=speed
120
121$(call inherit-product, $(SRC_TARGET_DIR)/product/runtime_libart.mk)
122$(call inherit-product, $(SRC_TARGET_DIR)/product/base.mk)
123$(call inherit-product-if-exists, frameworks/base/data/fonts/fonts.mk)
124$(call inherit-product-if-exists, external/roboto-fonts/fonts.mk)
125
126# Overrides
127PRODUCT_BRAND := tiny
128PRODUCT_DEVICE := tiny
129PRODUCT_NAME := core_tiny
130