diff options
author | 2019-01-14 20:44:32 +0000 | |
---|---|---|
committer | 2019-01-14 20:44:32 +0000 | |
commit | eb678ba1d38f34a8e28fd51c44640e3b03ab1303 (patch) | |
tree | 96f2ee60b56eae58f2c3ca8f1249a129c0a6eb15 | |
parent | 392f0052c2ad63199988eb31d18e973680c6a767 (diff) | |
parent | bf30e31acc920f87dbd0e5a9d789bcebc422b34a (diff) |
Merge "Make viewcompiler available on device"
-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 { |