summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-02-01 14:24:21 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-02-01 14:24:21 +0000
commitdc4eafcdb644e8436c6c347a3f12a412fcaad2ee (patch)
treea3205167754a688c4f35a7a90bcfe2acb4d8460d
parent65b44751cc8cc809145850c4f66c2976085a306f (diff)
parent2082d118fd8739ca8d5a5b490ad7785dd58036af (diff)
downloadgtest_extras-dc4eafcdb644e8436c6c347a3f12a412fcaad2ee.tar.gz
Snap for 9550733 from 2082d118fd8739ca8d5a5b490ad7785dd58036af to mainline-tzdata5-release
Change-Id: Ie9cac8a8dec9e3972930f4d163dcb0c7adb608d6
-rw-r--r--Android.bp10
1 files changed, 10 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index ef855f2..2e8def0 100644
--- a/Android.bp
+++ b/Android.bp
@@ -16,8 +16,16 @@ package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
+cc_defaults {
+ name: "libgtest_isolated_defaults",
+ vendor_available: true,
+ product_available: true,
+ native_bridge_supported: true
+}
+
cc_library_static {
name: "libgtest_isolated",
+ defaults: ["libgtest_isolated_defaults"],
host_supported: true,
cflags: ["-Wall", "-Werror", "-Wextra", "-Wconversion"],
export_include_dirs: ["include"],
@@ -44,6 +52,7 @@ cc_library_static {
cc_library_static {
name: "libgtest_isolated_main",
+ defaults: ["libgtest_isolated_defaults"],
host_supported: true,
cflags: ["-Wall", "-Werror", "-Wextra"],
srcs: [
@@ -63,6 +72,7 @@ cc_library_static {
cc_test {
name: "gtest_isolated_tests",
+ defaults: ["libgtest_isolated_defaults"],
host_supported: true,
srcs: [
"tests/OptionsTest.cpp",