blob: 2066c42bee07f23d55585d63734158ca26f3ade5 [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//
Neil Fuller77e3f3b2018-10-19 10:22:32 +010016// Definitions for building the Android core library and associated tests.
Colin Crossaf0b54c2017-09-27 17:22:32 -070017//
18
Neil Fuller77e3f3b2018-10-19 10:22:32 +010019// The Android core library provides low-level APIs for use by the rest of the
20// Android software stack. It is made up of various parts, some of which can be
21// found in libcore/ and other parts that can be found in various external/
22// directories. See the "core-system-modules" definition for the parts.
23
Neil Fullercf756882018-08-28 18:42:22 +010024// libcore has some sub-directories that follow a common structure:
25// e.g. dalvik, dom, harmony-tests, json, jsr166-tests, luni, libart, ojluni,
26// support, xml, xmlpull.
Colin Crossaf0b54c2017-09-27 17:22:32 -070027//
Neil Fullercf756882018-08-28 18:42:22 +010028// The structure of these is generally:
Colin Crossaf0b54c2017-09-27 17:22:32 -070029//
30// src/
31// main/ # To be shipped on every device.
32// java/ # Java source for library code.
Neil Fullercf756882018-08-28 18:42:22 +010033// native/ # C/C++ source for library code.
Colin Crossaf0b54c2017-09-27 17:22:32 -070034// resources/ # Support files.
35// test/ # Built only on demand, for testing.
36// java/ # Java source for tests.
Neil Fullercf756882018-08-28 18:42:22 +010037// native/ # C/C++ source for tests (rare).
Colin Crossaf0b54c2017-09-27 17:22:32 -070038// resources/ # Support files.
39//
Neil Fullercf756882018-08-28 18:42:22 +010040// All subdirectories are optional.
Colin Crossaf0b54c2017-09-27 17:22:32 -070041
42build = [
43 "openjdk_java_files.bp",
44 "non_openjdk_java_files.bp",
45]
46
47// The Java files and their associated resources.
48core_resource_dirs = [
49 "luni/src/main/java",
50 "ojluni/src/main/resources/",
51]
52
Neil Fuller866ed4a2018-09-06 12:05:46 +010053// The source files that go into core-oj.
54filegroup {
55 name: "core_oj_java_files",
56 srcs: [":openjdk_java_files"],
57}
58
Neil Fullere32e2e12019-02-26 11:48:30 +000059// OpenJDK source is not annotated with @hide so we need this separate
Neil Fuller866ed4a2018-09-06 12:05:46 +010060// filegroup for just the parts that contribute to the API.
61filegroup {
62 name: "core_oj_api_files",
63 srcs: [":openjdk_javadoc_files"],
64}
65
66// The source files that go into core-libart.
67filegroup {
68 name: "core_libart_java_files",
69 srcs: [
70 ":non_openjdk_java_files",
71 ":android_icu4j_src_files",
72 ],
73}
74
Neil Fullere32e2e12019-02-26 11:48:30 +000075// Some parts of libart are not annotated with @hide so we need this separate
Neil Fuller866ed4a2018-09-06 12:05:46 +010076// filegroup for just the parts that contribute to the API.
77filegroup {
78 name: "core_libart_api_files",
79 srcs: [
80 ":non_openjdk_javadoc_files",
81 ":android_icu4j_src_files",
82 ],
83}
84
Neil Fullere32e2e12019-02-26 11:48:30 +000085// The set of files for the core library that have been marked up with @hide
86// for the public SDK APIs. Used from frameworks/base/ to indicate the source
87// files for inclusion in the public SDK docs.
88filegroup {
89 name: "core_public_api_files",
90 srcs: [
91 ":core_oj_api_files",
92 ":core_libart_api_files",
93 ":conscrypt_public_api_files",
94 ],
95}
96
Neil Fuller77e3f3b2018-10-19 10:22:32 +010097// The set of files for the core library that have been marked up with @hide and
98// API-related annotations. Note that this includes the intra-core and
99// core-platform APIs as well as the public APIs.
100//
Neil Fullere32e2e12019-02-26 11:48:30 +0000101// Some source files in :core_oj_api_files and :openjdk_mmodule_extra_files are
102// annotated by applying annotations to the .annotated.java stubs files in
103// ojluni/annotated/mmodules and rather than in the original source. See the comments
104// in openjdk_java_files.bp for more details.
Neil Fuller866ed4a2018-09-06 12:05:46 +0100105filegroup {
106 name: "core_api_files",
107 srcs: [
Neil Fullerd129bc92018-09-26 11:12:58 +0100108 ":apache-xml_api_files",
Neil Fullera77f7102018-09-21 19:04:41 +0100109 ":bouncycastle_java_files",
Neil Fuller603e1a72018-09-25 11:55:41 +0100110 ":conscrypt_java_files",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100111 ":core_oj_api_files",
112 ":core_libart_api_files",
Neil Fuller641d5f92018-09-24 15:40:39 +0100113 ":okhttp_api_files",
Pete Gillinc9935b62018-09-25 14:42:40 +0100114 ":openjdk_mmodule_extra_files",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100115 ],
116}
117
Colin Crossaf0b54c2017-09-27 17:22:32 -0700118java_defaults {
119 name: "libcore_java_defaults",
120 javacflags: [
121 //"-Xlint:all",
122 //"-Xlint:-serial,-deprecation,-unchecked",
123 ],
124 dxflags: ["--core-library"],
Andreas Gampe66b31732018-02-20 09:22:16 -0800125 errorprone: {
126 javacflags: [
127 "-Xep:MissingOverride:OFF", // Ignore missing @Override.
Andreas Gampe24a20172018-06-13 11:28:45 -0700128 "-Xep:ConstantOverflow:WARN", // Known constant overflow in SplittableRandom
Andreas Gampe66b31732018-02-20 09:22:16 -0800129 ],
130 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700131}
132
133//
134// Build for the target (device).
135//
136
Victor Chang7fef4052018-09-25 14:12:03 +0100137// Rule generating resource lib for android_icu4j.
138// In the downstream branch master-icu-dev, the resource files are generated.
139// This rule can't be moved external/icu because soong enforces that no_standard_libs:true can only
140// be used in libcore/ or development/
141java_library {
142 name: "android_icu4j_resources_lib",
143 java_resources: [":android_icu4j_resources"],
144 no_standard_libs: true,
145 system_modules: "none",
146}
147
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100148// A target used to bootstrap compilation for the core library.
149// See core-all-system-modules for more details.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700150java_library {
151 name: "core-all",
152 defaults: ["libcore_java_defaults"],
153
154 srcs: [
Neil Fuller866ed4a2018-09-06 12:05:46 +0100155 ":core_oj_java_files",
156 ":core_libart_java_files",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700157 ":openjdk_lambda_stub_files",
158 ],
Colin Crossec80f4f2018-08-15 21:17:11 -0700159
160 no_standard_libs: true,
161 system_modules: "none",
Colin Crossa4d9fc42017-09-29 18:04:37 -0700162 openjdk9: {
163 srcs: ["luni/src/module/java/module-info.java"],
164 javacflags: ["--patch-module=java.base=."],
165 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700166
Colin Crossaf0b54c2017-09-27 17:22:32 -0700167 java_resource_dirs: core_resource_dirs,
Victor Chang7fef4052018-09-25 14:12:03 +0100168 static_libs: ["android_icu4j_resources_lib"],
Tobias Thiererde991232018-03-07 15:10:46 +0000169 java_version: "1.9",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700170
Colin Crossaf0b54c2017-09-27 17:22:32 -0700171 installable: false,
172}
173
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100174// A system modules definition for use by core library targets only. It only
175// contains the core-all jar, which contains the classes that end up in core-oj,
176// core-libart as well as the lambda stubs needed to compile Java lambda code.
177// It does not contain other parts of core library like conscrypt, bouncycastle,
178// etc. This system_modules definition is used to bootstrap compilation for
179// other parts of the core library like core-oj, core-libart, conscrypt,
180// bouncycastle, etc.
181//
182// If you want to compile against the entire core library implementation, for
183// example to build core library tests, see "core-system-modules" instead.
Colin Crossa4d9fc42017-09-29 18:04:37 -0700184java_system_modules {
185 name: "core-all-system-modules",
186 libs: ["core-all"],
187}
188
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100189// Contains the parts of core library associated with OpenJDK.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700190java_library {
191 name: "core-oj",
192 defaults: ["libcore_java_defaults"],
Colin Cross5b75cdd2018-06-27 11:00:13 -0700193 installable: true,
Colin Crossbb180be2017-10-09 14:54:53 -0700194 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700195
Neil Fuller866ed4a2018-09-06 12:05:46 +0100196 srcs: [":core_oj_java_files"],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700197 java_resource_dirs: core_resource_dirs,
Colin Crossec80f4f2018-08-15 21:17:11 -0700198
199 no_standard_libs: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700200 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700201 system_modules: "core-all-system-modules",
202 openjdk9: {
203 javacflags: ["--patch-module=java.base=."],
204 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700205
Pete Gillin7a7a6d22017-12-19 14:56:03 +0000206 jacoco: {
Pete Gillin27ca0582018-01-10 17:04:17 +0000207 exclude_filter: [
Pete Gillin3f59bad2018-01-30 11:20:29 +0000208 "java.lang.Class",
209 "java.lang.Long",
210 "java.lang.Number",
211 "java.lang.Object",
212 "java.lang.String",
213 "java.lang.invoke.MethodHandle",
214 "java.lang.ref.Reference",
215 "java.lang.reflect.Proxy",
Pete Gillinb1868ada2018-01-17 11:03:10 +0000216 "java.util.AbstractMap",
Pete Gillin3f59bad2018-01-30 11:20:29 +0000217 "java.util.HashMap",
218 "java.util.HashMap$Node",
Pete Gillinb1868ada2018-01-17 11:03:10 +0000219 "java.util.Map",
Pete Gillin7a7a6d22017-12-19 14:56:03 +0000220 ],
221 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700222
223 notice: "ojluni/NOTICE",
224
Colin Crossaf0b54c2017-09-27 17:22:32 -0700225}
226
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100227// Contains parts of core library not associated with OpenJDK. Contains not
228// just java.*, javax.* code but also android.icu.*, android.system.* and
229// various internal libcore.* packages.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700230java_library {
231 name: "core-libart",
232 defaults: ["libcore_java_defaults"],
Colin Cross5b75cdd2018-06-27 11:00:13 -0700233 installable: true,
Colin Crossbb180be2017-10-09 14:54:53 -0700234 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700235
Neil Fuller866ed4a2018-09-06 12:05:46 +0100236 srcs: [":core_libart_java_files"],
Victor Chang7fef4052018-09-25 14:12:03 +0100237 static_libs: ["android_icu4j_resources_lib"],
Tobias Thiererde991232018-03-07 15:10:46 +0000238 java_version: "1.9",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700239
Colin Crossec80f4f2018-08-15 21:17:11 -0700240 no_standard_libs: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700241 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700242 system_modules: "core-all-system-modules",
243 openjdk9: {
244 javacflags: ["--patch-module=java.base=."],
245 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700246
Pete Gillin80ebe872018-02-13 15:21:20 +0000247 jacoco: {
248 exclude_filter: [
249 "java.lang.DexCache",
250 "dalvik.system.ClassExt",
251 ],
252 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700253
254 required: [
Neil Fuller3b8c0552018-12-14 22:19:07 +0000255 // Device files put in /system.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700256 "tzdata",
Neil Fuller7a4d3db2018-11-20 19:43:10 +0000257 "tz_version",
Neil Fuller3b8c0552018-12-14 22:19:07 +0000258 // Files used to simulate the /system and runtime APEX dir
259 // structure on host.
260 "tzdata_host",
261 "tzdata_host_runtime_apex",
262 "tzlookup.xml_host_runtime_apex",
263 "tz_version_host",
264 "tz_version_host_runtime_apex",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700265 ],
266}
267
Paul Duffin7bb8d232018-10-23 11:48:38 +0100268// Provided solely to contribute information about which hidden parts of the
269// core-oj API are used by apps.
270java_library {
271 name: "core-oj-hiddenapi",
272 defaults: ["libcore_java_defaults"],
273 compile_dex: true,
274
275 srcs: [":openjdk_hiddenapi_javadoc_files"],
276
277 no_standard_libs: true,
278 libs: ["core-all"],
279 system_modules: "core-all-system-modules",
280 openjdk9: {
281 javacflags: ["--patch-module=java.base=."],
282 },
283}
284
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100285//
286// Guaranteed unstripped versions of core-oj and core-libart.
287//
Colin Cross3c6c2e22017-10-18 13:24:52 -0700288// The build system may or may not strip the core-oj and core-libart jars,
289// but these will not be stripped. See b/24535627.
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100290//
291
Colin Cross3c6c2e22017-10-18 13:24:52 -0700292java_library {
293 name: "core-oj-testdex",
Colin Cross5b75cdd2018-06-27 11:00:13 -0700294 installable: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700295 static_libs: ["core-oj"],
296 no_standard_libs: true,
297 libs: ["core-all"],
298 system_modules: "core-all-system-modules",
299 dxflags: ["--core-library"],
Colin Cross485ed362017-12-05 17:24:22 -0800300 dex_preopt: {
301 enabled: false,
302 },
Tobias Thiererde991232018-03-07 15:10:46 +0000303 java_version: "1.9",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700304 notice: "ojluni/NOTICE",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700305}
306
307java_library {
308 name: "core-libart-testdex",
Colin Cross5b75cdd2018-06-27 11:00:13 -0700309 installable: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700310 static_libs: ["core-libart"],
311 no_standard_libs: true,
312 libs: ["core-all"],
313 system_modules: "core-all-system-modules",
314 dxflags: ["--core-library"],
Colin Cross485ed362017-12-05 17:24:22 -0800315 dex_preopt: {
316 enabled: false,
317 },
Colin Cross3c6c2e22017-10-18 13:24:52 -0700318 notice: "ojluni/NOTICE",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700319}
320
Tobias Thierere0f8b312018-10-23 23:12:30 +0100321
322java_defaults {
323 name: "core_lambda_stubs_defaults",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700324 defaults: ["libcore_java_defaults"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100325 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700326
Colin Crossec80f4f2018-08-15 21:17:11 -0700327 no_standard_libs: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700328 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700329 system_modules: "core-all-system-modules",
330 openjdk9: {
331 javacflags: ["--patch-module=java.base=."],
332 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700333
334 notice: "ojluni/NOTICE",
335
336 installable: false,
337 include_srcs: true,
338}
Colin Crossa4d9fc42017-09-29 18:04:37 -0700339
Tobias Thierere0f8b312018-10-23 23:12:30 +0100340// Creates a jar that exists to satisfy javac when compiling source code that
341// contains lambdas. This contains all classes / methods required by javac
342// when generating invoke-dynamic lambda implementation code, even those that
343// are also in the public SDK API from API level 26 onwards.
344java_library {
345 name: "core-lambda-stubs",
346 defaults: ["core_lambda_stubs_defaults"],
347 srcs: [
348 ":openjdk_lambda_stub_files",
349 ":openjdk_lambda_duplicate_stub_files",
350 ],
351}
352
353// An alternative to core-lambda-stubs that omits openjdk_lambda_duplicate_stub_files
354// because those classes are also part of the core library public SDK API
355// (since API level 26).
356java_library {
357 name: "core-lambda-stubs-for-system-modules",
358 defaults: ["core_lambda_stubs_defaults"],
359 srcs: [
360 ":openjdk_lambda_stub_files",
361 ],
362}
363
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100364// A system modules definition containing the implementations for the various
365// parts that make up the core library.
366//
367// This system module is intended for use by tests that may need access to
368// core library internals. It should not be generally used; most of the
369// platform build should build against API stubs instead. See
370// "core-platform-api-stubs-system-modules", which is the default used by the
371// Android build.
372//
373// This module also includes lambda stubs for compiling source containing
374// Java lambdas.
Colin Crossa4d9fc42017-09-29 18:04:37 -0700375java_system_modules {
376 name: "core-system-modules",
377 libs: [
378 "core-oj",
379 "core-libart",
Neil Fullerb669ccb2018-10-04 23:10:27 +0100380 "bouncycastle",
381 "conscrypt",
382 "okhttp",
Neil Fuller05723a52018-10-19 10:55:05 +0100383 "apache-xml",
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100384 // This one is not on device but it's needed when javac compiles code
385 // containing lambdas.
Tobias Thierere0f8b312018-10-23 23:12:30 +0100386 "core-lambda-stubs-for-system-modules",
Colin Crossa4d9fc42017-09-29 18:04:37 -0700387 ],
388}
Colin Cross3c6c2e22017-10-18 13:24:52 -0700389
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100390// Builds libcore test rules
Colin Cross3c6c2e22017-10-18 13:24:52 -0700391java_library_static {
392 name: "core-test-rules",
393 hostdex: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700394 srcs: [
395 "dalvik/test-rules/src/main/**/*.java",
396 "test-rules/src/main/**/*.java",
397 ],
398 static_libs: ["junit"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100399
400 no_standard_libs: true,
401 libs: ["core-all"],
402 system_modules: "core-all-system-modules",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700403}
404
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100405// Builds the core-tests-support library used by various tests.
Colin Cross3c6c2e22017-10-18 13:24:52 -0700406java_library_static {
407 name: "core-tests-support",
408 hostdex: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700409 srcs: ["support/src/test/java/**/*.java"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100410
Neil Fuller4380ab22018-10-18 19:38:53 +0100411 no_framework_libs: true,
412 libs: ["junit"],
Colin Cross3c6c2e22017-10-18 13:24:52 -0700413 static_libs: [
Neil Fullerde8b0862018-10-12 21:53:31 +0100414 "bouncycastle-unbundled",
415 "bouncycastle-bcpkix-unbundled",
416 "bouncycastle-ocsp-unbundled",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700417 ],
418}
419
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100420// Builds the jsr166-tests library.
Colin Crossec80f4f2018-08-15 21:17:11 -0700421java_test {
Colin Cross3c6c2e22017-10-18 13:24:52 -0700422 name: "jsr166-tests",
423 srcs: ["jsr166-tests/src/test/java/**/*.java"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100424 no_standard_libs: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700425 libs: [
Neil Fuller4207c7f2018-10-10 14:01:40 +0100426 "core-all",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700427 "junit",
428 ],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100429 system_modules: "core-all-system-modules",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700430}
Nan Zhang65f27a32018-01-05 10:41:46 -0800431
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100432// Builds a library just containing files from luni/src/test/filesystems
433// for use in tests.
Colin Crossec80f4f2018-08-15 21:17:11 -0700434java_library {
435 name: "filesystemstest",
436 compile_dex: true,
437 srcs: ["luni/src/test/filesystems/src/**/*.java"],
438 java_resource_dirs: ["luni/src/test/filesystems/resources"],
439 no_framework_libs: true,
440 errorprone: {
441 javacflags: ["-Xep:MissingOverride:OFF"],
442 },
443}
444
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100445// Builds a library just containing files from luni/src/test/parameter_metadata
446// for use in tests.
Colin Crossec80f4f2018-08-15 21:17:11 -0700447java_library {
448 name: "parameter-metadata-test",
449 compile_dex: true,
450 srcs: ["luni/src/test/parameter_metadata/src/**/*.java"],
451 no_framework_libs: true,
452 javacflags: ["-parameters"],
453 errorprone: {
454 javacflags: ["-Xep:MissingOverride:OFF"],
455 },
456}
457
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100458// Builds the core-tests library.
Colin Crossec80f4f2018-08-15 21:17:11 -0700459java_test {
460 name: "core-tests",
461 defaults: ["libcore_java_defaults"],
462 hostdex: true,
463 srcs: [
464 "dalvik/src/test/java/**/*.java",
465 "dalvik/test-rules/src/test/java/**/*.java",
466 "dom/src/test/java/**/*.java",
467 "harmony-tests/src/test/java/**/*.java",
468 "json/src/test/java/**/*.java",
469 "luni/src/test/java/**/*.java",
Paul Duffin4ba14532019-03-21 10:32:41 +0000470 "test-rules/src/test/java/**/*.java",
Colin Crossec80f4f2018-08-15 21:17:11 -0700471 "xml/src/test/java/**/*.java",
472 ],
473 exclude_srcs: [
474 "luni/src/test/java/libcore/java/util/zip/Zip64Test.java",
475 "luni/src/test/java/libcore/java/util/zip/Zip64FileTest.java",
476 ],
477
478 java_resource_dirs: [
479 "*/src/test/java",
480 "*/src/test/resources",
481 ],
482 exclude_java_resource_dirs: [
483 "ojluni/src/test/java",
484 "ojluni/src/test/resources",
485 ],
486
487 java_resources: [
488 ":filesystemstest",
489 ":parameter-metadata-test",
490 ],
491
Neil Fuller4207c7f2018-10-10 14:01:40 +0100492 no_standard_libs: true,
493 libs: [
494 "core-all",
495 "okhttp",
496 "bouncycastle",
497 ],
498 system_modules: "core-all-system-modules",
499
Colin Crossec80f4f2018-08-15 21:17:11 -0700500 static_libs: [
501 "archive-patcher",
502 "core-test-rules",
503 "core-tests-support",
504 "junit-params",
505 "mockftpserver",
506 "mockito-target",
507 "mockwebserver",
508 "nist-pkix-tests",
509 "slf4j-jdk14",
510 "sqlite-jdbc",
511 "tzdata-testing",
Paul Duffina4df2372018-12-10 15:48:01 +0000512 "truth-prebuilt",
Colin Crossec80f4f2018-08-15 21:17:11 -0700513 ],
514
515 errorprone: {
516 javacflags: [
517 "-Xep:TryFailThrowable:ERROR",
518 "-Xep:ComparisonOutOfRange:ERROR",
519 ],
520 },
Simran Basi3be01e02018-08-21 17:53:49 -0700521
522 test_config: "AndroidTest-core-tests.xml",
Colin Crossec80f4f2018-08-15 21:17:11 -0700523}
524
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100525// Builds the core-ojtests library that contains test code from OpenJDK.
Colin Crossec80f4f2018-08-15 21:17:11 -0700526java_test {
527 name: "core-ojtests",
528 defaults: ["libcore_java_defaults"],
529 hostdex: true,
530
531 srcs: [
532 "ojluni/src/test/java/**/*.java",
533 ],
534 java_resource_dirs: [
535 "ojluni/src/test/java",
536 "ojluni/src/test/resources",
537 ],
Neil Fullerb669ccb2018-10-04 23:10:27 +0100538
Neil Fuller4207c7f2018-10-10 14:01:40 +0100539 no_standard_libs: true,
540 libs: [
541 "core-all",
542 "okhttp",
543 "bouncycastle",
544 ],
545 system_modules: "core-all-system-modules",
546
Colin Crossec80f4f2018-08-15 21:17:11 -0700547 static_libs: ["testng"],
548
549 // ojluni/src/test/java/util/stream/{bootlib,boottest}
550 // contains tests that are in packages from java.base;
551 // By default, OpenJDK 9's javac will only compile such
552 // code if it's declared to also be in java.base at
553 // compile time.
554 //
555 // For now, we use --patch-module to put all sources
556 // and dependencies from this make target into java.base;
557 // other source directories in this make target are in
558 // packages not from java.base; if this becomes a problem
559 // in future, this could be addressed eg. by splitting
560 // boot{lib,test} out into a separate make target,
561 // deleting those tests or moving them to a different
562 // package.
563 patch_module: "java.base",
564}
565
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100566// Builds the core-ojtests-public library. Excludes any private API tests.
567// Like core-ojtests but smaller.
Colin Crossec80f4f2018-08-15 21:17:11 -0700568java_test {
569 name: "core-ojtests-public",
570 defaults: ["libcore_java_defaults"],
571 srcs: [
572 "ojluni/src/test/java/**/*.java",
573 ],
574 // Filter out the following:
575 // 1.) DeserializeMethodTest and SerializedLambdaTest, because they depends on stub classes
576 // and won't actually run, and
577 // 2.) util/stream/boot*. Those directories contain classes in the package java.util.stream;
578 // excluding them means we don't need patch_module: "java.base"
579 exclude_srcs: [
580 "**/DeserializeMethodTest.java",
581 "**/SerializedLambdaTest.java",
582 "ojluni/src/test/java/util/stream/boot*/**/*",
583 ],
584 java_resource_dirs: [
585 "ojluni/src/test/java",
586 "ojluni/src/test/resources",
587 // Include source code as part of JAR
588 "ojluni/src/test/dist",
589 ],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100590
591 no_standard_libs: true,
592 libs: [
593 "core-all",
594 "bouncycastle",
595 "okhttp",
596 "testng",
597 ],
598 system_modules: "core-all-system-modules",
Colin Crossec80f4f2018-08-15 21:17:11 -0700599}
600
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100601// Exports annotated stubs source files in ojluni/annotations/sdk to make them
602// available to metalava. Used for nullability annotations in OpenJDK source.
Pete Gillin7db7faa2018-07-31 13:29:35 +0100603droiddoc_exported_dir {
Pete Gillin0728b742018-09-17 15:41:45 +0100604 name: "ojluni-annotated-sdk-stubs",
605 path: "ojluni/annotations/sdk",
Pete Gillin7db7faa2018-07-31 13:29:35 +0100606}
Pete Gillin600c7cf2018-08-16 19:28:38 +0100607droiddoc_exported_dir {
608 name: "ojluni-annotated-nullability-stubs",
609 path: "ojluni/annotations/sdk/nullability",
610}
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100611
612// Exports annotated stubs source files in ojluni/annotations/mmodules to make
613// them available to metalava. Used for core platform API and intra-code API
614// annotations in OpenJDK source.
Pete Gillinc9935b62018-09-25 14:42:40 +0100615droiddoc_exported_dir {
616 name: "ojluni-annotated-mmodule-stubs",
617 path: "ojluni/annotations/mmodule",
618}
Pete Gillin7db7faa2018-07-31 13:29:35 +0100619
Neil Fuller6f16b462018-09-04 15:40:39 +0100620// A file containing the list of tags that are "known" to us from the OpenJdk
621// source code and so should not cause an error or warning.
Nan Zhangd55722b2018-02-27 15:08:20 -0800622filegroup {
623 name: "known-oj-tags",
624 srcs: [
625 "known_oj_tags.txt",
626 ],
627}
Nan Zhang602fc0e2018-03-22 16:14:22 -0700628
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100629// Generates stubs for the parts of the public SDK API provided by the core
630// library.
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000631//
632// Only for use by core.current.stubs target below.
Nan Zhangf0207602018-09-10 18:57:38 -0700633droidstubs {
634 name: "core-current-stubs-gen",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100635 srcs: [":core_api_files"],
Tobias Thiererde991232018-03-07 15:10:46 +0000636 java_version: "1.9",
Nan Zhang602fc0e2018-03-22 16:14:22 -0700637 installable: false,
638 no_framework_libs: true,
Neil Fullerbe9258e2018-09-24 17:11:27 +0100639 args: " --exclude-annotations "
640 + "--hide-annotation libcore.api.Hide",
641 merge_inclusion_annotations_dirs: ["ojluni-annotated-mmodule-stubs"],
Nan Zhang602fc0e2018-03-22 16:14:22 -0700642}
643
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000644// A stubs target containing the parts of the public SDK API provided by the
645// core library.
646//
647// Don't use this directly, use "sdk_version: core_current".
648java_library {
649 name: "core.current.stubs",
650 srcs: [":core-current-stubs-gen"],
651 errorprone: {
652 javacflags: [
653 "-Xep:MissingOverride:OFF",
654 ],
655 },
656 openjdk9: {
657 javacflags: ["--patch-module=java.base=."],
658 },
659 no_standard_libs: true,
660 system_modules: "none",
Paul Duffin64de6842019-04-08 10:24:23 +0100661
662 dist: {
663 targets: [
664 "sdk",
665 "win_sdk",
666 ],
667 },
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000668}
669
Pete Gillin600c7cf2018-08-16 19:28:38 +0100670// Target for validating nullability annotations for correctness and
671// completeness. To check that there are no nullability errors:
672// make core-current-stubs-nullability-validation
673// To check that there are only the expected nullability warnings:
674// make core-current-stubs-nullability-validation-check-nullability-warnings
675// To update the the list of known expected nullability warnings:
676// make core-current-stubs-nullability-validation-update-nullability-warnings
677droidstubs {
678 name: "core-current-stubs-nullability-validation",
679 srcs: [":core_api_files"],
680 installable: false,
681 no_framework_libs: true,
682 annotations_enabled: true,
683 args: "--hide-annotation libcore.api.Hide " +
684 "--validate-nullability-from-merged-stubs ",
685 merge_inclusion_annotations_dirs: ["ojluni-annotated-mmodule-stubs"],
686 merge_annotations_dirs: [
687 "metalava-manual",
688 // N.B. Stubs in this filegroup will be validated:
689 "ojluni-annotated-nullability-stubs",
690 ],
Pete Gillinc5f179b2018-11-14 18:42:19 +0000691 // The list of classes which have nullability annotations included in the source.
692 // (This is in addition to those which have annotations in the merged stubs.)
693 validate_nullability_from_list: "nullability_annotated_classes.txt",
Pete Gillin600c7cf2018-08-16 19:28:38 +0100694 // The expected set of warnings about missing annotations:
695 check_nullability_warnings: "nullability_warnings.txt",
696}
697
Neil Fullere784ef22018-11-16 15:54:30 +0000698// A host library containing time zone related classes. Used for
699// host-side tools and tests that have to deal with Android
700// time zone data.
701java_library_host {
702 name: "timezone-host",
703 srcs: [":timezone_host_files"],
704}