core.mk revision 38e11482d568df1745eee3176be976429286a22c
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    libicui18n \
52    libicuuc \
53    libjavacore \
54    libnativehelper \
55    libnfc_ndef \
56    libOpenMAXAL \
57    libOpenSLES \
58    libsqlite_jni \
59    libssl \
60    libwilhelm \
61    libz \
62    wpa_supplicant.conf \
63    Browser \
64    Contacts \
65    Home \
66    HTMLViewer \
67    ApplicationsProvider \
68    BackupRestoreConfirmation \
69    ContactsProvider \
70    DownloadProvider \
71    DownloadProviderUi \
72    MediaProvider \
73    PicoTts \
74    SettingsProvider \
75    TelephonyProvider \
76    TtsService \
77    VpnServices \
78    UserDictionaryProvider \
79    PackageInstaller \
80    DefaultContainerService \
81    Bugreport \
82    ip \
83    screencap
84
85# host-only dependencies
86ifeq ($(WITH_HOST_DALVIK),true)
87    PRODUCT_PACKAGES += \
88        bouncycastle-hostdex \
89        core-hostdex \
90        libjavacore-host \
91        dalvik
92endif
93