diff options
author | Cosme Domínguez Díaz <cosme.ddiaz@gmail.com> | 2018-03-28 14:04:20 +0200 |
---|---|---|
committer | Cosme Domínguez Díaz <cosme.ddiaz@gmail.com> | 2018-03-29 18:54:39 +0200 |
commit | 7fc8c30651b2a0889cc6dc84fe76e150167c6cbe (patch) | |
tree | 852d74c9196eea3b925d921743f28181f6373865 /libhidl/Android.bp | |
parent | c8bf9becc30275d9f6c183949fe4a59b6e4b5045 (diff) |
msm8996-common: libhidl: Switch to Soong build system.
* And add a copy of android.hidl.base@1.0.so for vendor partition.
It allow us to have RIL on GSI without need to hex-edit our blobs.
Diffstat (limited to '')
-rw-r--r-- | libhidl/Android.bp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libhidl/Android.bp b/libhidl/Android.bp new file mode 100644 index 0000000..7b93840 --- /dev/null +++ b/libhidl/Android.bp @@ -0,0 +1,18 @@ +cc_library_shared { + name: "android.hidl.base@1.0", + shared_libs: [ + "libhidltransport", + ], + export_shared_lib_headers: [ + "libhidltransport", + ], +} +cc_library_shared { + name: "android.hidl.manager@1.0", + shared_libs: [ + "libhidltransport", + ], + export_shared_lib_headers: [ + "libhidltransport", + ], +} |