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 (cherry picked from commit 45c0d71e774c84ec81392393a0fafad398d2838d)
26 lines
469 B
Plaintext
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"],
|
|
}
|