summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-02-14 00:20:52 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-02-14 00:20:52 +0000
commit27b5676b7b88a77470dfd187b4265492ba34471b (patch)
tree033a9bd40032c5751a81455db6df1c3b2b18fc55
parent42b311a7f0c0cd1de8adde20b1545558a26ca3be (diff)
parent9eba36ee93c5f821302b1fe525000bad004e140c (diff)
downloadgtest_extras-27b5676b7b88a77470dfd187b4265492ba34471b.tar.gz
Snap for 11445705 from 9eba36ee93c5f821302b1fe525000bad004e140c to sdk-release
Change-Id: I1d5699c7e2c3f348764352a72e6c7a739d54b825
-rw-r--r--Android.bp22
1 files changed, 18 insertions, 4 deletions
diff --git a/Android.bp b/Android.bp
index c156e28..3e6e382 100644
--- a/Android.bp
+++ b/Android.bp
@@ -13,6 +13,7 @@
// limitations under the License.
package {
+ default_team: "trendy_team_native_tools_libraries",
default_applicable_licenses: ["Android-Apache-2.0"],
}
@@ -20,14 +21,19 @@ cc_defaults {
name: "libgtest_isolated_defaults",
vendor_available: true,
product_available: true,
- native_bridge_supported: true
+ native_bridge_supported: true,
}
cc_library_static {
name: "libgtest_isolated",
defaults: ["libgtest_isolated_defaults"],
host_supported: true,
- cflags: ["-Wall", "-Werror", "-Wextra", "-Wconversion"],
+ cflags: [
+ "-Wall",
+ "-Werror",
+ "-Wextra",
+ "-Wconversion",
+ ],
export_include_dirs: ["include"],
srcs: [
@@ -54,7 +60,11 @@ cc_library_static {
name: "libgtest_isolated_main",
defaults: ["libgtest_isolated_defaults"],
host_supported: true,
- cflags: ["-Wall", "-Werror", "-Wextra"],
+ cflags: [
+ "-Wall",
+ "-Werror",
+ "-Wextra",
+ ],
srcs: [
"Main.cpp",
],
@@ -82,7 +92,11 @@ cc_test {
"tests/OptionsTest.cpp",
"tests/SystemTests.cpp",
],
- cflags: ["-Wall", "-Werror", "-Wextra"],
+ cflags: [
+ "-Wall",
+ "-Werror",
+ "-Wextra",
+ ],
shared_libs: [
"libbase",