xref: /aosp_15_r20/frameworks/base/tests/Tracing/Android.bp (revision d57664e9bc4670b3ecf6748a746a57c557b6bc9e)
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 "frameworks_base_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_team: "trendy_team_windowing_tools",
8    default_applicable_licenses: ["frameworks_base_license"],
9}
10
11android_test {
12    name: "TracingTests",
13    proto: {
14        type: "nano",
15    },
16    // Include some source files directly to be able to access package members
17    srcs: ["src/**/*.java"],
18    libs: ["android.test.runner.stubs.system"],
19    static_libs: [
20        "junit",
21        "androidx.test.rules",
22        "mockito-target-minus-junit4",
23        "truth",
24        "platform-test-annotations",
25        "flickerlib-parsers",
26        "perfetto_trace_java_protos",
27        "flickerlib-trace_processor_shell",
28    ],
29    java_resource_dirs: ["res"],
30    certificate: "platform",
31    platform_apis: true,
32    test_suites: ["device-tests"],
33}
34