core.mk revision 3f9649492bdeb01f3a95350c28da11473beb00a0
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
17# Base configuration for communication-oriented android devices
18# (phones, tablets, etc.).  If you want a change to apply to ALL
19# devices (including non-phones and non-tablets), modify
20# core_minimal.mk instead.
21
22PRODUCT_PROPERTY_OVERRIDES := \
23    ro.config.notification_sound=OnTheHunt.ogg \
24    ro.config.alarm_alert=Alarm_Classic.ogg
25
26PRODUCT_PACKAGES += \
27    BasicDreams \
28    Browser \
29    Contacts \
30    ContactsProvider \
31    DefaultContainerService \
32    Home \
33    KeyChain \
34    PicoTts \
35    SharedStorageBackup \
36    TelephonyProvider \
37    UserDictionaryProvider \
38    VpnDialogs \
39    abcc \
40    atrace \
41    libandroidfw \
42    libaudiopreprocessing \
43    libaudioutils \
44    libbcc \
45    libfilterpack_imageproc \
46    libgabi++ \
47    libkeystore \
48    libmdnssd \
49    libnfc_ndef \
50    libportable \
51    libpowermanager \
52    libspeexresampler \
53    libstagefright_chromium_http \
54    libstagefright_soft_aacdec \
55    libstagefright_soft_aacenc \
56    libstagefright_soft_amrdec \
57    libstagefright_soft_amrnbenc \
58    libstagefright_soft_amrwbenc \
59    libstagefright_soft_flacenc \
60    libstagefright_soft_g711dec \
61    libstagefright_soft_gsmdec \
62    libstagefright_soft_h264dec \
63    libstagefright_soft_h264enc \
64    libstagefright_soft_mp3dec \
65    libstagefright_soft_mpeg4dec \
66    libstagefright_soft_mpeg4enc \
67    libstagefright_soft_rawdec \
68    libstagefright_soft_vorbisdec \
69    libstagefright_soft_vpxdec \
70    libstagefright_soft_vpxenc \
71    libvariablespeed \
72    libwebrtc_audio_preprocessing \
73    lint \
74    mdnsd \
75    mms-common \
76    requestsync \
77    telephony-common \
78    voip-common
79
80# host-only dependencies
81ifeq ($(WITH_HOST_DALVIK),true)
82    PRODUCT_PACKAGES += \
83        apache-xml-hostdex \
84        bouncycastle-hostdex \
85        core-hostdex \
86        libcrypto \
87        libexpat \
88        libicui18n \
89        libicuuc \
90        libjavacore \
91        libssl \
92        libz-host \
93        dalvik
94endif
95
96$(call inherit-product, $(SRC_TARGET_DIR)/product/core_minimal.mk)
97