Home | History | Annotate | Download | only in product
      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 
     22 PRODUCT_PROPERTY_OVERRIDES := \
     23     ro.config.notification_sound=OnTheHunt.ogg \
     24     ro.config.alarm_alert=Alarm_Classic.ogg
     25 
     26 PRODUCT_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     requestsync \
     75     telephony-common \
     76     voip-common
     77 
     78 # host-only dependencies
     79 ifeq ($(WITH_HOST_DALVIK),true)
     80     PRODUCT_PACKAGES += \
     81         apache-xml-hostdex \
     82         bouncycastle-hostdex \
     83         core-hostdex \
     84         libcrypto \
     85         libexpat \
     86         libicui18n \
     87         libicuuc \
     88         libjavacore \
     89         libssl \
     90         libz-host \
     91         dalvik
     92 endif
     93 
     94 $(call inherit-product, $(SRC_TARGET_DIR)/product/core_minimal.mk)
     95