Make viewcompiler available on device

We'll need this binary on device to be able to compile views at application
install time. There will be a followup CL to the build system to make sure
viewcompiler is built and installed by default.

Bug: 111895153
Change-Id: I2c98864118dfeca79e36be760bd44b9afa03b4d4
This commit is contained in:
Eric Holk
2019-01-14 10:25:40 -08:00
parent b6d32aa5e8
commit bf30e31acc

View File

@@ -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 {