core.mk revision 471f851141f105cf35be8596cf2cfe26801f8874
1#
2# Copyright (C) 2007 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
17PRODUCT_BRAND := generic
18PRODUCT_DEVICE := generic
19PRODUCT_NAME := core
20
21PRODUCT_PROPERTY_OVERRIDES := \
22    ro.config.notification_sound=OnTheHunt.ogg \
23    ro.config.alarm_alert=Alarm_Classic.ogg
24
25PRODUCT_PACKAGES += \
26    ApplicationsProvider \
27    BackupRestoreConfirmation \
28    BasicDreams \
29    Browser \
30    Contacts \
31    ContactsProvider \
32    DefaultContainerService \
33    DownloadProvider \
34    DownloadProviderUi \
35    HTMLViewer \
36    Home \
37    KeyChain \
38    MediaProvider \
39    PackageInstaller \
40    PicoTts \
41    SettingsProvider \
42    SharedStorageBackup \
43    Shell \
44    TelephonyProvider \
45    UserDictionaryProvider \
46    VpnDialogs \
47    abcc \
48    apache-xml \
49    atrace \
50    bouncycastle \
51    bu \
52    cacerts \
53    com.android.location.provider \
54    com.android.location.provider.xml \
55    core \
56    core-junit \
57    dalvikvm \
58    dexdeps \
59    dexdump \
60    dexlist \
61    dexopt \
62    dmtracedump \
63    drmserver \
64    dx \
65    ext \
66    framework-res \
67    hprof-conv \
68    icu.dat \
69    installd \
70    ip \
71    ip-up-vpn \
72    ip6tables \
73    iptables \
74    keystore \
75    keystore.default \
76    libandroidfw \
77    libOpenMAXAL \
78    libOpenSLES \
79    libaudiopreprocessing \
80    libaudioutils \
81    libbcc \
82    libcrypto \
83    libdownmix \
84    libdvm \
85    libdrmframework \
86    libdrmframework_jni \
87    libexpat \
88    libfilterfw \
89    libfilterpack_imageproc \
90    libgabi++ \
91    libicui18n \
92    libicuuc \
93    libjavacore \
94    libkeystore \
95    libmdnssd \
96    libnativehelper \
97    libnfc_ndef \
98    libportable \
99    libpowermanager \
100    libspeexresampler \
101    libsqlite_jni \
102    libssl \
103    libstagefright \
104    libstagefright_chromium_http \
105    libstagefright_soft_aacdec \
106    libstagefright_soft_aacenc \
107    libstagefright_soft_amrdec \
108    libstagefright_soft_amrnbenc \
109    libstagefright_soft_amrwbenc \
110    libstagefright_soft_flacenc \
111    libstagefright_soft_g711dec \
112    libstagefright_soft_gsmdec \
113    libstagefright_soft_h264dec \
114    libstagefright_soft_h264enc \
115    libstagefright_soft_mp3dec \
116    libstagefright_soft_mpeg4dec \
117    libstagefright_soft_mpeg4enc \
118    libstagefright_soft_vorbisdec \
119    libstagefright_soft_vpxdec \
120    libstagefright_soft_vpxenc \
121    libstagefright_soft_rawdec \
122    libvariablespeed \
123    libwebrtc_audio_preprocessing \
124    libwilhelm \
125    libz \
126    make_ext4fs \
127    mdnsd \
128    requestsync \
129    screencap \
130    sensorservice \
131    lint \
132    uiautomator \
133    telephony-common \
134    voip-common \
135    mms-common
136
137# SELinux packages
138PRODUCT_PACKAGES += \
139    sepolicy \
140    file_contexts \
141    seapp_contexts \
142    property_contexts \
143    mac_permissions.xml
144
145# host-only dependencies
146ifeq ($(WITH_HOST_DALVIK),true)
147    PRODUCT_PACKAGES += \
148        apache-xml-hostdex \
149        bouncycastle-hostdex \
150        core-hostdex \
151        libcrypto \
152        libexpat \
153        libicui18n \
154        libicuuc \
155        libjavacore \
156        libssl \
157        libz-host \
158        dalvik
159endif
160
161$(call inherit-product, $(SRC_TARGET_DIR)/product/base.mk)
162