blob: b9e34ee97f212237ac9397ebc1f2cb44fe10b6db [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
Makoto Onuki3aefe332023-10-06 10:02:07 -070019java_library {
20 name: "ravenwood-annotations-lib",
21 srcs: [":ravenwood-annotations"],
22 sdk_version: "core_current",
23 host_supported: true,
24 visibility: ["//visibility:public"],
25}
Jeff Sharkey91f414e2023-11-07 15:43:59 -070026
27java_library {
28 name: "ravenwood-junit",
29 srcs: ["junit-src/**/*.java"],
30 libs: [
Jeff Sharkey5e210d72023-11-10 11:22:05 -070031 "framework-minus-apex.ravenwood",
Jeff Sharkey91f414e2023-11-07 15:43:59 -070032 "junit",
33 ],
Jeff Sharkey91f414e2023-11-07 15:43:59 -070034 visibility: ["//visibility:public"],
35}
Jeff Sharkey4ee8a652023-11-14 08:45:56 -070036
37java_host_for_device {
38 name: "core-xml-for-device",
39 libs: [
40 "core-xml-for-host",
41 ],
42}