Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2011 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 | |
Sahaj Sarup | 93980e0 | 2018-09-11 13:24:20 +0000 | [diff] [blame] | 17 | ifneq (,$(filter $(TARGET_PRODUCT),hikey960_tv hikey_tv)) |
| 18 | # Setup TV Build |
| 19 | USE_OEM_TV_APP := true |
| 20 | $(call inherit-product, device/google/atv/products/atv_base.mk) |
| 21 | PRODUCT_CHARACTERISTICS := tv |
| 22 | PRODUCT_AAPT_PREF_CONFIG := tvdpi |
| 23 | PRODUCT_IS_ATV := true |
| 24 | else |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 25 | # Adjust the dalvik heap to be appropriate for a tablet. |
John Stultz | 58bae75 | 2018-10-18 13:13:24 -0700 | [diff] [blame] | 26 | $(call inherit-product, frameworks/native/build/tablet-10in-xhdpi-2048-dalvik-heap.mk) |
Sahaj Sarup | 93980e0 | 2018-09-11 13:24:20 +0000 | [diff] [blame] | 27 | endif |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 28 | |
Niranjan Yadla | 88a93e4 | 2017-08-29 15:22:40 -0700 | [diff] [blame] | 29 | # Set vendor kernel path |
| 30 | PRODUCT_VENDOR_KERNEL_HEADERS := device/linaro/hikey/kernel-headers |
| 31 | |
Yongqin Liu | 7271d39 | 2018-11-21 15:27:41 +0800 | [diff] [blame] | 32 | # Hikey was first supported from Marshmallow 6.0, API level 23 |
| 33 | # PRODUCT_SHIPPING_API_LEVEL is required from Pie build by the CTS test of |
| 34 | # CtsOsTestCases android.os.cts.BuildTest#testSdkInt |
| 35 | # as reported here: |
| 36 | # https://bugs.linaro.org/show_bug.cgi?id=4068 |
| 37 | # https://source.android.com/setup/start/build-numbers |
| 38 | # Here we set it to 25 first, because Gatekeeper function |
| 39 | # needs to be supported when set to 26 or above, |
| 40 | # which we could not boot successfully with the default implementation |
| 41 | # enabled yet. Will back to set it to the latest number when we have |
| 42 | # all necessary features supported. |
| 43 | PRODUCT_SHIPPING_API_LEVEL := 25 |
| 44 | |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 45 | # Set custom settings |
| 46 | DEVICE_PACKAGE_OVERLAYS := device/linaro/hikey/overlay |
Sahaj Sarup | 93980e0 | 2018-09-11 13:24:20 +0000 | [diff] [blame] | 47 | ifneq (,$(filter $(TARGET_PRODUCT),hikey960_tv hikey_tv)) |
| 48 | # Set TV Custom Settings |
| 49 | DEVICE_PACKAGE_OVERLAYS += device/google/atv/overlay |
| 50 | endif |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 51 | |
John Stultz | e113ecc | 2018-09-11 11:53:35 -0700 | [diff] [blame] | 52 | #Force navkeys on |
| 53 | PRODUCT_PROPERTY_OVERRIDES += qemu.hw.mainkeys=0 |
| 54 | |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 55 | # Add openssh support for remote debugging and job submission |
John Stultz | d497f63 | 2017-05-30 23:51:33 -0700 | [diff] [blame] | 56 | PRODUCT_PACKAGES += ssh sftp scp sshd ssh-keygen sshd_config start-ssh |
Dmitry Shmidt | a95006a | 2016-03-16 13:23:30 -0700 | [diff] [blame] | 57 | |
| 58 | # Add wifi-related packages |
mukesh agrawal | 2b2f7d3 | 2016-10-05 15:15:15 -0700 | [diff] [blame] | 59 | PRODUCT_PACKAGES += libwpa_client wpa_supplicant hostapd wificond wifilogd |
Dmitry Shmidt | a95006a | 2016-03-16 13:23:30 -0700 | [diff] [blame] | 60 | PRODUCT_PROPERTY_OVERRIDES += wifi.interface=wlan0 \ |
| 61 | wifi.supplicant_scan_interval=15 |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 62 | |
| 63 | # Build and run only ART |
| 64 | PRODUCT_RUNTIMES := runtime_libart_default |
| 65 | |
Amit Pundir | af628c2 | 2016-11-02 16:37:00 +0800 | [diff] [blame] | 66 | # Build default bluetooth a2dp and usb audio HALs |
| 67 | PRODUCT_PACKAGES += audio.a2dp.default \ |
John Stultz | 52ebc46 | 2016-06-03 11:37:21 -0700 | [diff] [blame] | 68 | audio.usb.default \ |
| 69 | audio.r_submix.default \ |
| 70 | tinyplay |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 71 | |
Mikhail Naganov | 692a6d7 | 2016-11-11 16:36:02 -0800 | [diff] [blame] | 72 | PRODUCT_PACKAGES += \ |
John Stultz | d013ca8 | 2018-04-11 12:17:34 -0700 | [diff] [blame] | 73 | android.hardware.audio@2.0-service \ |
Mikhail Naganov | cff48dd | 2016-11-21 15:22:21 -0800 | [diff] [blame] | 74 | android.hardware.audio@2.0-impl \ |
| 75 | android.hardware.audio.effect@2.0-impl \ |
| 76 | android.hardware.broadcastradio@1.0-impl \ |
| 77 | android.hardware.soundtrigger@2.0-impl |
Mikhail Naganov | 692a6d7 | 2016-11-11 16:36:02 -0800 | [diff] [blame] | 78 | |
John Stultz | 3424dc3 | 2018-04-11 15:37:34 -0700 | [diff] [blame] | 79 | PRODUCT_PACKAGES += vndk_package |
| 80 | |
Jeff Tinker | bc86f72 | 2017-01-01 11:02:12 -0800 | [diff] [blame] | 81 | PRODUCT_PACKAGES += \ |
| 82 | android.hardware.drm@1.0-impl \ |
| 83 | |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 84 | PRODUCT_PACKAGES += libGLES_android |
| 85 | |
Chia-I Wu | 075e777 | 2017-04-24 13:49:38 -0700 | [diff] [blame] | 86 | # Graphics HAL |
| 87 | PRODUCT_PACKAGES += \ |
| 88 | android.hardware.graphics.allocator@2.0-impl \ |
John Stultz | d013ca8 | 2018-04-11 12:17:34 -0700 | [diff] [blame] | 89 | android.hardware.graphics.allocator@2.0-service \ |
Chia-I Wu | 2b61444 | 2017-10-19 15:07:35 -0700 | [diff] [blame] | 90 | android.hardware.graphics.composer@2.1-impl \ |
John Stultz | d013ca8 | 2018-04-11 12:17:34 -0700 | [diff] [blame] | 91 | android.hardware.graphics.composer@2.1-service \ |
Chia-I Wu | 075e777 | 2017-04-24 13:49:38 -0700 | [diff] [blame] | 92 | android.hardware.graphics.mapper@2.0-impl |
| 93 | |
John Stultz | 6dc5ce5 | 2017-11-01 18:58:15 -0700 | [diff] [blame] | 94 | ifeq ($(HIKEY_USE_DRM_HWCOMPOSER), true) |
| 95 | BOARD_USES_DRM_HWCOMPOSER := true |
| 96 | PRODUCT_PACKAGES += hwcomposer.drm |
| 97 | endif |
| 98 | |
Dmitry Shmidt | 4cb6c2b | 2017-08-29 15:05:18 -0700 | [diff] [blame] | 99 | # Memtrack |
| 100 | PRODUCT_PACKAGES += memtrack.default \ |
| 101 | android.hardware.memtrack@1.0-service \ |
| 102 | android.hardware.memtrack@1.0-impl |
| 103 | |
John Stultz | d497f63 | 2017-05-30 23:51:33 -0700 | [diff] [blame] | 104 | ifeq ($(HIKEY_USE_LEGACY_TI_BLUETOOTH), true) |
| 105 | PRODUCT_PACKAGES += android.hardware.bluetooth@1.0-service.hikey uim |
| 106 | else |
| 107 | PRODUCT_PACKAGES += android.hardware.bluetooth@1.0-service.btlinux |
| 108 | endif |
| 109 | |
John Stultz | 7266c5f | 2016-06-09 14:18:57 -0700 | [diff] [blame] | 110 | # PowerHAL |
John Stultz | c1875b5 | 2018-11-20 16:15:20 -0800 | [diff] [blame] | 111 | PRODUCT_PACKAGES += \ |
| 112 | android.hardware.power@1.1-impl \ |
| 113 | android.hardware.power@1.1-service.hikey-common |
John Stultz | 7266c5f | 2016-06-09 14:18:57 -0700 | [diff] [blame] | 114 | |
Hridya Valsaraju | a4fe7ca | 2016-12-02 16:02:28 -0800 | [diff] [blame] | 115 | #GNSS HAL |
| 116 | PRODUCT_PACKAGES += \ |
| 117 | android.hardware.gnss@1.0-impl |
| 118 | |
Janis Danisevskis | fa3896c | 2016-11-22 10:45:49 +0000 | [diff] [blame] | 119 | # Keymaster HAL |
| 120 | PRODUCT_PACKAGES += \ |
John Stultz | d013ca8 | 2018-04-11 12:17:34 -0700 | [diff] [blame] | 121 | android.hardware.keymaster@3.0-impl \ |
| 122 | android.hardware.keymaster@3.0-service |
| 123 | |
Janis Danisevskis | fa3896c | 2016-11-22 10:45:49 +0000 | [diff] [blame] | 124 | |
Ben Fennema | 52301e4 | 2017-10-17 12:24:04 -0700 | [diff] [blame] | 125 | # Sensor HAL |
| 126 | ifneq ($(TARGET_SENSOR_MEZZANINE),) |
| 127 | TARGET_USES_NANOHUB_SENSORHAL := true |
| 128 | NANOHUB_SENSORHAL_LID_STATE_ENABLED := true |
| 129 | NANOHUB_SENSORHAL_SENSORLIST := $(LOCAL_PATH)/sensorhal/sensorlist_$(TARGET_SENSOR_MEZZANINE).cpp |
| 130 | NANOHUB_SENSORHAL_DIRECT_REPORT_ENABLED := true |
| 131 | NANOHUB_SENSORHAL_DYNAMIC_SENSOR_EXT_ENABLED := true |
| 132 | |
| 133 | PRODUCT_PACKAGES += \ |
| 134 | context_hub.default \ |
| 135 | android.hardware.sensors@1.0-service \ |
| 136 | android.hardware.sensors@1.0-impl \ |
| 137 | android.hardware.contexthub@1.0-service \ |
Dmitry Shmidt | ee5f1b5 | 2018-01-19 09:28:08 -0800 | [diff] [blame] | 138 | android.hardware.contexthub@1.0-impl |
Ben Fennema | 52301e4 | 2017-10-17 12:24:04 -0700 | [diff] [blame] | 139 | |
| 140 | # Nanohub tools |
| 141 | PRODUCT_PACKAGES += stm32_flash nanoapp_cmd nanotool |
| 142 | |
| 143 | PRODUCT_COPY_FILES += \ |
| 144 | device/linaro/hikey/init.common.nanohub.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/init.nanohub.rc |
Denis Ciocca | b92f2ef | 2017-10-31 17:18:50 +0800 | [diff] [blame] | 145 | |
| 146 | # Copy sensors config file(s) |
| 147 | PRODUCT_COPY_FILES += \ |
John Stultz | 11ddf0b | 2018-04-11 12:25:32 -0700 | [diff] [blame] | 148 | frameworks/native/data/etc/android.hardware.sensor.accelerometer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.accelerometer.xml \ |
| 149 | frameworks/native/data/etc/android.hardware.sensor.ambient_temperature.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.ambient_temperature.xml \ |
| 150 | frameworks/native/data/etc/android.hardware.sensor.barometer.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.barometer.xml \ |
| 151 | frameworks/native/data/etc/android.hardware.sensor.compass.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.compass.xml \ |
| 152 | frameworks/native/data/etc/android.hardware.sensor.gyroscope.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.gyroscope.xml \ |
| 153 | frameworks/native/data/etc/android.hardware.sensor.hifi_sensors.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.hifi_sensors.xml \ |
| 154 | frameworks/native/data/etc/android.hardware.sensor.light.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.light.xml \ |
| 155 | frameworks/native/data/etc/android.hardware.sensor.relative_humidity.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.relative_humidity.xml \ |
| 156 | frameworks/native/data/etc/android.hardware.sensor.stepcounter.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.stepcounter.xml \ |
| 157 | frameworks/native/data/etc/android.hardware.sensor.stepdetector.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.stepdetector.xml |
Denis Ciocca | b92f2ef | 2017-10-31 17:18:50 +0800 | [diff] [blame] | 158 | |
| 159 | # Argonkey VL53L0X proximity driver is not available yet. So we are going to copy conf file for neonkey only |
| 160 | ifeq ($(TARGET_SENSOR_MEZZANINE),neonkey) |
| 161 | PRODUCT_COPY_FILES += \ |
John Stultz | 11ddf0b | 2018-04-11 12:25:32 -0700 | [diff] [blame] | 162 | frameworks/native/data/etc/android.hardware.sensor.proximity.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.sensor.proximity.xml |
Denis Ciocca | b92f2ef | 2017-10-31 17:18:50 +0800 | [diff] [blame] | 163 | endif |
Sahaj Sarup | 9a61afa | 2017-11-07 20:58:21 +0000 | [diff] [blame] | 164 | |
| 165 | # VR HAL |
| 166 | PRODUCT_COPY_FILES += \ |
| 167 | frameworks/native/services/vr/virtual_touchpad/idc/vr-virtual-touchpad-1.idc:$(TARGET_COPY_OUT_VENDOR)/usr/idc/vr-virtual-touchpad-1.idc \ |
| 168 | frameworks/native/data/etc/android.hardware.vr.high_performance.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vr.high_performance.xml \ |
| 169 | frameworks/native/data/etc/android.hardware.vr.headtracking-0.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.vr.headtracking.xml |
| 170 | |
| 171 | PRODUCT_PACKAGES += \ |
| 172 | vr.default \ |
| 173 | android.hardware.vr@1.0-service \ |
| 174 | android.hardware.vr@1.0-impl |
| 175 | |
Ben Fennema | 52301e4 | 2017-10-17 12:24:04 -0700 | [diff] [blame] | 176 | endif |
| 177 | |
Sahaj Sarup | 93980e0 | 2018-09-11 13:24:20 +0000 | [diff] [blame] | 178 | |
| 179 | ifneq (,$(filter $(TARGET_PRODUCT),hikey960_tv hikey_tv)) |
| 180 | # TV Specific Packages |
| 181 | PRODUCT_PACKAGES += \ |
| 182 | TvSettings \ |
| 183 | LiveTv \ |
| 184 | google-tv-pairing-protocol \ |
| 185 | TvProvision \ |
| 186 | LeanbackSampleApp \ |
| 187 | TvSampleLeanbackLauncher \ |
| 188 | TvProvider \ |
| 189 | SettingsIntelligence \ |
| 190 | tv_input.default \ |
| 191 | com.android.media.tv.remoteprovider \ |
| 192 | InputDevices |
| 193 | PRODUCT_PROPERTY_OVERRIDES += ro.sf.lcd_density=260 |
| 194 | else |
| 195 | |
Sunny Goyal | d8abea8 | 2018-05-29 16:18:14 -0700 | [diff] [blame] | 196 | # Use Launcher3QuickStep |
| 197 | PRODUCT_PACKAGES += Launcher3QuickStep |
Sahaj Sarup | 93980e0 | 2018-09-11 13:24:20 +0000 | [diff] [blame] | 198 | PRODUCT_PROPERTY_OVERRIDES += ro.sf.lcd_density=160 |
| 199 | endif |
Sahaj Sarup | aef8e3f | 2017-08-22 14:02:42 +0530 | [diff] [blame] | 200 | |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 201 | # Copy hardware config file(s) |
| 202 | PRODUCT_COPY_FILES += \ |
John Stultz | 11ddf0b | 2018-04-11 12:25:32 -0700 | [diff] [blame] | 203 | device/linaro/hikey/etc/permissions/android.hardware.screen.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.screen.xml \ |
| 204 | frameworks/native/data/etc/android.software.cts.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.cts.xml \ |
| 205 | frameworks/native/data/etc/android.software.app_widgets.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.app_widgets.xml \ |
| 206 | frameworks/native/data/etc/android.software.backup.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.backup.xml \ |
| 207 | frameworks/native/data/etc/android.software.voice_recognizers.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.voice_recognizers.xml \ |
| 208 | frameworks/native/data/etc/android.hardware.ethernet.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.ethernet.xml \ |
| 209 | frameworks/native/data/etc/android.hardware.usb.accessory.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.accessory.xml \ |
| 210 | frameworks/native/data/etc/android.hardware.usb.host.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.host.xml \ |
| 211 | frameworks/native/data/etc/android.software.device_admin.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.device_admin.xml |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 212 | |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 213 | # Include BT modules |
John Stultz | 58bae75 | 2018-10-18 13:13:24 -0700 | [diff] [blame] | 214 | $(call inherit-product, device/linaro/hikey/wpan/ti-wpan-products.mk) |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 215 | |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 216 | PRODUCT_COPY_FILES += \ |
John Stultz | 11ddf0b | 2018-04-11 12:25:32 -0700 | [diff] [blame] | 217 | frameworks/native/data/etc/android.hardware.wifi.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.xml \ |
| 218 | frameworks/native/data/etc/android.hardware.wifi.direct.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.direct.xml \ |
| 219 | frameworks/native/data/etc/android.hardware.bluetooth.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth.xml \ |
| 220 | frameworks/native/data/etc/android.hardware.bluetooth_le.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth_le.xml \ |
| 221 | device/linaro/hikey/wpa_supplicant.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/wpa_supplicant.conf \ |
Dmitry Shmidt | 9dd7b9c | 2018-02-01 10:09:39 -0800 | [diff] [blame] | 222 | $(LOCAL_PATH)/wpa_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/wpa_supplicant_overlay.conf \ |
| 223 | $(LOCAL_PATH)/p2p_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/p2p_supplicant_overlay.conf |
Eric Laurent | c313d91 | 2017-04-20 11:45:21 -0700 | [diff] [blame] | 224 | |
| 225 | # audio policy configuration |
| 226 | USE_XML_AUDIO_POLICY_CONF := 1 |
| 227 | PRODUCT_COPY_FILES += \ |
| 228 | device/linaro/hikey/audio/audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_configuration.xml \ |
| 229 | frameworks/av/services/audiopolicy/config/a2dp_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/a2dp_audio_policy_configuration.xml \ |
| 230 | frameworks/av/services/audiopolicy/config/r_submix_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/r_submix_audio_policy_configuration.xml \ |
| 231 | frameworks/av/services/audiopolicy/config/usb_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/usb_audio_policy_configuration.xml \ |
| 232 | frameworks/av/services/audiopolicy/config/default_volume_tables.xml:$(TARGET_COPY_OUT_VENDOR)/etc/default_volume_tables.xml \ |
| 233 | frameworks/av/services/audiopolicy/config/audio_policy_volumes.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_volumes.xml |
Vishal Bhoj | e72c920 | 2015-10-23 18:10:21 +0100 | [diff] [blame] | 234 | |
| 235 | # Copy media codecs config file |
Eric Laurent | 3051d9e | 2016-06-10 14:37:37 -0700 | [diff] [blame] | 236 | PRODUCT_COPY_FILES += \ |
John Stultz | 11ddf0b | 2018-04-11 12:25:32 -0700 | [diff] [blame] | 237 | device/linaro/hikey/etc/media_codecs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs.xml \ |
| 238 | frameworks/av/media/libstagefright/data/media_codecs_google_audio.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_google_audio.xml |
John Stultz | 98e17f6 | 2018-04-11 15:33:22 -0700 | [diff] [blame] | 239 | |
| 240 | PRODUCT_PACKAGES += \ |
| 241 | android.hardware.renderscript@1.0.vndk-sp\ |
| 242 | android.hardware.graphics.composer@2.1.vndk-sp\ |
| 243 | android.hardware.graphics.allocator@2.0.vndk-sp\ |
| 244 | android.hardware.graphics.mapper@2.0.vndk-sp\ |
| 245 | android.hardware.graphics.common@1.0.vndk-sp\ |
| 246 | libvndksupport.vndk-sp\ |
| 247 | libbinder.vndk-sp\ |
| 248 | libhwbinder.vndk-sp\ |
| 249 | libbase.vndk-sp\ |
| 250 | libfmq.vndk-sp\ |
| 251 | libcutils.vndk-sp\ |
| 252 | libhardware.vndk-sp\ |
| 253 | libhidlbase.vndk-sp\ |
| 254 | libhidltransport.vndk-sp\ |
| 255 | libui.vndk-sp\ |
| 256 | libutils.vndk-sp\ |
| 257 | libc++.vndk-sp\ |
| 258 | libRS_internal.vndk-sp\ |
| 259 | libRSDriver.vndk-sp\ |
| 260 | libRSCpuRef.vndk-sp\ |
| 261 | libbcinfo.vndk-sp\ |
| 262 | libblas.vndk-sp\ |
| 263 | libft2.vndk-sp\ |
| 264 | libpng.vndk-sp\ |
| 265 | libcompiler_rt.vndk-sp\ |
| 266 | libbacktrace.vndk-sp\ |
| 267 | libunwind.vndk-sp\ |
| 268 | libunwindstack.vndk-sp\ |
| 269 | liblzma.vndk-sp\ |
| 270 | libion.vndk-sp\ |