diff options
| author | 2022-09-08 21:41:29 +0000 | |
|---|---|---|
| committer | 2022-09-08 21:41:29 +0000 | |
| commit | e4344eeca75079e39a5e6770866d941de46ebde6 (patch) | |
| tree | b63ff12458509624d589dbcb77ac50eb7b532aa7 | |
| parent | 3a44d98d8e887307256ef894c425248620698ba9 (diff) | |
Declare the headers of the ndk_library
This creates a dependency edge between the ndk_library and its headers,
which should be a no-op in regular Soong builds. This dependency edge
will be used in the Multi-tree project to export the relevant .h files into a well
known location
Test: m nothing
Bug: 239044713
Change-Id: I43ea3c193e07bedd1c00de0f492d570531ff8dcf
| -rw-r--r-- | libs/binder/ndk/Android.bp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/binder/ndk/Android.bp b/libs/binder/ndk/Android.bp index 33d28e65c5..8ae7537486 100644 --- a/libs/binder/ndk/Android.bp +++ b/libs/binder/ndk/Android.bp @@ -182,4 +182,8 @@ ndk_library { name: "libbinder_ndk", symbol_file: "libbinder_ndk.map.txt", first_version: "29", + export_header_libs: [ + "libbinder_ndk_headers", + "libbinder_ndk_helper_headers", + ], } |