diff options
author | Sebastiano Barezzi <barezzisebastiano@gmail.com> | 2021-09-13 01:13:10 +0200 |
---|---|---|
committer | Sebastiano Barezzi <barezzisebastiano@gmail.com> | 2021-09-13 15:59:52 +0200 |
commit | a3661377c234e0683b7f2b9af62d8b09531dec13 (patch) | |
tree | 300641640eef02a3c954a6212a7a7baa32c2aa8f /ir | |
parent | d5030d512b7f567c033ccfe374548d48f3529ec0 (diff) |
sdm660-common: ir: Cleanup Android.bp
Change-Id: I40e31540144053513e6ed82f51aa5f2655eb710a
Diffstat (limited to 'ir')
-rw-r--r-- | ir/Android.bp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/ir/Android.bp b/ir/Android.bp index 4e902c4..d778f36 100644 --- a/ir/Android.bp +++ b/ir/Android.bp @@ -8,7 +8,6 @@ cc_library_shared { name: "android.hardware.ir@1.0-impl", defaults: ["hidl_defaults"], relative_install_path: "hw", - proprietary: true, srcs: ["ConsumerIr.cpp"], shared_libs: [ "libhidlbase", @@ -17,16 +16,15 @@ cc_library_shared { "libutils", "android.hardware.ir@1.0", ], + vendor: true, } cc_binary { - relative_install_path: "hw", - defaults: ["hidl_defaults"], name: "android.hardware.ir@1.0-service", - proprietary: true, + defaults: ["hidl_defaults"], + relative_install_path: "hw", init_rc: ["android.hardware.ir@1.0-service.rc"], srcs: ["service.cpp"], - shared_libs: [ "liblog", "libhardware", @@ -34,5 +32,5 @@ cc_binary { "libutils", "android.hardware.ir@1.0", ], - + vendor: true, } |