core.mk revision 14052b8db5fbc1da593b0a9b29ebb1a1848232ee
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    apache-xml \
27    bouncycastle \
28    bu \
29    cacerts \
30    com.android.location.provider \
31    com.android.location.provider.xml \
32    core \
33    core-junit \
34    dalvikvm \
35    dexdeps \
36    dexdump \
37    dexlist \
38    dexopt \
39    dmtracedump \
40    dx \
41    ext \
42    framework-res \
43    hprof-conv \
44    icu.dat \
45    installd \
46    ip-up-vpn \
47    libcrypto \
48    libdex \
49    libdvm \
50    libexpat \
51    libgabi++ \
52    libicui18n \
53    libicuuc \
54    libjavacore \
55    libnativehelper \
56    libnfc_ndef \
57    libOpenMAXAL \
58    libOpenSLES \
59    libsqlite_jni \
60    libssl \
61    libstagefright_soft_aacdec \
62    libstagefright_soft_amrdec \
63    libstagefright_soft_avcdec \
64    libstagefright_soft_g711dec \
65    libstagefright_soft_mp3dec \
66    libstagefright_soft_mpeg4dec \
67    libstagefright_soft_vorbisdec \
68    libstagefright_soft_vpxdec \
69    libwilhelm \
70    libfilterfw \
71    libfilterpack_imageproc \
72    libz \
73    wpa_supplicant.conf \
74    KeyChain \
75    Browser \
76    Contacts \
77    Home \
78    HTMLViewer \
79    ApplicationsProvider \
80    BackupRestoreConfirmation \
81    ContactsProvider \
82    VoicemailProvider \
83    DownloadProvider \
84    DownloadProviderUi \
85    MediaProvider \
86    PicoTts \
87    SettingsProvider \
88    TelephonyProvider \
89    TtsService \
90    VpnServices \
91    UserDictionaryProvider \
92    PackageInstaller \
93    DefaultContainerService \
94    Bugreport \
95    ip \
96    screencap \
97    sensorservice \
98    libspeexresampler \
99    libwebrtc_audio_preprocessing
100
101# host-only dependencies
102ifeq ($(WITH_HOST_DALVIK),true)
103    PRODUCT_PACKAGES += \
104        bouncycastle-hostdex \
105        core-hostdex \
106        libjavacore-host \
107        dalvik
108endif
109