diff options
| author | 2022-09-08 21:52:22 +0000 | |
|---|---|---|
| committer | 2022-09-08 21:52:22 +0000 | |
| commit | d59d1b929376239af3365875b9585a961d6bb3e3 (patch) | |
| tree | 1366baa7017cfcf861a9fc7b16b70ad743cbbc0a | |
| parent | 4a5e3f2b1b4641be1a14faed7a7ad05a59aa5e7d (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: Id037828b4b7f71ffe0d6a7841253c610eef3af31
| -rw-r--r-- | vulkan/libvulkan/Android.bp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vulkan/libvulkan/Android.bp b/vulkan/libvulkan/Android.bp index 5719b5cf61..a87f82fcbd 100644 --- a/vulkan/libvulkan/Android.bp +++ b/vulkan/libvulkan/Android.bp @@ -27,6 +27,9 @@ ndk_library { symbol_file: "libvulkan.map.txt", first_version: "24", unversioned_until: "current", + export_header_libs: [ + "ndk_vulkan_headers", + ], } cc_library_shared { |