diff options
author | 2024-11-13 10:48:07 +0900 | |
---|---|---|
committer | 2024-11-13 11:10:39 +0900 | |
commit | 7e8875b4114ef259c2fee18ed0d358eb18156abc (patch) | |
tree | 788c27f4b178fd5542cecb66d0a474c684463224 | |
parent | 6445f9165b09b5ceaefcbbc88b3b8a0a1419425d (diff) |
Make native_headers product_available
We're fixing the build system to correctly handle the image mutator and
we must explicitly expose native_headers to product modules because some
product modules use the sdk_version property. (Till now it worked
because product modules incorrectly become the core variant)
Bug: 370351758
Test: build
Change-Id: I0a6efb080be1683d44ee33f2cab7d332b7ab1f9c
-rw-r--r-- | Android.bp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp index 119c7ea5a4..ba55082248 100644 --- a/Android.bp +++ b/Android.bp @@ -42,6 +42,7 @@ cc_library_headers { export_include_dirs: [ "include/", ], + product_available: true, } ndk_headers { |