diff options
-rw-r--r-- | startop/view_compiler/Android.bp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/startop/view_compiler/Android.bp b/startop/view_compiler/Android.bp index 2fc3a0dd874e..7dc83c3db868 100644 --- a/startop/view_compiler/Android.bp +++ b/startop/view_compiler/Android.bp @@ -46,7 +46,7 @@ cc_defaults { }, } -cc_library_host_static { +cc_library_static { name: "libviewcompiler", defaults: ["viewcompiler_defaults"], srcs: [ @@ -58,9 +58,10 @@ cc_library_host_static { "util.cc", "layout_validation.cc", ], + host_supported: true, } -cc_binary_host { +cc_binary { name: "viewcompiler", defaults: ["viewcompiler_defaults"], srcs: [ @@ -70,6 +71,7 @@ cc_binary_host { "libgflags", "libviewcompiler", ], + host_supported: true } cc_test_host { |