Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 325fb3e2 authored by Cole Faust's avatar Cole Faust
Browse files

Fix module-file name collisions

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

Bug: 198619163
Test: m ime, verified it was still installed to out/target/product/emulator64_x86_64/system/bin/ime and not ime.sh
Change-Id: I214e190e159a7aff9149e77146d1a493992e885d
parent 7d825e68
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line

package {
    default_applicable_licenses: ["frameworks_base_cmds_abx_license"],
}
@@ -18,7 +17,7 @@ license {

java_binary {
    name: "abx",
    wrapper: "abx",
    wrapper: "abx.sh",
    srcs: ["**/*.java"],
    required: [
        "abx2xml",
@@ -28,10 +27,10 @@ java_binary {

sh_binary {
    name: "abx2xml",
    src: "abx2xml",
    src: "abx2xml.sh",
}

sh_binary {
    name: "xml2abx",
    src: "xml2abx",
    src: "xml2abx.sh",
}
+0 −0

File moved.

+0 −0

File moved.

+0 −0

File moved.

+1 −1
Original line number Diff line number Diff line
@@ -20,6 +20,6 @@ license {

java_binary {
    name: "bmgr",
    wrapper: "bmgr",
    wrapper: "bmgr.sh",
    srcs: ["**/*.java"],
}
Loading