diff options
| author | 2021-01-14 19:49:23 +0000 | |
|---|---|---|
| committer | 2021-01-14 19:49:23 +0000 | |
| commit | 30703bc4138db900d5428df6587b89f408865a4f (patch) | |
| tree | 5e9dbcac430b7f2d616d1a6a57e8b11ac663c0fb | |
| parent | c8867915384fae6b03c96092eb74a6d1751ef798 (diff) | |
| parent | f0a1a325da5620d51075a6e2d2f72ac426d0ba61 (diff) | |
Merge "Create headers library for libvibrator"
| -rw-r--r-- | libs/vibrator/Android.bp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libs/vibrator/Android.bp b/libs/vibrator/Android.bp index 49bc6bf067..f570b83f13 100644 --- a/libs/vibrator/Android.bp +++ b/libs/vibrator/Android.bp @@ -55,3 +55,21 @@ cc_library { }, }, } + +cc_library_headers { + name: "libvibrator_headers", + vendor_available: true, + host_supported: true, + + export_include_dirs: [ + "include", + ], + + static_libs: [ + "libvibrator", + ], + + export_static_lib_headers: [ + "libvibrator", + ], +} |