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