From c2753f9bfad5c96d72652b10eb46eb8989cc40e2 Mon Sep 17 00:00:00 2001 From: Chris Parsons Date: Tue, 2 Aug 2022 15:24:37 -0400 Subject: [PATCH] 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 --- Android.bp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Android.bp b/Android.bp index c84d04a..547d610 100644 --- a/Android.bp +++ b/Android.bp @@ -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 {