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