This CL implements the on-device part of ProtoLog - the new logging system for WindowManager. Design doc: go/windowmanager-log2proto Change-Id: I2c88c97dabb3465ffc0615b8017b335a494bca59 Bug: Test: atest FrameworksServicesTests:com.android.server.protolog protologtool-tests
34 lines
594 B
Plaintext
34 lines
594 B
Plaintext
java_library_host {
|
|
name: "protologtool-lib",
|
|
srcs: [
|
|
"src/com/android/protolog/tool/**/*.kt",
|
|
],
|
|
static_libs: [
|
|
"protolog-common",
|
|
"javaparser",
|
|
"protolog-proto",
|
|
"jsonlib",
|
|
],
|
|
}
|
|
|
|
java_binary_host {
|
|
name: "protologtool",
|
|
manifest: "manifest.txt",
|
|
static_libs: [
|
|
"protologtool-lib",
|
|
],
|
|
}
|
|
|
|
java_test_host {
|
|
name: "protologtool-tests",
|
|
test_suites: ["general-tests"],
|
|
srcs: [
|
|
"tests/**/*.kt",
|
|
],
|
|
static_libs: [
|
|
"protologtool-lib",
|
|
"junit",
|
|
"mockito",
|
|
],
|
|
}
|