1package { 2 // See: http://go/android-license-faq 3 // A large-scale-change added 'default_applicable_licenses' to import 4 // all of the 'license_kinds' from "external_perfetto_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 default_applicable_licenses: ["external_perfetto_license"], 8} 9 10cc_library_shared { 11 name: "libperfettocts_jni", 12 srcs: [ 13 "fake_producer_jni.cc", 14 ], 15 header_libs: ["jni_headers"], 16 static_libs: [ 17 "libgtest", 18 "libprotobuf-cpp-lite", 19 "perfetto_cts_jni_deps", 20 "libperfetto_client_experimental", 21 ], 22 shared_libs: [ 23 "libandroid", 24 "liblog", 25 ], 26 compile_multilib: "both", 27 stl: "libc++_static", 28 defaults: [ 29 "perfetto_defaults", 30 ], 31} 32