core.mk revision 84d1ee8ab3f2e913a6bf0530fd31c260f3fd4234
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    cacerts \
29    com.android.location.provider \
30    com.android.location.provider.xml \
31    core \
32    core-junit \
33    dalvikvm \
34    dexdeps \
35    dexdump \
36    dexlist \
37    dexopt \
38    dmtracedump \
39    dx \
40    ext \
41    framework-res \
42    hprof-conv \
43    icu.dat \
44    installd \
45    ip-up-vpn \
46    libcrypto \
47    libdex \
48    libdvm \
49    libexpat \
50    libicui18n \
51    libicuuc \
52    libjavacore \
53    libnativehelper \
54    libnfc_ndef \
55    libOpenMAXAL \
56    libOpenSLES \
57    libsqlite_jni \
58    libssl \
59    libwilhelm \
60    libz \
61    wpa_supplicant.conf \
62    Browser \
63    Contacts \
64    Home \
65    HTMLViewer \
66    ApplicationsProvider \
67    ContactsProvider \
68    DownloadProvider \
69    DownloadProviderUi \
70    MediaProvider \
71    PicoTts \
72    SettingsProvider \
73    TelephonyProvider \
74    TtsService \
75    VpnServices \
76    UserDictionaryProvider \
77    PackageInstaller \
78    DefaultContainerService \
79    Bugreport \
80    ip \
81    screencap
82
83# host-only dependencies
84ifeq ($(WITH_HOST_DALVIK),true)
85    PRODUCT_PACKAGES += \
86        bouncycastle-hostdex \
87        core-hostdex \
88        libjavacore-host \
89        dalvik
90endif
91