Colin Cross 45c0d71e77 Convert frameworks/base/cmds/* to Android.bp
See build/soong/README.md for more information.

Also converts the rest of frameworks/base/tools/streaming_proto.

Bug: 122332340
Test: m checkbuild
Change-Id: I87c500c5464fb1722b4b518d89065f5e1ee29a97
Merged-In: Ieb54feb3902bddfd5a571369fbf50161ae646647
2019-03-29 16:35:06 -07:00

26 lines
469 B
Plaintext

// Copyright 2008 The Android Open Source Project
//
cc_library_host_static {
name: "libinstrumentation",
srcs: ["**/*.proto"],
cflags: ["-Wall", "-Werror"],
proto: {
type: "full",
export_proto_headers: true,
},
}
java_binary {
name: "am",
wrapper: "am",
srcs: [
"src/**/*.java",
"proto/**/*.proto",
],
proto: {
plugin: "javastream",
},
static_libs: ["libprotobuf-java-lite"],
}