aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Chinchilla <cachinchilla@google.com>2024-02-09 01:40:06 +0000
committerCQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>2024-02-09 01:40:06 +0000
commit221456bd12cd382ad5e3db4f67bd1892174714f0 (patch)
tree47ed9d3acac551c722a761326bf31bb721eea03c
parentd0ae1f109153bf201593772489a4383c6466fc7c (diff)
downloadpigweed-221456bd12cd382ad5e3db4f67bd1892174714f0.tar.gz
pw_result: Add missing libs in Soong blueprint
- Fixed missing libraries in other modules too. Change-Id: I2f014a47401afaf6acfb5fd1b359bd4534449714 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/190950 Reviewed-by: Keir Mierle <keir@google.com> Commit-Queue: Carlos Chinchilla <cachinchilla@google.com>
-rw-r--r--pw_preprocessor/Android.bp8
-rw-r--r--pw_result/Android.bp14
2 files changed, 20 insertions, 2 deletions
diff --git a/pw_preprocessor/Android.bp b/pw_preprocessor/Android.bp
index 93ed98b5a..76bb69b2e 100644
--- a/pw_preprocessor/Android.bp
+++ b/pw_preprocessor/Android.bp
@@ -20,6 +20,12 @@ cc_library_headers {
name: "pw_preprocessor_headers",
cpp_std: "c++20",
vendor_available: true,
- export_include_dirs: ["public"],
host_supported: true,
+ export_include_dirs: ["public"],
+ header_libs: [
+ "pw_polyfill_headers",
+ ],
+ export_header_lib_headers: [
+ "pw_polyfill_headers",
+ ],
}
diff --git a/pw_result/Android.bp b/pw_result/Android.bp
index 52f9dfcb6..d4542a915 100644
--- a/pw_result/Android.bp
+++ b/pw_result/Android.bp
@@ -20,8 +20,20 @@ cc_library_headers {
name: "pw_result_headers",
cpp_std: "c++20",
vendor_available: true,
+ host_supported: true,
export_include_dirs: [
"public",
],
- host_supported: true,
+ static_libs: [
+ "pw_status",
+ ],
+ export_static_lib_headers: [
+ "pw_status",
+ ],
+ header_libs: [
+ "pw_preprocessor_headers",
+ ],
+ export_header_lib_headers: [
+ "pw_preprocessor_headers",
+ ],
}