1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5java_test_helper_library {
6    name: "compatibility-host-provider-preconditions",
7    srcs: ["src/**/*.java"],
8    libs: [
9        "compatibility-host-util",
10        "cts-tradefed",
11        "tradefed",
12    ],
13    // Tag this module as a cts test artifact
14    test_suites: [
15        "cts",
16        "general-tests",
17        "sts",
18        "mcts-mediaprovider",
19        "mts-mediaprovider",
20    ],
21    host_supported: true,
22    device_supported: false,
23}
24