blob: 813b6db5a3376bc7e2ad88155650f55c61efe005 [file] [log] [blame]
Colin Crossaf0b54c2017-09-27 17:22:32 -07001// Copyright (C) 2007 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15//
16// Definitions for building the Java library and associated tests.
17//
18
19// libcore is divided into modules.
20//
21// The structure of each module is:
22//
23// src/
24// main/ # To be shipped on every device.
25// java/ # Java source for library code.
26// native/ # C++ source for library code.
27// resources/ # Support files.
28// test/ # Built only on demand, for testing.
29// java/ # Java source for tests.
30// native/ # C++ source for tests (rare).
31// resources/ # Support files.
32//
33// All subdirectories are optional
34
35build = [
36 "openjdk_java_files.bp",
37 "non_openjdk_java_files.bp",
Colin Crossfb7218e2017-10-27 17:50:42 +000038 "annotated_java_files.bp",
Colin Crossaf0b54c2017-09-27 17:22:32 -070039]
40
41// The Java files and their associated resources.
42core_resource_dirs = [
43 "luni/src/main/java",
44 "ojluni/src/main/resources/",
45]
46
47java_defaults {
48 name: "libcore_java_defaults",
49 javacflags: [
50 //"-Xlint:all",
51 //"-Xlint:-serial,-deprecation,-unchecked",
52 ],
53 dxflags: ["--core-library"],
54 no_standard_libs: true,
Andreas Gampe66b31732018-02-20 09:22:16 -080055 errorprone: {
56 javacflags: [
57 "-Xep:MissingOverride:OFF", // Ignore missing @Override.
58 ],
59 },
Colin Crossaf0b54c2017-09-27 17:22:32 -070060}
61
62//
63// Build for the target (device).
64//
65
66java_library {
67 name: "core-all",
68 defaults: ["libcore_java_defaults"],
69
70 srcs: [
71 ":openjdk_java_files",
72 ":non_openjdk_java_files",
73 ":android_icu4j_src_files",
74 ":openjdk_lambda_stub_files",
75 ],
Colin Crossa4d9fc42017-09-29 18:04:37 -070076 openjdk9: {
77 srcs: ["luni/src/module/java/module-info.java"],
78 javacflags: ["--patch-module=java.base=."],
79 },
Colin Crossaf0b54c2017-09-27 17:22:32 -070080 java_resource_dirs: core_resource_dirs,
Colin Crossa4d9fc42017-09-29 18:04:37 -070081 java_resources: [":android_icu4j_resources"],
Colin Crossaf0b54c2017-09-27 17:22:32 -070082
83 required: [
84 "tzdata",
85 "tzlookup.xml",
86 ],
87
Colin Crossa4d9fc42017-09-29 18:04:37 -070088 system_modules: "none",
89
Colin Crossaf0b54c2017-09-27 17:22:32 -070090 installable: false,
91}
92
Colin Crossa4d9fc42017-09-29 18:04:37 -070093java_system_modules {
94 name: "core-all-system-modules",
95 libs: ["core-all"],
96}
97
Colin Crossaf0b54c2017-09-27 17:22:32 -070098java_library {
99 name: "core-oj",
100 defaults: ["libcore_java_defaults"],
Colin Crossbb180be2017-10-09 14:54:53 -0700101 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700102
103 srcs: [":openjdk_java_files"],
104 java_resource_dirs: core_resource_dirs,
105 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700106 system_modules: "core-all-system-modules",
107 openjdk9: {
108 javacflags: ["--patch-module=java.base=."],
109 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700110
111 notice: "ojluni/NOTICE",
112
113 required: [
114 "tzdata",
115 "tzlookup.xml",
116 ],
Colin Crossbb180be2017-10-09 14:54:53 -0700117
Colin Crossaf0b54c2017-09-27 17:22:32 -0700118}
119
120// Definitions to make the core library.
121java_library {
122 name: "core-libart",
123 defaults: ["libcore_java_defaults"],
Colin Crossbb180be2017-10-09 14:54:53 -0700124 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700125
126 srcs: [
127 ":non_openjdk_java_files",
128 ":android_icu4j_src_files",
129 ],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700130 java_resources: [":android_icu4j_resources"],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700131
132 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700133 system_modules: "core-all-system-modules",
134 openjdk9: {
135 javacflags: ["--patch-module=java.base=."],
136 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700137
138 required: [
139 "tzdata",
140 "tzlookup.xml",
141 ],
142}
143
Colin Cross3c6c2e22017-10-18 13:24:52 -0700144// A guaranteed unstripped version of core-oj and core-libart.
145// The build system may or may not strip the core-oj and core-libart jars,
146// but these will not be stripped. See b/24535627.
147java_library {
148 name: "core-oj-testdex",
149 static_libs: ["core-oj"],
150 no_standard_libs: true,
151 libs: ["core-all"],
152 system_modules: "core-all-system-modules",
153 dxflags: ["--core-library"],
Colin Cross485ed362017-12-05 17:24:22 -0800154 dex_preopt: {
155 enabled: false,
156 },
Colin Cross3c6c2e22017-10-18 13:24:52 -0700157 notice: "ojluni/NOTICE",
158 required: [
159 "tzdata",
160 "tzlookup.xml",
161 ],
162}
163
164java_library {
165 name: "core-libart-testdex",
166 static_libs: ["core-libart"],
167 no_standard_libs: true,
168 libs: ["core-all"],
169 system_modules: "core-all-system-modules",
170 dxflags: ["--core-library"],
Colin Cross485ed362017-12-05 17:24:22 -0800171 dex_preopt: {
172 enabled: false,
173 },
Colin Cross3c6c2e22017-10-18 13:24:52 -0700174 notice: "ojluni/NOTICE",
175 required: [
176 "tzdata",
177 "tzlookup.xml",
178 ],
179}
180
Colin Crossaf0b54c2017-09-27 17:22:32 -0700181// A library that exists to satisfy javac when
182// compiling source code that contains lambdas.
183java_library {
184 name: "core-lambda-stubs",
185 defaults: ["libcore_java_defaults"],
186
187 srcs: [
188 ":openjdk_lambda_stub_files",
189 ":openjdk_lambda_duplicate_stub_files",
190 ],
191
192 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700193 system_modules: "core-all-system-modules",
194 openjdk9: {
195 javacflags: ["--patch-module=java.base=."],
196 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700197
198 notice: "ojluni/NOTICE",
199
200 installable: false,
201 include_srcs: true,
202}
Colin Crossa4d9fc42017-09-29 18:04:37 -0700203
204java_system_modules {
205 name: "core-system-modules",
206 libs: [
207 "core-oj",
208 "core-libart",
209 "core-lambda-stubs",
210 ],
211}
Colin Cross3c6c2e22017-10-18 13:24:52 -0700212
213// Build libcore test rules
214java_library_static {
215 name: "core-test-rules",
216 hostdex: true,
217 no_framework_libs: true,
218 srcs: [
219 "dalvik/test-rules/src/main/**/*.java",
220 "test-rules/src/main/**/*.java",
221 ],
222 static_libs: ["junit"],
223}
224
225// Make the core-tests-support library.
226java_library_static {
227 name: "core-tests-support",
228 hostdex: true,
229 no_framework_libs: true,
230 srcs: ["support/src/test/java/**/*.java"],
231 libs: [
232 "junit",
233 "bouncycastle",
234 ],
235 static_libs: [
236 "bouncycastle-bcpkix",
237 "bouncycastle-ocsp",
238 ],
239}
240
241// Make the jsr166-tests library.
242java_library_static {
243 name: "jsr166-tests",
244 srcs: ["jsr166-tests/src/test/java/**/*.java"],
245 no_framework_libs: true,
246 libs: [
247 "junit",
248 ],
249}
Nan Zhang65f27a32018-01-05 10:41:46 -0800250
251genrule {
252 name: "gen-ojluni-jaif-annotated-srcs",
253 tools: [
254 "gen-annotated-java-files-bp",
255 "soong_zip",
256 ],
257 tool_files: [
258 ":insert-annotations-to-source",
259 "annotations/ojluni.jaif",
260 ],
261 srcs: [
262 ":annotated_ojluni_files",
263 ],
264 cmd: "($(location gen-annotated-java-files-bp) $(location annotations/ojluni.jaif) > $(genDir)/annotated_java_files.bp.tmp) && " +
Nan Zhang8c561442018-02-27 17:21:49 -0800265 "(diff -u `pwd`/libcore/annotated_java_files.bp $(genDir)/annotated_java_files.bp.tmp || " +
Nan Zhang65f27a32018-01-05 10:41:46 -0800266 "(echo -e \"********************\" >&2; " +
267 " echo -e \"annotated_java_files.bp needs regenerating. Please run:\" >&2; " +
268 " echo -e \"libcore/annotations/generate_annotated_java_files.py libcore/annotations/ojluni.jaif > libcore/annotated_java_files.bp\" >&2; " +
Nan Zhang8c561442018-02-27 17:21:49 -0800269 " echo -e \"********************\" >&2; exit 1) ) && " +
Nan Zhang65f27a32018-01-05 10:41:46 -0800270 "(rm $(genDir)/annotated_java_files.bp.tmp) && " +
Nan Zhang8c561442018-02-27 17:21:49 -0800271 "(external/annotation-tools/annotation-file-utilities/scripts/insert-annotations-to-source -d $(genDir) $(location annotations/ojluni.jaif) $(in)) && " +
Nan Zhang65f27a32018-01-05 10:41:46 -0800272 "($(location soong_zip) -o $(out) -C $(genDir) -D $(genDir))",
273 out: [
274 "ojluni_jaif_annotated_srcs.srcjar",
275 ],
276}
277
278droiddoc {
279 name: "core-docs",
280 srcs: [
281 ":openjdk_javadoc_files",
282 ":non_openjdk_javadoc_files",
283 ":android_icu4j_src_files_for_docs",
284 ":gen-ojluni-jaif-annotated-srcs",
285 ],
286 exclude_srcs: [
287 ":annotated_ojluni_files",
288 ],
Dan Willemsenf2b04582018-02-26 14:36:32 -0800289 custom_template: "droiddoc-templates-sdk",
Nan Zhang65f27a32018-01-05 10:41:46 -0800290 hdf: [
291 "android.whichdoc offline",
292 ],
293 knowntags: [
294 "known_oj_tags.txt",
295 ],
296 proofread_file: "core-docs-proofread.txt",
297 todo_file: "core-docs-todo.html",
298 args: "-offlinemode -title \"libcore\"",
299}
Nan Zhangd55722b2018-02-27 15:08:20 -0800300
301filegroup {
302 name: "known-oj-tags",
303 srcs: [
304 "known_oj_tags.txt",
305 ],
306}