diff options
author | Steven Moreland <smoreland@google.com> | 2018-02-27 17:00:06 -0800 |
---|---|---|
committer | TingyiChen <tingyi364@gmail.com> | 2019-08-13 11:45:49 +0200 |
commit | 1cdd806994615301d5e6df7cf7cc90e443c2a6a3 (patch) | |
tree | 229eb29d68e4f32aae9f2ab52941e3b5f334d2c3 | |
parent | 47bf3d8d9190544783f1f2b4aae32dd997d69cc5 (diff) |
wayne-common: Only include bitness of hal impls that is used.
Bug: 73829928
Test: boot walleye, check directories, no errors during boot
Change-Id: Ia1272b2bcc5006fa75a50631861fbaccdeed7bee
-rw-r--r-- | wayne.mk | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -88,11 +88,11 @@ PRODUCT_COPY_FILES += \ # Audio PRODUCT_PACKAGES += \ - android.hardware.audio@4.0-impl \ + android.hardware.audio@4.0-impl:32 \ android.hardware.audio@2.0-service \ - android.hardware.audio.effect@4.0-impl \ + android.hardware.audio.effect@4.0-impl:32 \ android.hardware.audio.effect@2.0-service \ - android.hardware.soundtrigger@2.0-impl \ + android.hardware.soundtrigger@2.0-impl:32 \ android.hardware.soundtrigger@2.0-service \ audio.a2dp.default \ audio_amplifier.sdm660 \ @@ -153,7 +153,7 @@ PRODUCT_PACKAGES += \ Snap PRODUCT_PACKAGES += \ - android.hardware.camera.provider@2.4-impl \ + android.hardware.camera.provider@2.4-impl:32 \ android.hardware.camera.provider@2.4-service \ vendor.qti.hardware.camera.device@1.0 \ vendor.qti.hardware.camera.device@1.0_vendor @@ -189,10 +189,10 @@ PRODUCT_PACKAGES += \ libqdMetaData.system PRODUCT_PACKAGES += \ - android.hardware.graphics.allocator@2.0-impl \ + android.hardware.graphics.allocator@2.0-impl:64 \ android.hardware.graphics.allocator@2.0-service \ android.hardware.graphics.mapper@2.0-impl \ - android.hardware.graphics.composer@2.1-impl \ + android.hardware.graphics.composer@2.1-impl:64 \ android.hardware.graphics.composer@2.1-service \ android.hardware.memtrack@1.0-impl \ android.hardware.memtrack@1.0-service \ @@ -207,7 +207,7 @@ PRODUCT_PACKAGES += \ # DRM PRODUCT_PACKAGES += \ - android.hardware.drm@1.0-impl \ + android.hardware.drm@1.0-impl:32 \ android.hardware.drm@1.0-service \ android.hardware.drm@1.1-service.clearkey @@ -411,7 +411,7 @@ PRODUCT_COPY_FILES += \ # Sensors PRODUCT_PACKAGES += \ sensors.sdm660 \ - android.hardware.sensors@1.0-impl \ + android.hardware.sensors@1.0-impl:64 \ android.hardware.sensors@1.0-service PRODUCT_COPY_FILES += \ |