• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3    default_team: "trendy_team_system_performance",
4}
5
6java_test_host {
7    name: "uprobestats-test",
8    srcs: [
9        "*.java",
10    ],
11    java_resources: ["test/*.textproto"],
12    libs: [
13        "compatibility-host-util",
14        "core_cts_test_resources",
15        "cts-tradefed",
16        "host-libprotobuf-java-full",
17        "tradefed",
18        "truth",
19    ],
20    static_libs: [
21        "android.hardware.usb.flags-aconfig-java-host",
22        "android.os.flags-aconfig-java-host",
23        "cts-statsd-atom-host-test-utils",
24        "flag-junit-host",
25        "perfetto_config-full",
26        "art_flags_uprobestats_java_lib",
27        "uprobestats_flags_java_lib",
28        "uprobestats-protos",
29    ],
30    proto: {
31        type: "full",
32    },
33    test_suites: [
34        "general-tests",
35        "mts-uprobestats",
36    ],
37}
38
39python_binary_host {
40    name: "hello_uprobestats",
41    main: "hello_uprobestats.py",
42    srcs: [
43        "hello_uprobestats.py",
44        ":uprobestats-proto-files",
45    ],
46    data: ["test/*.textproto"],
47    libs: ["libprotobuf-python"],
48    proto: {
49        canonical_path_from_root: false,
50    },
51}
52