blob: e02e0928a2f3b101b73ad4536bf843469e291e7d [file] [log] [blame]
Colin Cross09975c32017-08-29 15:01:05 -07001build = [
Colin Crossaf0b54c2017-09-27 17:22:32 -07002 "JavaLibrary.bp",
Colin Cross09975c32017-08-29 15:01:05 -07003 "NativeCode.bp",
4]
Nan Zhang65f27a32018-01-05 10:41:46 -08005
6python_binary_host {
7 name: "gen-annotated-java-files-bp",
8 main: "annotations/generate_annotated_java_files.py",
9 srcs: [
10 "annotations/generate_annotated_java_files.py",
11 ],
12 version: {
13 py2: {
14 enabled: true,
15 embedded_launcher: true,
16 },
17 py3: {
18 enabled: false,
19 },
20 },
21}
Nan Zhangd55722b2018-02-27 15:08:20 -080022
23genrule {
24 name: "notices-for-framework-stubs",
25 tool_files: [
26 "NOTICE",
27 "ojluni/NOTICE",
28 ],
29 cmd: "cp -f $(location NOTICE) $(genDir)/NOTICES/libcore-NOTICE && cp -f $(location ojluni/NOTICE) $(genDir)/NOTICES/ojluni-NOTICE",
30 out: [
31 "NOTICES/libcore-NOTICE",
32 "NOTICES/ojluni-NOTICE",
33 ],
34}