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