xref: /aosp_15_r20/external/robolectric/annotations/Android.bp (revision e6ba16074e6af37d123cb567d575f496bf0a58ee)
1//#############################################
2// Compile Robolectric annotations
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_annotations_upstream",
16    static_libs: [
17        "jsr305",
18    ],
19    libs: ["robolectric-host-android_all"],
20    srcs: ["src/main/java/**/*.java"],
21    visibility: ["//visibility:public"],
22}
23