diff options
author | Alix <agespino@google.com> | 2022-04-18 04:03:25 +0000 |
---|---|---|
committer | Alix <agespino@google.com> | 2022-04-18 04:03:25 +0000 |
commit | 8e69830b96c694b695d95d173ec2065a9c7a224f (patch) | |
tree | dfb14772a2e5dbdadd7ff798a6c6063431ce76d2 | |
parent | 07ea90a5c3cf941e4e0db6a2086fe48d7e362b6f (diff) |
Deleted clang property in Android.bp files
Deleted deprecated clang property in Android.bp files using bpmodify.
Bug: 208980553
Test: treehugger
Change-Id: I58c700e7178d1d1b06011fe500a7133c667a9fed
-rw-r--r-- | libion/test/Android.bp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libion/test/Android.bp b/libion/test/Android.bp index 017eca2..fcc51f5 100644 --- a/libion/test/Android.bp +++ b/libion/test/Android.bp @@ -21,17 +21,20 @@ package { cc_test { name: "iontests_google", - clang: true, + vendor: true, proprietary: true, - cflags: [ "-g", "-Werror" ], + cflags: [ + "-g", + "-Werror", + ], shared_libs: ["libion_google"], srcs: [ "ion_test_fixture.cpp", "ion_allocate_test.cpp", "ion_allocate_api_test.cpp", "ion_device_test.cpp", - "ion_allocate_special.cpp", + "ion_allocate_special.cpp", //"map_test.cpp", //"exynos_api_test.cpp", ], |