core_tiny.mk revision 0e35df2a7c77a6308106fa9a48f90c4729b9b8f3
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    ContactsProvider \
22    CertInstaller \
23    FusedLocation \
24    InputDevices \
25    bluetooth-health \
26    hostapd \
27    wpa_supplicant.conf
28
29PRODUCT_PACKAGES += \
30    audio \
31    clatd \
32    clatd.conf \
33    dhcpcd.conf \
34    network \
35    pand \
36    pppd \
37    sdptool \
38    wpa_supplicant
39
40PRODUCT_PACKAGES += \
41    audio.primary.default \
42    audio_policy.default \
43    local_time.default \
44    power.default
45
46PRODUCT_PACKAGES += \
47    local_time.default
48
49PRODUCT_PACKAGES += \
50    BackupRestoreConfirmation \
51    DefaultContainerService \
52    SettingsProvider \
53    Shell \
54    bu \
55    com.android.location.provider \
56    com.android.location.provider.xml \
57    framework-res \
58    installd \
59    ip \
60    ip-up-vpn \
61    ip6tables \
62    iptables \
63    keystore \
64    keystore.default \
65    libOpenMAXAL \
66    libOpenSLES \
67    libdownmix \
68    libfilterfw \
69    libsqlite_jni \
70    libwilhelm \
71    make_ext4fs \
72    screencap \
73    sensorservice \
74    uiautomator
75
76# The order matters
77PRODUCT_BOOT_JARS := \
78    core \
79    conscrypt \
80    okhttp \
81    core-junit \
82    bouncycastle \
83    ext \
84    framework \
85    framework2 \
86    android.policy \
87    services \
88    apache-xml
89
90PRODUCT_RUNTIMES := runtime_libdvm_default
91
92PRODUCT_PROPERTY_OVERRIDES += \
93    ro.carrier=unknown
94
95$(call inherit-product-if-exists, frameworks/base/data/fonts/fonts.mk)
96
97# Overrides
98PRODUCT_BRAND := tiny
99PRODUCT_DEVICE := tiny
100PRODUCT_NAME := core_tiny
101
102$(call inherit-product, $(SRC_TARGET_DIR)/product/base.mk)
103