• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_team: "trendy_team_framework_accessibility",
3    // See: http://go/android-license-faq
4    // A large-scale-change added 'default_applicable_licenses' to import
5    // all of the 'license_kinds' from "frameworks_base_license"
6    // to get the below license kinds:
7    //   SPDX-license-identifier-Apache-2.0
8    default_applicable_licenses: ["frameworks_base_license"],
9}
10
11cc_library_shared {
12    name: "libperftestscore_jni",
13
14    srcs: ["SystemPerfTest.cpp"],
15
16    cflags: [
17        "-Wall",
18        "-Werror",
19        "-Wunused",
20        "-Wunreachable-code",
21    ],
22    header_libs: ["jni_headers"],
23
24    shared_libs: [
25        "libandroid_runtime",
26        "liblog",
27        "libnativehelper",
28    ],
29}
30