blob: 5c9bf182834784d3399f58f48d08940364c65331 [file] [log] [blame]
Makoto Onuki3aefe332023-10-06 10:02:07 -07001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_base_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_base_license"],
8}
9
10filegroup {
11 name: "ravenwood-annotations",
12 srcs: [
13 "annotations-src/**/*.java",
14 ],
Anton Hanssond82cbc72023-10-30 20:00:39 +000015 path: "annotations-src",
Makoto Onuki3aefe332023-10-06 10:02:07 -070016 visibility: ["//visibility:public"],
17}
18
19// File that contains the standard command line arguments to hoststubgen.
20filegroup {
21 name: "ravenwood-standard-options",
22 srcs: [
23 "ravenwood-standard-options.txt",
24 ],
25 visibility: ["//visibility:public"],
26}
27
28java_library {
29 name: "ravenwood-annotations-lib",
30 srcs: [":ravenwood-annotations"],
31 sdk_version: "core_current",
32 host_supported: true,
33 visibility: ["//visibility:public"],
34}
Jeff Sharkey91f414e2023-11-07 15:43:59 -070035
36java_library {
37 name: "ravenwood-junit",
38 srcs: ["junit-src/**/*.java"],
39 libs: [
40 "junit",
41 ],
42 sdk_version: "core_current",
43 host_supported: true,
44 visibility: ["//visibility:public"],
45}