core.mk revision 2ad721bcc7b3b5ece412a8658667e7b5a07da533
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    com.android.location.provider \
29    com.android.location.provider.xml \
30    core \
31    core-junit \
32    dalvikvm \
33    dexdeps \
34    dexdump \
35    dexlist \
36    dexopt \
37    dmtracedump \
38    dx \
39    ext \
40    framework-res \
41    hprof-conv \
42    icu.dat \
43    installd \
44    ip-up-vpn \
45    libcrypto \
46    libdex \
47    libdvm \
48    libexpat \
49    libicui18n \
50    libicuuc \
51    libjavacore \
52    libnativehelper \
53    libnfc_ndef \
54    libOpenMAXAL \
55    libOpenSLES \
56    libsqlite_jni \
57    libssl \
58    libwilhelm \
59    libz \
60    sqlite-jdbc \
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