blob: 2f67dc5b20abb88aa4ec7650f84385cbdaecdf8e [file] [log] [blame]
Anton Hanssonc16e2b22018-07-10 16:42:17 +01001#
2# Copyright (C) 2018 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# This makefile contains the system partition contents for
18# media-capable devices (non-wearables). Only add something
19# here if it definitely doesn't belong on wearables. Otherwise,
20# choose base_system.mk.
21$(call inherit-product, $(SRC_TARGET_DIR)/product/base_system.mk)
22
23PRODUCT_PACKAGES += \
24 com.android.future.usb.accessory \
25 com.android.mediadrm.signer \
26 com.android.media.remotedisplay \
27 com.android.media.remotedisplay.xml \
28 CompanionDeviceManager \
29 drmserver \
30 ethernet-service \
31 fsck.f2fs \
32 HTMLViewer \
33 libfilterpack_imageproc \
34 libstagefright_soft_aacdec \
35 libstagefright_soft_aacenc \
36 libstagefright_soft_amrdec \
37 libstagefright_soft_amrnbenc \
38 libstagefright_soft_amrwbenc \
39 libstagefright_soft_avcdec \
40 libstagefright_soft_avcenc \
41 libstagefright_soft_flacdec \
42 libstagefright_soft_flacenc \
43 libstagefright_soft_g711dec \
44 libstagefright_soft_gsmdec \
45 libstagefright_soft_hevcdec \
46 libstagefright_soft_mp3dec \
47 libstagefright_soft_mpeg2dec \
48 libstagefright_soft_mpeg4dec \
49 libstagefright_soft_mpeg4enc \
50 libstagefright_soft_opusdec \
51 libstagefright_soft_rawdec \
52 libstagefright_soft_vorbisdec \
53 libstagefright_soft_vpxdec \
54 libstagefright_soft_vpxenc \
55 libwebviewchromium_loader \
56 libwebviewchromium_plat_support \
57 make_f2fs \
Anton Hanssonc16e2b22018-07-10 16:42:17 +010058 requestsync \
59 StatementService \
60 vndk_snapshot_package \
61 webview \
62
63
64PRODUCT_COPY_FILES += \
65 frameworks/native/data/etc/android.software.webview.xml:system/etc/permissions/android.software.webview.xml
66
67ifneq (REL,$(PLATFORM_VERSION_CODENAME))
68PRODUCT_COPY_FILES += \
69 frameworks/native/data/etc/android.software.preview_sdk.xml:system/etc/permissions/android.software.preview_sdk.xml
70endif
71
72# The order here is the same order they end up on the classpath, so it matters.
73PRODUCT_SYSTEM_SERVER_JARS := \
74 services \
75 ethernet-service \
76 wifi-service \
Sundong Ahn0372f182018-11-08 18:52:38 +090077 com.android.location.provider \
Anton Hanssonc16e2b22018-07-10 16:42:17 +010078
79PRODUCT_COPY_FILES += \
80 system/core/rootdir/etc/public.libraries.android.txt:system/etc/public.libraries.txt
81
82# Enable boot.oat filtering of compiled classes to reduce boot.oat size. b/28026683
83PRODUCT_COPY_FILES += $(call add-to-product-copy-files-if-exists,\
84 frameworks/base/config/compiled-classes-phone:system/etc/compiled-classes)
85
86# Enable dirty image object binning to reduce dirty pages in the image.
87PRODUCT_COPY_FILES += $(call add-to-product-copy-files-if-exists,\
88 frameworks/base/dirty-image-objects-phone:system/etc/dirty-image-objects)
89
90# On userdebug builds, collect more tombstones by default.
91ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
92PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
93 tombstoned.max_tombstone_count=50
94endif
95
96PRODUCT_DEFAULT_PROPERTY_OVERRIDES += \
97 ro.logd.size.stats=64K \
98 log.tag.stats_log=I
99
100# Enable CFI for security-sensitive components
101$(call inherit-product, $(SRC_TARGET_DIR)/product/cfi-common.mk)
102$(call inherit-product-if-exists, vendor/google/products/cfi-vendor.mk)