summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-09-21 22:11:26 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-09-21 22:11:26 +0000
commit1540c0a2569020fb19f914700018eac82a5b8f98 (patch)
tree99c4f4152e2d43d097b68c0115e3e5c6c7ca14af
parent9868bc0c43a4096b07aaf9999033e70861ca8a06 (diff)
parentfed3636c715b37a18676a1b14d86bc431d426d7e (diff)
downloadndk-1540c0a2569020fb19f914700018eac82a5b8f98.tar.gz
Snap for 10843824 from fed3636c715b37a18676a1b14d86bc431d426d7e to 24Q1-release
Change-Id: I5e5d4b74fa09b1381593c2e275f0d59bf295ed4d
-rw-r--r--Android.bp15
1 files changed, 15 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 9b8550ee3..3c228674a 100644
--- a/Android.bp
+++ b/Android.bp
@@ -75,3 +75,18 @@ cc_library_static {
sdk_version: "minimum",
export_include_dirs: ["current/sources/android/cpufeatures"],
}
+
+// A module that encapsulates the header files of NDK System STL
+cc_library_headers {
+ name: "ndk_system",
+ sdk_version: "minimum",
+ sdk_variant_only: true,
+ stl: "none",
+ export_system_include_dirs: ["current/sources/cxx-stl/system/include"],
+ // the headers are available to both the platform and anyapex.
+ // this availability is required to compile jni deps of any android_app in these api domains.
+ apex_available: [
+ "//apex_available:anyapex",
+ "//apex_available:platform",
+ ],
+}