blob: d0e442e7058d78c96a6051e43ea1e9ef93f57324 [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}