aboutsummaryrefslogtreecommitdiff
path: root/annotations/Android.bp
blob: fd17be03c8ec93327dad4570fad061d65607f79a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//#############################################
// Compile Robolectric annotations
//#############################################

package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "external_robolectric-shadows_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-MIT
    default_applicable_licenses: ["external_robolectric_license"],
}

java_library_host {
    name: "Robolectric_annotations_upstream",
    static_libs: [
        "jsr305",
    ],
    libs: ["robolectric-host-android_all"],
    srcs: ["src/main/java/**/*.java"],
    visibility: ["//visibility:public"],
}