• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1//##########################################
2// Compile Robolectric junit
3//##########################################
4
5package {
6    // See: http://go/android-license-faq
7    // A large-scale-change added 'default_applicable_licenses' to import
8    // all of the 'license_kinds' from "external_robolectric-shadows_license"
9    // to get the below license kinds:
10    //   SPDX-license-identifier-MIT
11    default_applicable_licenses: ["external_robolectric_license"],
12}
13
14java_library_host {
15    name: "Robolectric_junit_upstream",
16    libs: [
17        "Robolectric_annotations_upstream",
18        "Robolectric_shadowapi_upstream",
19        "Robolectric_sandbox_upstream",
20        "Robolectric_utils_upstream",
21        "asm-commons-9.2",
22        "guava",
23        "asm-tree-9.2",
24        "hamcrest",
25        "junit",
26        "asm-9.2",
27        "jsr305",
28    ],
29    srcs: ["src/main/java/**/*.java"],
30}
31