32 lines
754 B
Plaintext
32 lines
754 B
Plaintext
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "external_perfetto_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["external_perfetto_license"],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libperfettocts_jni",
|
|
srcs: [
|
|
"fake_producer_jni.cc",
|
|
],
|
|
header_libs: ["jni_headers"],
|
|
static_libs: [
|
|
"libgtest",
|
|
"libprotobuf-cpp-lite",
|
|
"perfetto_cts_jni_deps",
|
|
"libperfetto_client_experimental",
|
|
],
|
|
shared_libs: [
|
|
"libandroid",
|
|
"liblog",
|
|
],
|
|
compile_multilib: "both",
|
|
stl: "libc++_static",
|
|
defaults: [
|
|
"perfetto_defaults",
|
|
],
|
|
}
|