Fix bpmodify Android.bp definition

With this fix, running `m bpmodify` will correctly generate a go binary
at out/host/linux-x86/bin/bpmodify, after running tests in
bpmodify_test.go.

Test: m bpmodify
Change-Id: I42be5a366891b51a559d39d72d2b013e3a115492
This commit is contained in:
Chris Parsons 2022-08-02 15:24:37 -04:00
parent 145d5a8c83
commit c2753f9bfa

View file

@ -184,8 +184,12 @@ blueprint_go_binary {
blueprint_go_binary {
name: "bpmodify",
deps: ["blueprint-parser"],
deps: [
"blueprint-parser",
"blueprint-proptools",
],
srcs: ["bpmodify/bpmodify.go"],
testSrcs: ["bpmodify/bpmodify_test.go"],
}
blueprint_go_binary {