blob: f8fe864a97137aa23890169a3f7c9cd384a58444 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
blueprint_go_binary {
name: "extract_apks",
srcs: ["main.go"],
deps: [
"android-archive-zip",
"golang-protobuf-proto",
"soong-cmd-extract_apks-proto",
],
testSrcs: ["main_test.go"],
}
bootstrap_go_package {
name: "soong-cmd-extract_apks-proto",
pkgPath: "android/soong/cmd/extract_apks/bundle_proto",
deps: ["golang-protobuf-proto"],
srcs: [
"bundle_proto/commands.pb.go",
"bundle_proto/config.pb.go",
"bundle_proto/targeting.pb.go",
],
}
|