diff options
| author | 2022-02-04 18:50:33 +0000 | |
|---|---|---|
| committer | 2022-02-04 18:50:33 +0000 | |
| commit | 48eeaa70b3609a2460f33ba58eaa82d68ee2b49a (patch) | |
| tree | 6ee3f8c50999e6a1607ae7c02cdb2f28126bfaee | |
| parent | 0030d672186fe381252ddacd2455750fe5e7cd73 (diff) | |
| parent | ea7659e07baf893799ad7d51e341ab1d959ef078 (diff) | |
libbinder: format tests bp am: ea7659e07b
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1969561
Change-Id: I9d4e41ee71d6d4dad129a0d3ea2e4ae7d8dac940
| -rw-r--r-- | libs/binder/tests/Android.bp | 42 |
1 files changed, 34 insertions, 8 deletions
diff --git a/libs/binder/tests/Android.bp b/libs/binder/tests/Android.bp index 86da5887a8..5e5c495e79 100644 --- a/libs/binder/tests/Android.bp +++ b/libs/binder/tests/Android.bp @@ -37,7 +37,11 @@ cc_test { srcs: ["binderDriverInterfaceTest.cpp"], header_libs: ["libbinder_headers"], compile_multilib: "32", - multilib: { lib32: { suffix: "" } }, + multilib: { + lib32: { + suffix: "", + }, + }, cflags: ["-DBINDER_IPC_32BIT=1"], test_suites: ["vts"], } @@ -52,7 +56,10 @@ cc_test { }, header_libs: ["libbinder_headers"], srcs: ["binderDriverInterfaceTest.cpp"], - test_suites: ["device-tests", "vts"], + test_suites: [ + "device-tests", + "vts", + ], } cc_test { @@ -69,7 +76,11 @@ cc_test { "libgmock", ], compile_multilib: "32", - multilib: { lib32: { suffix: "" } }, + multilib: { + lib32: { + suffix: "", + }, + }, cflags: ["-DBINDER_IPC_32BIT=1"], test_suites: ["vts"], require_root: true, @@ -84,7 +95,10 @@ cc_test { enabled: false, }, }, - srcs: ["binderParcelUnitTest.cpp", "binderBinderUnitTest.cpp"], + srcs: [ + "binderParcelUnitTest.cpp", + "binderBinderUnitTest.cpp", + ], shared_libs: [ "libbinder", "libcutils", @@ -112,7 +126,10 @@ cc_test { static_libs: [ "libgmock", ], - test_suites: ["device-tests", "vts"], + test_suites: [ + "device-tests", + "vts", + ], require_root: true, } @@ -232,7 +249,10 @@ cc_test { "libbinder_tls_test_utils", "libbinder_tls_static", ], - test_suites: ["general-tests", "device-tests"], + test_suites: [ + "general-tests", + "device-tests", + ], } cc_benchmark { @@ -348,7 +368,10 @@ cc_test { "liblog", "libutils", ], - test_suites: ["device-tests", "vts"], + test_suites: [ + "device-tests", + "vts", + ], require_root: true, } @@ -402,7 +425,10 @@ cc_test { "binderStabilityTestIface-ndk", ], - test_suites: ["device-tests", "vts"], + test_suites: [ + "device-tests", + "vts", + ], require_root: true, } |