summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2023-09-13 00:34:15 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2023-09-13 00:34:15 +0000
commit63e2c5671e9901fcd021912c2ddfc4343491b6f0 (patch)
tree99c4f4152e2d43d097b68c0115e3e5c6c7ca14af
parent381452a359d7634cf296d40105451ccb29600100 (diff)
parentf3742bbe329d1bdfa9e8dafed91b97d725fc0280 (diff)
downloadndk-63e2c5671e9901fcd021912c2ddfc4343491b6f0.tar.gz
Merge "Create a soong module for ndk_system STL headers" into main
-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",
+ ],
+}