diff options
author | 2022-09-08 20:50:23 +0000 | |
---|---|---|
committer | 2022-09-27 16:58:12 +0000 | |
commit | fb6602dcf62eaa5731697469b1039ae6d5e8bfc9 (patch) | |
tree | be28da26076c6734899cbeb32e06bb0bcda5dcef | |
parent | bd37f6ff682a94000996b8a6ddf0e0608edd4c76 (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
Formatting changes are from bpfmt
Test: m nothing
Bug: 239044713
Change-Id: Id8db2858875a4aee904456fe3dec77c71fa47dc9
-rw-r--r-- | media/native/midi/Android.bp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/media/native/midi/Android.bp b/media/native/midi/Android.bp index 7acb8c744ba7..a991a71fd3f1 100644 --- a/media/native/midi/Android.bp +++ b/media/native/midi/Android.bp @@ -74,4 +74,8 @@ ndk_library { symbol_file: "libamidi.map.txt", first_version: "29", + export_header_libs: [ + "amidi", + ], + } |