You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1011 B
47 lines
1011 B
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "frameworks_base_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["frameworks_base_license"],
|
|
}
|
|
|
|
java_library_host {
|
|
name: "protologtool-lib",
|
|
srcs: [
|
|
"src/com/android/protolog/tool/**/*.kt",
|
|
":protolog-common-src",
|
|
],
|
|
static_libs: [
|
|
"javaparser",
|
|
"platformprotos",
|
|
"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",
|
|
],
|
|
test_options: {
|
|
unit_test: true,
|
|
},
|
|
static_libs: [
|
|
"protologtool-lib",
|
|
"junit",
|
|
"mockito",
|
|
"objenesis",
|
|
],
|
|
}
|