blob: 3ace361f05096a686a6f091be9a3e040072bad1a [file] [log] [blame]
Bob Badour7bf73d92021-02-12 20:48:53 -08001package {
2 default_applicable_licenses: ["prebuilts_r8_license"],
3}
4
5// Added automatically by a large-scale-change that took the approach of
6// 'apply every license found to every target'. While this makes sure we respect
7// every license restriction, it may not be entirely correct.
8//
9// e.g. GPL in an MIT project might only apply to the contrib/ directory.
10//
11// Please consider splitting the single license below into multiple licenses,
12// taking care not to lose any license_kind information, and overriding the
13// default license using the 'licenses: [...]' property on targets as needed.
14//
15// For unused files, consider creating a 'fileGroup' with "//visibility:private"
16// to attach the license to, and including a comment whether the files may be
17// used in the current project.
18//
19// large-scale-change included anything that looked like it might be a license
20// text as a license_text. e.g. LICENSE, NOTICE, COPYING etc.
21//
22// Please consider removing redundant or irrelevant files from 'license_text:'.
23// See: http://go/android-license-faq
24license {
25 name: "prebuilts_r8_license",
26 visibility: [":__subpackages__"],
27 license_kinds: [
28 "SPDX-license-identifier-Apache-2.0",
29 "SPDX-license-identifier-BSD",
30 "SPDX-license-identifier-GPL",
31 "SPDX-license-identifier-MIT",
32 ],
33 license_text: [
34 "LICENSE",
35 "NOTICE",
36 ],
37}
38
Yohann Roussel4055b812017-10-23 11:46:43 +020039java_binary_host {
Alan Leunga5939282017-11-29 19:00:25 -080040 name: "d8",
41 wrapper: "d8",
Dan Willemsen84e89a22021-09-20 23:37:53 -070042 static_libs: ["r8"],
43 target: {
44 windows: {
45 enabled: true,
46 wrapper: "d8.bat",
47 },
48 },
Alan Leunga5939282017-11-29 19:00:25 -080049}
50
51java_binary_host {
Yohann Roussel4055b812017-10-23 11:46:43 +020052 name: "r8-compat-proguard",
53 wrapper: "r8-compat-proguard",
Dan Willemsen84e89a22021-09-20 23:37:53 -070054 static_libs: ["r8"],
Yohann Roussel4055b812017-10-23 11:46:43 +020055}
56
57java_import_host {
Dan Willemsen84e89a22021-09-20 23:37:53 -070058 name: "r8",
59 jars: ["r8.jar"],
60 target: {
61 windows: {
62 enabled: true,
63 },
64 },
Yohann Roussel4055b812017-10-23 11:46:43 +020065}