Fix module-file name collisions

Bazel doesn't allow a module and file with the same name.

These are some extra modules I missed in aosp/2201115

Bug: 198619163
Test: m am, verified it was still installed to out/target/product/emulator64_x86_64/system/bin/am and not am.sh
Change-Id: I763a938918854541ec5b0bcf740b1b6cf0fce771
This commit is contained in:
Cole Faust 2022-09-01 15:04:37 -07:00
parent 565f2ab115
commit d633c8e430
6 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ cc_library_host_static {
java_binary {
name: "am",
wrapper: "am",
wrapper: "am.sh",
srcs: [
"src/**/*.java",
"proto/**/*.proto",

View File

@ -19,5 +19,5 @@ license {
sh_binary {
name: "appops",
src: "appops",
src: "appops.sh",
}

View File

@ -19,6 +19,6 @@ license {
java_binary {
name: "appwidget",
wrapper: "appwidget",
wrapper: "appwidget.sh",
srcs: ["**/*.java"],
}