core.mk revision e07a9d4aa4afd27461877fbfd4b132a5c6c34954
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    jasmin \
45    jasmin.jar \
46    libcrypto \
47    libdex \
48    libdvm \
49    libexpat \
50    libicui18n \
51    libicuuc \
52    libjavacore \
53    libnativehelper \
54    libnfc_ndef \
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