summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYifan Hong2018-01-31 15:30:04 -0600
committerYifan Hong2018-01-31 17:01:19 -0600
commit6bce1a665aa1bebc6fe3731eeff962c8aae77c62 (patch)
tree2746b64e4098bb5e34c998952578c3dc26f50382 /test/Android.bp
parente3a9234dd75b9769a63f8e410c10549031a5d489 (diff)
downloadplatform-system-libvintf-6bce1a665aa1bebc6fe3731eeff962c8aae77c62.tar.gz
platform-system-libvintf-6bce1a665aa1bebc6fe3731eeff962c8aae77c62.tar.xz
platform-system-libvintf-6bce1a665aa1bebc6fe3731eeff962c8aae77c62.zip
remove LIBVINTF_HOST macro
There is a mixed use of LIBVINTF_HOST and LIBVINTF_TARGET, and for libvintftest, LIBVINTF_HOST is not even defined properly. Remove the use of LIBVINTF_HOST and replace with LIBVINTF_TARGET instead. Test: libvintf_test Test: vintf_object_test Change-Id: I557e65376dfd1d0fe953e9a7a03a47f227596460
Diffstat (limited to 'test/Android.bp')
-rw-r--r--test/Android.bp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Android.bp b/test/Android.bp
index d2121c6..6777ca3 100644
--- a/test/Android.bp
+++ b/test/Android.bp
@@ -39,9 +39,9 @@ cc_test {
39 "-Wno-deprecated-declarations", 39 "-Wno-deprecated-declarations",
40 ], 40 ],
41 target: { 41 target: {
42 host: { 42 android: {
43 cflags: ["-DLIBVINTF_HOST"], 43 cflags: ["-DLIBVINTF_TARGET"],
44 } 44 },
45 } 45 }
46} 46}
47 47