summaryrefslogtreecommitdiffstats
path: root/libvndksupport
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2018-02-16 17:58:14 -0800
committerElliott Hughes <enh@google.com>2018-02-16 17:58:14 -0800
commitdc699a269f6a22af6cbba0f6e1359fde103dc4d3 (patch)
treedb8830dc9e776480c4bc2170d276582d57a9a83a /libvndksupport
parent8c0c1ba98939a201f758fc3952ab59c7429132c2 (diff)
downloadsystem_core-dc699a269f6a22af6cbba0f6e1359fde103dc4d3.tar.gz
system_core-dc699a269f6a22af6cbba0f6e1359fde103dc4d3.tar.bz2
system_core-dc699a269f6a22af6cbba0f6e1359fde103dc4d3.zip
bpfmt.
Bug: N/A Test: builds Change-Id: I89ad00e1c4c7e0767bc80a7ac7935a4d55e090ac
Diffstat (limited to 'libvndksupport')
-rw-r--r--libvndksupport/Android.bp5
-rw-r--r--libvndksupport/tests/Android.bp7
2 files changed, 9 insertions, 3 deletions
diff --git a/libvndksupport/Android.bp b/libvndksupport/Android.bp
index fec79b70d..e73b36652 100644
--- a/libvndksupport/Android.bp
+++ b/libvndksupport/Android.bp
@@ -3,7 +3,10 @@ subdirs = ["tests"]
cc_library {
name: "libvndksupport",
srcs: ["linker.c"],
- cflags: ["-Wall", "-Werror"],
+ cflags: [
+ "-Wall",
+ "-Werror",
+ ],
local_include_dirs: ["include/vndksupport"],
export_include_dirs: ["include"],
shared_libs: ["liblog"],
diff --git a/libvndksupport/tests/Android.bp b/libvndksupport/tests/Android.bp
index 5b467f8ff..2570cce95 100644
--- a/libvndksupport/tests/Android.bp
+++ b/libvndksupport/tests/Android.bp
@@ -17,11 +17,14 @@ cc_test {
srcs: [
"linker_test.cpp",
],
- cflags: ["-Wall", "-Werror"],
+ cflags: [
+ "-Wall",
+ "-Werror",
+ ],
host_supported: false,
shared_libs: [
"libvndksupport",
"libbase",
- ]
+ ],
}