Home | History | Annotate | Download | only in build
      1 #
      2 # Copyright (C) 2016 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 platform for car builds
     18 # car packages should be added to car.mk instead of here
     19 
     20 PRODUCT_PACKAGE_OVERLAYS := packages/services/Car/car_product/overlay
     21 
     22 PRODUCT_PACKAGES += \
     23     ContactsProvider \
     24     DefaultContainerService \
     25     Home \
     26     BasicDreams \
     27     CaptivePortalLogin \
     28     CertInstaller \
     29     DocumentsUI \
     30     DownloadProviderUi \
     31     FusedLocation \
     32     InputDevices \
     33     KeyChain \
     34     Keyguard \
     35     LatinIME \
     36     Launcher2 \
     37     ManagedProvisioning \
     38     PicoTts \
     39     PacProcessor \
     40     libpac \
     41     PrintSpooler \
     42     ProxyHandler \
     43     Settings \
     44     SharedStorageBackup \
     45     VpnDialogs \
     46     MmsService \
     47     ExternalStorageProvider \
     48     atrace \
     49     libandroidfw \
     50     libaudiopreprocessing \
     51     libaudioutils \
     52     libfilterpack_imageproc \
     53     libgabi++ \
     54     libmdnssd \
     55     libnfc_ndef \
     56     libpowermanager \
     57     libspeexresampler \
     58     libstagefright_soft_aacdec \
     59     libstagefright_soft_aacenc \
     60     libstagefright_soft_amrdec \
     61     libstagefright_soft_amrnbenc \
     62     libstagefright_soft_amrwbenc \
     63     libstagefright_soft_avcdec \
     64     libstagefright_soft_avcenc \
     65     libstagefright_soft_flacenc \
     66     libstagefright_soft_g711dec \
     67     libstagefright_soft_gsmdec \
     68     libstagefright_soft_hevcdec \
     69     libstagefright_soft_mp3dec \
     70     libstagefright_soft_mpeg2dec \
     71     libstagefright_soft_mpeg4dec \
     72     libstagefright_soft_mpeg4enc \
     73     libstagefright_soft_opusdec \
     74     libstagefright_soft_rawdec \
     75     libstagefright_soft_vorbisdec \
     76     libstagefright_soft_vpxdec \
     77     libstagefright_soft_vpxenc \
     78     libvariablespeed \
     79     libwebrtc_audio_preprocessing \
     80     mdnsd \
     81     requestsync \
     82     wifi-service \
     83     A2dpSinkService \
     84 
     85 # EVS resources
     86 PRODUCT_PACKAGES += android.hardware.automotive.evs@1.0-service
     87 PRODUCT_PACKAGES += android.automotive.evs.manager@1.0
     88 PRODUCT_PACKAGES += evs_app
     89 
     90 ifeq ($(TARGET_USES_CAR_FUTURE_FEATURES),true)
     91 PRODUCT_PACKAGES += android.hardware.automotive.vehicle@2.1-service
     92 else
     93 PRODUCT_PACKAGES += android.hardware.automotive.vehicle@2.0-service
     94 endif
     95 
     96 $(call inherit-product, $(SRC_TARGET_DIR)/product/core_minimal.mk)
     97 
     98