diff options
| author | 2017-06-27 00:35:48 +0000 | |
|---|---|---|
| committer | 2017-06-27 00:35:50 +0000 | |
| commit | 2bb661ca09d87de9a47bd06145c42dfe99d51ca7 (patch) | |
| tree | a428fdba95a0e9e841acd1524f7c30d904a01b9c | |
| parent | bbf3096e2208ef746bfd0036fa964ff5b482bc78 (diff) | |
| parent | b7df6cba8ebd3ff7dcb0f761d53256111b3b47e7 (diff) | |
Merge "libbinder: really make it available to vendors"
| -rw-r--r-- | libs/binder/Android.bp | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/libs/binder/Android.bp b/libs/binder/Android.bp index 77a8c022c4..087718eaa8 100644 --- a/libs/binder/Android.bp +++ b/libs/binder/Android.bp @@ -15,6 +15,17 @@ cc_library_headers { name: "libbinder_headers", export_include_dirs: ["include"], + vendor_available: true, + header_libs: [ + "libbase_headers", + "libcutils_headers", + "libutils_headers", + ], + export_header_lib_headers: [ + "libbase_headers", + "libcutils_headers", + "libutils_headers", + ], } cc_library { @@ -70,9 +81,13 @@ cc_library { "libcutils", "libutils", ], - export_shared_lib_headers: [ - "libbase", - "libutils", + + header_libs: [ + "libbinder_headers", + ], + + export_header_lib_headers: [ + "libbinder_headers", ], clang: true, |