• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5java_library {
6    name: "TestParameterInjector",
7    srcs: [
8        "src/main/java/**/*.java"
9    ],
10    static_libs: [
11        "guava",
12        "auto_value_annotations",
13        "junit",
14        "libprotobuf-java-lite",
15        "snakeyaml"
16    ],
17    plugins: ["auto_value_plugin", "auto_annotation_plugin"],
18    host_supported: true
19}
20
21java_test_host {
22    name: "TestParameterInjectorTest",
23    srcs: ["src/test/java/**/*.java"],
24    static_libs: [
25        "TestParameterInjector",
26        "truth-prebuilt"
27    ],
28    test_options: {
29        unit_test: true,
30    },
31}