core.mk revision 7eff81df2ac6c6feeba02bfb9956ac45550cedbe
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    libsqlite_jni \
55    libssl \
56    libz \
57    sqlite-jdbc \
58    wpa_supplicant.conf \
59    Browser \
60    Contacts \
61    Home \
62    HTMLViewer \
63    ApplicationsProvider \
64    ContactsProvider \
65    DownloadProvider \
66    DownloadProviderUi \
67    MediaProvider \
68    PicoTts \
69    SettingsProvider \
70    TelephonyProvider \
71    TtsService \
72    VpnServices \
73    UserDictionaryProvider \
74    PackageInstaller \
75    DefaultContainerService \
76    Bugreport \
77    ip \
78    screencap
79
80# host-only dependencies
81ifeq ($(WITH_HOST_DALVIK),true)
82    PRODUCT_PACKAGES += \
83        bouncycastle-hostdex \
84        core-hostdex \
85        libjavacore-host
86endif
87