summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2019-11-07 03:20:33 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-11-07 03:20:33 +0000
commitec215505bcc4a21de2664cb19f7bdeb2e7cb4623 (patch)
treebffbf6456100c92b290cdad31b689a3377f02f3b
parent91849c18f6a8c9126ff46e7c7022284c5d8358b3 (diff)
parent744c327ad5ac2123be72fd8c0dd3a63b07cbf0f0 (diff)
downloadcuttlefish_common-ec215505bcc4a21de2664cb19f7bdeb2e7cb4623.tar.gz
Merge "Use the correct module type for script files"
-rw-r--r--host/commands/assemble_cvd/Android.bp5
-rw-r--r--host/libs/vm_manager/Android.bp5
2 files changed, 4 insertions, 6 deletions
diff --git a/host/commands/assemble_cvd/Android.bp b/host/commands/assemble_cvd/Android.bp
index b03d8bfb..10f4e311 100644
--- a/host/commands/assemble_cvd/Android.bp
+++ b/host/commands/assemble_cvd/Android.bp
@@ -66,8 +66,7 @@ cc_binary_host {
defaults: ["cuttlefish_host_only", "cuttlefish_libicuuc"],
}
-cc_prebuilt_binary {
+sh_binary_host {
name: "cf_bpttool",
- srcs: ["cf_bpttool"],
- defaults: ["cuttlefish_host_only"],
+ src: "cf_bpttool",
}
diff --git a/host/libs/vm_manager/Android.bp b/host/libs/vm_manager/Android.bp
index 6c638ea1..eadcb123 100644
--- a/host/libs/vm_manager/Android.bp
+++ b/host/libs/vm_manager/Android.bp
@@ -38,8 +38,7 @@ cc_library_host_static {
defaults: ["cuttlefish_host_only"],
}
-cc_prebuilt_binary {
+sh_binary_host {
name: "cf_qemu.sh",
- srcs: ["cf_qemu.sh"],
- defaults: ["cuttlefish_host_only"],
+ src: "cf_qemu.sh",
}