blob: 91acc3d0deb423de6788919f80dfa97cf4737834 [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 ],
15 visibility: ["//visibility:public"],
16}
17
18// File that contains the standard command line arguments to hoststubgen.
19filegroup {
20 name: "ravenwood-standard-options",
21 srcs: [
22 "ravenwood-standard-options.txt",
23 ],
24 visibility: ["//visibility:public"],
25}
26
27java_library {
28 name: "ravenwood-annotations-lib",
29 srcs: [":ravenwood-annotations"],
30 sdk_version: "core_current",
31 host_supported: true,
32 visibility: ["//visibility:public"],
33}