core.mk revision d3763c42144612bf2bf17bcdf1f1e75832b5dafd
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    BackupRestoreConfirmation \
28    Browser \
29    Contacts \
30    ContactsProvider \
31    DefaultContainerService \
32    DownloadProvider \
33    DownloadProviderUi \
34    HTMLViewer \
35    Home \
36    KeyChain \
37    MediaProvider \
38    PackageInstaller \
39    PicoTts \
40    SettingsProvider \
41    SharedStorageBackup \
42    TelephonyProvider \
43    UserDictionaryProvider \
44    VpnDialogs \
45    apache-xml \
46    bouncycastle \
47    bu \
48    cacerts \
49    com.android.location.provider \
50    com.android.location.provider.xml \
51    core \
52    core-junit \
53    dalvikvm \
54    dexdeps \
55    dexdump \
56    dexlist \
57    dexopt \
58    dmtracedump \
59    drmserver \
60    dx \
61    ext \
62    framework-res \
63    hprof-conv \
64    icu.dat \
65    installd \
66    ip \
67    ip-up-vpn \
68    ip6tables \
69    iptables \
70    keystore \
71    keystore.default \
72    libandroidfw \
73    libOpenMAXAL \
74    libOpenSLES \
75    libaudiopreprocessing \
76    libaudioutils \
77    libcrypto \
78    libdownmix \
79    libdvm \
80    libdrmframework \
81    libdrmframework_jni \
82    libexpat \
83    libfilterfw \
84    libfilterpack_imageproc \
85    libgabi++ \
86    libicui18n \
87    libicuuc \
88    libjavacore \
89    libkeystore \
90    libmdnssd \
91    libnativehelper \
92    libnfc_ndef \
93    libpowermanager \
94    libspeexresampler \
95    libsqlite_jni \
96    libssl \
97    libstagefright_soft_aacdec \
98    libstagefright_soft_aacenc \
99    libstagefright_soft_amrdec \
100    libstagefright_soft_amrnbenc \
101    libstagefright_soft_amrwbenc \
102    libstagefright_soft_g711dec \
103    libstagefright_soft_h264dec \
104    libstagefright_soft_h264enc \
105    libstagefright_soft_mp3dec \
106    libstagefright_soft_mpeg4dec \
107    libstagefright_soft_mpeg4enc \
108    libstagefright_soft_vorbisdec \
109    libstagefright_soft_vpxdec \
110    libstagefright_soft_rawdec \
111    libvariablespeed \
112    libwebrtc_audio_preprocessing \
113    libwilhelm \
114    libz \
115    mdnsd \
116    requestsync \
117    screencap \
118    sensorservice \
119    lint
120
121PRODUCT_COPY_FILES += \
122    system/core/rootdir/init.usb.rc:root/init.usb.rc \
123
124# host-only dependencies
125ifeq ($(WITH_HOST_DALVIK),true)
126    PRODUCT_PACKAGES += \
127        apache-xml-hostdex \
128        bouncycastle-hostdex \
129        core-hostdex \
130        libcrypto \
131        libexpat \
132        libicui18n \
133        libicuuc \
134        libjavacore \
135        libssl \
136        libz-host \
137        dalvik
138endif
139