blob: 3cb8c8ec172b0aca6bf310e251ed38aa1c2ef46e [file] [log] [blame]
bohu268c72f2018-06-09 08:19:08 -07001#
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 file is to configure vendor/data partitions of emulator-related products
18#
bohu80021202020-01-08 05:58:06 -080019$(call inherit-product-if-exists, frameworks/native/build/phone-xhdpi-2048-dalvik-heap.mk)
bohu268c72f2018-06-09 08:19:08 -070020
bohu50ac1e22019-06-07 09:41:23 -070021ifeq ($(QEMU_DISABLE_AVB),true)
bohu8e19bbe2019-08-29 22:49:58 -070022 ifeq ($(QEMU_USE_SYSTEM_EXT_PARTITIONS),true)
23 PRODUCT_COPY_FILES += \
24 device/generic/goldfish/data/etc/dummy.vbmeta.img:$(PRODUCT_OUT)/vbmeta.img \
25 device/generic/goldfish/fstab.ranchu.initrd.noavb.ex:$(TARGET_COPY_OUT_RAMDISK)/fstab.ranchu \
26 device/generic/goldfish/fstab.ranchu.noavb.ex:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.ranchu
27 else
28 PRODUCT_COPY_FILES += \
29 device/generic/goldfish/data/etc/dummy.vbmeta.img:$(PRODUCT_OUT)/vbmeta.img \
30 device/generic/goldfish/fstab.ranchu.initrd.noavb:$(TARGET_COPY_OUT_RAMDISK)/fstab.ranchu \
31 device/generic/goldfish/fstab.ranchu.noavb:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.ranchu
32 endif
bohu50ac1e22019-06-07 09:41:23 -070033endif
34
bohu7efb22a2020-01-06 17:09:53 -080035PRODUCT_SYSTEM_EXT_PROPERTIES += ro.lockscreen.disable.default=1
bohu8e19bbe2019-08-29 22:49:58 -070036ifeq ($(QEMU_USE_SYSTEM_EXT_PARTITIONS),true)
37PRODUCT_COPY_FILES += \
38 device/generic/goldfish/fstab.ranchu.initrd.ex:$(TARGET_COPY_OUT_RAMDISK)/fstab.ranchu \
39 device/generic/goldfish/fstab.ranchu.ex:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.ranchu
40endif
41
42
Steven Moreland38439882019-08-22 12:44:25 -070043DISABLE_RILD_OEM_HOOK := true
44
Peter Collingbourne4bc81a42019-10-15 18:37:19 -070045DEVICE_MANIFEST_FILE := device/generic/goldfish/manifest.xml
Huan Song634f0b42019-09-17 17:16:46 -070046PRODUCT_SOONG_NAMESPACES += hardware/google/camera
Emilian Peevc2d55d62019-11-21 08:42:48 -080047PRODUCT_SOONG_NAMESPACES += hardware/google/camera/devices/EmulatedCamera
Peter Collingbourne4bc81a42019-10-15 18:37:19 -070048
bohu268c72f2018-06-09 08:19:08 -070049# Device modules
50PRODUCT_PACKAGES += \
Lingfeng Yange835ecc2019-02-02 20:46:23 -080051 vulkan.ranchu \
Lingfeng Yang9c195c72019-08-27 08:44:30 -070052 libandroidemu \
Lingfeng Yang48d30292018-09-28 15:53:24 -070053 libOpenglCodecCommon \
bohu268c72f2018-06-09 08:19:08 -070054 libOpenglSystemCommon \
Bjoern Johanssonfda217c2018-06-14 16:02:30 -070055 libgoldfish-ril \
bohu268c72f2018-06-09 08:19:08 -070056 qemu-props \
bohu268c72f2018-06-09 08:19:08 -070057 gps.goldfish \
58 gps.ranchu \
59 fingerprint.goldfish \
bohu268c72f2018-06-09 08:19:08 -070060 audio.primary.goldfish \
61 audio.primary.goldfish_legacy \
bohu268c72f2018-06-09 08:19:08 -070062 power.goldfish \
bohu85185e72020-01-13 17:22:43 -080063 stagefright \
bohu268c72f2018-06-09 08:19:08 -070064 power.ranchu \
65 fingerprint.ranchu \
Bo Hub64da5c2020-01-07 23:54:25 +000066 android.hardware.graphics.composer@2.1-impl \
67 android.hardware.graphics.composer@2.1-service \
Roman Kiryanovf13e6172020-01-28 13:47:42 -080068 android.hardware.graphics.allocator@3.0-service \
69 android.hardware.graphics.mapper@3.0-impl \
bohu268c72f2018-06-09 08:19:08 -070070 hwcomposer.ranchu \
71 toybox_vendor \
72 android.hardware.audio@2.0-service \
73 android.hardware.wifi@1.0-service \
74 android.hardware.biometrics.fingerprint@2.1-service \
75 sh_vendor \
Bjoern Johanssonc6712aa2019-06-24 14:23:48 -070076 ip_vendor \
bohu8d693282018-11-28 09:19:40 -080077 iw_vendor \
bohu268c72f2018-06-09 08:19:08 -070078 audio.r_submix.default \
79 local_time.default \
Huan Songbd9da8d2019-09-30 12:41:39 -070080 SdkSetup \
bohu89f03882019-12-06 09:04:51 -080081 libstagefrighthw \
82 libstagefright_goldfish_vpxdec \
bohu272f7802019-12-11 09:27:22 -080083 libstagefright_goldfish_avcdec \
Huan Songbd9da8d2019-09-30 12:41:39 -070084 MultiDisplayProvider
bohu268c72f2018-06-09 08:19:08 -070085
Peter Collingbourne4bc81a42019-10-15 18:37:19 -070086ifneq ($(BUILD_EMULATOR_OPENGL),false)
87PRODUCT_PACKAGES += \
88 libGLESv1_CM_emulation \
89 lib_renderControl_enc \
90 libEGL_emulation \
91 libGLESv2_enc \
92 libvulkan_enc \
93 libGLESv2_emulation \
94 libGLESv1_enc
95endif
96
bohu268c72f2018-06-09 08:19:08 -070097PRODUCT_PACKAGES += \
Lingfeng Yangab253e12019-11-22 14:39:36 -080098 android.hardware.audio@5.0-impl:32 \
99 android.hardware.audio.effect@5.0-impl:32 \
bohu268c72f2018-06-09 08:19:08 -0700100 android.hardware.soundtrigger@2.0-impl
101
102PRODUCT_PACKAGES += \
Kevin Brodsky29416702020-01-21 15:16:37 +0000103 android.hardware.health@2.0-service
huans4772b3d2018-06-15 10:56:16 -0700104
105PRODUCT_PACKAGES += \
Rob Barnesf96a0dc2019-09-10 13:23:13 -0600106 android.hardware.keymaster@4.0-impl \
107 android.hardware.keymaster@4.0-service
bohu268c72f2018-06-09 08:19:08 -0700108
109PRODUCT_PACKAGES += \
Winson Chung307afc82020-02-04 12:35:22 -0800110 DisplayCutoutEmulationEmu01Overlay \
111 NavigationBarMode2ButtonOverlay \
Jim Kayeb8f47812018-06-18 16:24:10 -0700112
bohud69c26b2018-06-20 08:45:13 -0700113ifneq ($(EMULATOR_VENDOR_NO_GNSS),true)
bohu268c72f2018-06-09 08:19:08 -0700114PRODUCT_PACKAGES += \
115 android.hardware.gnss@1.0-service \
116 android.hardware.gnss@1.0-impl
Peter Collingbourne4bc81a42019-10-15 18:37:19 -0700117DEVICE_MANIFEST_FILE += device/generic/goldfish/manifest.gnss.xml
bohud69c26b2018-06-20 08:45:13 -0700118endif
bohu268c72f2018-06-09 08:19:08 -0700119
Peter Collingbourne4bc81a42019-10-15 18:37:19 -0700120ifneq ($(EMULATOR_VENDOR_NO_SENSORS),true)
bohu268c72f2018-06-09 08:19:08 -0700121PRODUCT_PACKAGES += \
122 android.hardware.sensors@1.0-impl \
Peter Collingbourne4bc81a42019-10-15 18:37:19 -0700123 android.hardware.sensors@1.0-service \
124 sensors.ranchu
125DEVICE_MANIFEST_FILE += device/generic/goldfish/manifest.sensors.xml
126endif
bohu268c72f2018-06-09 08:19:08 -0700127
128PRODUCT_PACKAGES += \
129 android.hardware.drm@1.0-service \
huans85d26b82018-06-13 16:14:28 -0700130 android.hardware.drm@1.0-impl \
Robert Shih2387a0a2019-11-25 22:25:40 -0800131 android.hardware.drm@1.3-service.clearkey \
132 android.hardware.drm@1.3-service.widevine
bohu268c72f2018-06-09 08:19:08 -0700133
134PRODUCT_PACKAGES += \
Haitao Shand9689ef2018-08-17 11:58:33 -0700135 android.hardware.power@1.1-service.ranchu \
136
Matt Wachowskif6bb9232018-11-28 09:34:45 -0800137PRODUCT_PROPERTY_OVERRIDES += ro.control_privapp_permissions=enforce
Haitao Shand9689ef2018-08-17 11:58:33 -0700138PRODUCT_PROPERTY_OVERRIDES += ro.hardware.power=ranchu
bohu268c72f2018-06-09 08:19:08 -0700139
Lingfeng Yang1655dc72019-04-05 12:08:25 -0700140PRODUCT_PROPERTY_OVERRIDES += persist.sys.zram_enabled=1 \
141
bohu22893682019-07-25 07:33:01 -0700142PRODUCT_PROPERTY_OVERRIDES += ro.crypto.volume.filenames_mode=aes-256-cts
143
144
Peter Collingbourne4bc81a42019-10-15 18:37:19 -0700145ifneq ($(EMULATOR_VENDOR_NO_CAMERA),true)
bohu268c72f2018-06-09 08:19:08 -0700146PRODUCT_PACKAGES += \
147 camera.device@1.0-impl \
148 android.hardware.camera.provider@2.4-service \
149 android.hardware.camera.provider@2.4-impl \
Peter Collingbourne4bc81a42019-10-15 18:37:19 -0700150 camera.goldfish \
151 camera.goldfish.jpeg \
152 camera.ranchu \
Huan Song634f0b42019-09-17 17:16:46 -0700153 camera.ranchu.jpeg \
Emilian Peeve7378f42020-02-18 14:49:32 -0800154 android.hardware.camera.provider@2.6-service-google \
Huan Song634f0b42019-09-17 17:16:46 -0700155 libgooglecamerahwl_impl \
Emilian Peeve7378f42020-02-18 14:49:32 -0800156 android.hardware.camera.provider@2.6-impl-google
Peter Collingbourne4bc81a42019-10-15 18:37:19 -0700157DEVICE_MANIFEST_FILE += device/generic/goldfish/manifest.camera.xml
158endif
bohu268c72f2018-06-09 08:19:08 -0700159
160PRODUCT_PACKAGES += \
Janis Danisevskisa08300a2019-06-06 20:01:50 -0700161 android.hardware.gatekeeper@1.0-service.software
bohu268c72f2018-06-09 08:19:08 -0700162
163# WiFi: vendor side
164PRODUCT_PACKAGES += \
Roman Kiryanov4413d212020-03-05 12:02:13 -0800165 mac80211_create_radios \
bohu268c72f2018-06-09 08:19:08 -0700166 createns \
167 dhcpclient \
bohu268c72f2018-06-09 08:19:08 -0700168 execns \
169 hostapd \
Bjoern Johansson880e7082018-05-15 15:04:53 -0700170 hostapd_nohidl \
Bjoern Johansson873eee62018-09-06 15:39:12 -0700171 netmgr \
Bjoern Johansson3c87dbe2019-08-01 11:32:18 -0700172 wifi_forwarder \
bohu268c72f2018-06-09 08:19:08 -0700173 wpa_supplicant \
174
Lingfeng Yang2f6d30c2019-11-22 14:35:44 -0800175# Thermal
176PRODUCT_PACKAGES += \
177 android.hardware.thermal@2.0-service.mock
178
179# Atrace
180PRODUCT_PACKAGES += \
181 android.hardware.atrace@1.0-service
182
Roman Kiryanov11bd7ca2019-11-25 10:39:52 -0800183# Vibrator
184PRODUCT_PACKAGES += \
185 android.hardware.vibrator-service.example
Roman Kiryanovb6889742019-04-15 11:13:57 -0700186
Lingfeng Yang90b50c32019-11-22 14:44:43 -0800187# Authsecret
188PRODUCT_PACKAGES += \
189 android.hardware.authsecret@1.0-service
Bowgo Tsai825e1102018-07-16 17:58:40 +0800190
Lingfeng Yang702bf612019-11-22 14:46:35 -0800191# Input Classifier HAL
192PRODUCT_PACKAGES += \
193 android.hardware.input.classifier@1.0-service.default
194
Lingfeng Yang65f98342019-11-22 14:57:55 -0800195# power stats
196PRODUCT_PACKAGES += \
197 android.hardware.power.stats@1.0-service.mock
198
Kenny Root7ddb8c22019-12-03 15:27:47 -0800199# Reboot escrow
200PRODUCT_PACKAGES += \
201 android.hardware.rebootescrow-service.default
202
Huan Song07cb6ae2020-03-02 16:34:48 -0800203# Extension implementation for Jetpack WindowManager
204PRODUCT_PACKAGES += \
205 androidx.window.extensions
206
bohua0427212019-05-20 15:22:48 -0700207# Goldfish does not support ION needed for Codec 2.0
bohu26008ea2019-10-29 12:24:24 -0700208# still disable it until b/143473631 is fixed
bohude2d0182019-10-31 08:51:29 -0700209# now this is setup on init.ranchu.rc
210# -qemu -append qemu.media.ccodec=<value> can override it; default 0
211#PRODUCT_PROPERTY_OVERRIDES += \
212# debug.stagefright.ccodec=0
bohua0427212019-05-20 15:22:48 -0700213
bohu268c72f2018-06-09 08:19:08 -0700214PRODUCT_COPY_FILES += \
bohud0fb8a42019-03-07 22:41:54 -0800215 device/generic/goldfish/fstab.ranchu.initrd:$(TARGET_COPY_OUT_RAMDISK)/fstab.ranchu \
bohu268c72f2018-06-09 08:19:08 -0700216 device/generic/goldfish/data/etc/apns-conf.xml:data/misc/apns/apns-conf.xml \
bohu7e987592019-03-03 15:44:41 -0800217 device/generic/goldfish/data/etc/local.prop:data/local.prop \
bohu268c72f2018-06-09 08:19:08 -0700218 device/generic/goldfish/init.ranchu-core.sh:$(TARGET_COPY_OUT_VENDOR)/bin/init.ranchu-core.sh \
219 device/generic/goldfish/init.ranchu-net.sh:$(TARGET_COPY_OUT_VENDOR)/bin/init.ranchu-net.sh \
220 device/generic/goldfish/wifi/init.wifi.sh:$(TARGET_COPY_OUT_VENDOR)/bin/init.wifi.sh \
221 device/generic/goldfish/init.ranchu.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw/init.ranchu.rc \
222 device/generic/goldfish/fstab.ranchu:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.ranchu \
223 device/generic/goldfish/ueventd.ranchu.rc:$(TARGET_COPY_OUT_VENDOR)/ueventd.rc \
224 device/generic/goldfish/input/goldfish_rotary.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/goldfish_rotary.idc \
Weilun Du70d41852019-08-15 10:59:46 -0700225 device/generic/goldfish/input/qwerty2.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/qwerty2.idc \
226 device/generic/goldfish/input/qwerty.kl:$(TARGET_COPY_OUT_VENDOR)/usr/keylayout/qwerty.kl \
Weilun Du41c6d922019-04-01 20:41:56 -0700227 device/generic/goldfish/input/virtio_input_multi_touch_1.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/virtio_input_multi_touch_1.idc \
228 device/generic/goldfish/input/virtio_input_multi_touch_2.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/virtio_input_multi_touch_2.idc \
Weilun Du75c4d532019-05-14 15:10:25 -0700229 device/generic/goldfish/input/virtio_input_multi_touch_3.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/virtio_input_multi_touch_3.idc \
230 device/generic/goldfish/input/virtio_input_multi_touch_4.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/virtio_input_multi_touch_4.idc \
231 device/generic/goldfish/input/virtio_input_multi_touch_5.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/virtio_input_multi_touch_5.idc \
232 device/generic/goldfish/input/virtio_input_multi_touch_6.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/virtio_input_multi_touch_6.idc \
233 device/generic/goldfish/input/virtio_input_multi_touch_7.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/virtio_input_multi_touch_7.idc \
234 device/generic/goldfish/input/virtio_input_multi_touch_8.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/virtio_input_multi_touch_8.idc \
235 device/generic/goldfish/input/virtio_input_multi_touch_9.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/virtio_input_multi_touch_9.idc \
236 device/generic/goldfish/input/virtio_input_multi_touch_10.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/virtio_input_multi_touch_10.idc \
237 device/generic/goldfish/input/virtio_input_multi_touch_11.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/virtio_input_multi_touch_11.idc \
bohu268c72f2018-06-09 08:19:08 -0700238 device/generic/goldfish/data/etc/config.ini:config.ini \
239 device/generic/goldfish/wifi/simulated_hostapd.conf:$(TARGET_COPY_OUT_VENDOR)/etc/simulated_hostapd.conf \
240 device/generic/goldfish/wifi/wpa_supplicant.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/wpa_supplicant.conf \
241 device/generic/goldfish/wifi/WifiConfigStore.xml:data/misc/wifi/WifiConfigStore.xml \
242 frameworks/native/data/etc/android.hardware.wifi.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.xml \
Bjoern Johansson836f41d2018-06-13 10:57:09 -0700243 frameworks/native/data/etc/android.hardware.wifi.direct.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.direct.xml \
bohu268c72f2018-06-09 08:19:08 -0700244 device/generic/goldfish/data/etc/handheld_core_hardware.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/handheld_core_hardware.xml \
245 device/generic/goldfish/camera/media_profiles.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_profiles_V1_0.xml \
246 frameworks/av/media/libstagefright/data/media_codecs_google_audio.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_google_audio.xml \
247 frameworks/av/media/libstagefright/data/media_codecs_google_telephony.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_google_telephony.xml \
Joshua Duong08343242019-06-27 12:02:42 -0700248 device/generic/goldfish/camera/media_codecs_google_video_default.xml:data/vendor/etc/media_codecs_google_video_default.xml \
249 device/generic/goldfish/camera/media_codecs_google_video_v2.xml:data/vendor/etc/media_codecs_google_video_v2.xml \
bohu268c72f2018-06-09 08:19:08 -0700250 device/generic/goldfish/camera/media_codecs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs.xml \
251 device/generic/goldfish/camera/media_codecs_performance.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_performance.xml \
252 frameworks/native/data/etc/android.hardware.touchscreen.multitouch.jazzhand.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.touchscreen.multitouch.jazzhand.xml \
Jeff McGlynn52d25632018-07-10 15:45:24 -0700253 frameworks/native/data/etc/android.hardware.camera.ar.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.ar.xml \
bohu268c72f2018-06-09 08:19:08 -0700254 frameworks/native/data/etc/android.hardware.camera.autofocus.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.autofocus.xml \
Kenneth Magic85778502019-09-05 14:38:05 -0700255 frameworks/native/data/etc/android.hardware.camera.front.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.front.xml \
bohu268c72f2018-06-09 08:19:08 -0700256 frameworks/native/data/etc/android.hardware.camera.full.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.camera.full.xml \
257 frameworks/native/data/etc/android.hardware.fingerprint.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.fingerprint.xml \
yahan40f9a292019-10-07 11:34:08 -0700258 frameworks/native/data/etc/android.hardware.vulkan.level-1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.level.xml \
Yahan Zhou04f20f22019-08-02 16:05:13 -0700259 frameworks/native/data/etc/android.hardware.vulkan.compute-0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.compute.xml \
260 frameworks/native/data/etc/android.hardware.vulkan.version-1_1.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vulkan.version.xml \
Lingfeng Yang1c2299a2020-02-13 08:47:13 -0800261 device/generic/goldfish/data/etc/android.software.vulkan.deqp.level-2019-03-01.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.vulkan.deqp.level-2019-03-01.xml \
bohu268c72f2018-06-09 08:19:08 -0700262 frameworks/native/data/etc/android.software.autofill.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.autofill.xml \
bohu3530e842019-10-26 23:16:58 -0700263 frameworks/native/data/etc/android.software.verified_boot.xml:${TARGET_COPY_OUT_PRODUCT}/etc/permissions/android.software.verified_boot.xml \
huans64eca142018-06-18 14:45:46 -0700264 frameworks/av/media/libeffects/data/audio_effects.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_effects.xml \
265 device/generic/goldfish/audio_policy.conf:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy.conf \
266 frameworks/av/services/audiopolicy/config/audio_policy_configuration_generic.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_configuration.xml \
267 frameworks/av/services/audiopolicy/config/primary_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/primary_audio_policy_configuration.xml \
268 frameworks/av/services/audiopolicy/config/r_submix_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/r_submix_audio_policy_configuration.xml \
269 frameworks/av/services/audiopolicy/config/audio_policy_volumes.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_volumes.xml \
270 frameworks/av/services/audiopolicy/config/default_volume_tables.xml:$(TARGET_COPY_OUT_VENDOR)/etc/default_volume_tables.xml \
Eric Laurent6405e782019-02-23 12:29:08 -0800271 frameworks/av/services/audiopolicy/config/surround_sound_configuration_5_0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/surround_sound_configuration_5_0.xml \
Huan Song634f0b42019-09-17 17:16:46 -0700272 device/generic/goldfish/data/etc/permissions/privapp-permissions-goldfish.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/permissions/privapp-permissions-goldfish.xml \
273 hardware/google/camera/devices/EmulatedCamera/hwl/configs/emu_camera_back.json:$(TARGET_COPY_OUT_VENDOR)/etc/config/emu_camera_back.json \
274 hardware/google/camera/devices/EmulatedCamera/hwl/configs/emu_camera_front.json:$(TARGET_COPY_OUT_VENDOR)/etc/config/emu_camera_front.json \
275 hardware/google/camera/devices/EmulatedCamera/hwl/configs/emu_camera_depth.json:$(TARGET_COPY_OUT_VENDOR)/etc/config/emu_camera_depth.json \
Andrii Kulian3bbd0072020-03-09 15:14:41 -0700276
277# Windowing settings config files
278PRODUCT_COPY_FILES += \
279 device/generic/goldfish/display_settings_freeform.xml:$(TARGET_COPY_OUT_DATA)/system/display_settings_freeform.xml