core_tiny.mk revision abe426663a0534db685f2d44b8cd9a47480fb52f
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    libkeystore \
70    libsqlite_jni \
71    libwilhelm \
72    make_ext4fs \
73    screencap \
74    sensorservice \
75    uiautomator
76
77# The order matters
78PRODUCT_BOOT_JARS := \
79    core \
80    conscrypt \
81    okhttp \
82    core-junit \
83    bouncycastle \
84    ext \
85    framework \
86    framework2 \
87    android.policy \
88    services \
89    apache-xml
90
91PRODUCT_RUNTIMES := runtime_libdvm_default
92
93PRODUCT_PROPERTY_OVERRIDES += \
94    ro.carrier=unknown
95
96$(call inherit-product-if-exists, frameworks/base/data/fonts/fonts.mk)
97
98# Overrides
99PRODUCT_BRAND := tiny
100PRODUCT_DEVICE := tiny
101PRODUCT_NAME := core_tiny
102
103$(call inherit-product, $(SRC_TARGET_DIR)/product/base.mk)
104