core.mk revision 9a90a82c92f7d8a248ec40b2d6c2addaa3b356c8
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    atrace \
40    libandroidfw \
41    libaudiopreprocessing \
42    libaudioutils \
43    libbcc \
44    libfilterpack_imageproc \
45    libgabi++ \
46    libkeystore \
47    libmdnssd \
48    libnfc_ndef \
49    libportable \
50    libpowermanager \
51    libspeexresampler \
52    libstagefright_chromium_http \
53    libstagefright_soft_aacdec \
54    libstagefright_soft_aacenc \
55    libstagefright_soft_amrdec \
56    libstagefright_soft_amrnbenc \
57    libstagefright_soft_amrwbenc \
58    libstagefright_soft_flacenc \
59    libstagefright_soft_g711dec \
60    libstagefright_soft_gsmdec \
61    libstagefright_soft_h264dec \
62    libstagefright_soft_h264enc \
63    libstagefright_soft_mp3dec \
64    libstagefright_soft_mpeg4dec \
65    libstagefright_soft_mpeg4enc \
66    libstagefright_soft_rawdec \
67    libstagefright_soft_vorbisdec \
68    libstagefright_soft_vpxdec \
69    libstagefright_soft_vpxenc \
70    libvariablespeed \
71    libwebrtc_audio_preprocessing \
72    mdnsd \
73    mms-common \
74    okhttp \
75    requestsync \
76    telephony-common \
77    voip-common
78
79# host-only dependencies
80ifeq ($(WITH_HOST_DALVIK),true)
81    PRODUCT_PACKAGES += \
82        apache-xml-hostdex \
83        bouncycastle-hostdex \
84        conscrypt-hostdex \
85        core-hostdex \
86        okhttp-hostdex \
87        libcrypto \
88        libexpat \
89        libicui18n \
90        libicuuc \
91        libjavacore \
92        libssl \
93        libz-host \
94        dalvik
95endif
96
97$(call inherit-product, $(SRC_TARGET_DIR)/product/core_minimal.mk)
98