summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThiƩbaud Weksteen <tweek@google.com>2020-10-23 10:20:33 +0200
committerThiƩbaud Weksteen <tweek@google.com>2020-10-23 10:22:48 +0200
commit21a993263b8b2096610058fb62d639593ba70e43 (patch)
tree31e43afdb0bdea26b57870268e5d667cc92e3cff /tests
parentfd7725d91f9006ba89de52fbc32e1be60856a8a2 (diff)
downloadextras-21a993263b8b2096610058fb62d639593ba70e43.tar.gz
Enable bpfmt repo hook
Enable the bpfmt hook to automatically format Android.bp files. Fix current Blueprint files. This change has been generated using: $ find . -name Android.bp -exec bpfmt -w {} \; Test: cd system/extras; mm Change-Id: I4c6cc60a1afc13783c3da751291325b7160d52b3
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/Android.bp2
-rw-r--r--tests/lib/testUtil/Android.bp5
2 files changed, 5 insertions, 2 deletions
diff --git a/tests/lib/Android.bp b/tests/lib/Android.bp
index 7a8ee5d0..b44c2960 100644
--- a/tests/lib/Android.bp
+++ b/tests/lib/Android.bp
@@ -1 +1 @@
-subdirs = [ "*" ]
+subdirs = ["*"]
diff --git a/tests/lib/testUtil/Android.bp b/tests/lib/testUtil/Android.bp
index 8ac90a6e..a5a3f517 100644
--- a/tests/lib/testUtil/Android.bp
+++ b/tests/lib/testUtil/Android.bp
@@ -17,7 +17,10 @@
cc_library_static {
name: "libtestUtil",
srcs: ["testUtil.c"],
- cflags: ["-Wall", "-Werror"],
+ cflags: [
+ "-Wall",
+ "-Werror",
+ ],
export_include_dirs: ["include"],
shared_libs: [
"libcutils",