blob: b85a8610003519f58d6779ff53a2b00fb918be3e [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: [
Paul Duffinc31f6bb2019-05-15 12:32:44 +0100127 "-Xep:MissingOverride:OFF", // Ignore missing @Override.
128 "-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
Tobias Thierercf66bfd2019-05-29 13:18:25 +0100137// Visibility of core-all* build modules; we restrict visibility of core-all deliberately to
138// a small set of build modules that the core library team control. See core-all-system-modules
139// for more details.
140core_all_visibility = [
141 "//external/apache-harmony:__subpackages__",
142 "//external/apache-xml",
143 "//external/bouncycastle",
144 "//external/conscrypt",
145 "//external/icu/android_icu4j",
146 "//external/okhttp",
147 "//libcore/benchmarks",
148 "//libcore/mmodules/intracoreapi",
149]
150
Tobias Thierer52331642019-05-29 12:11:39 +0000151// A target used to bootstrap compilation for the core library.
152// See core-all-system-modules for more details.
153java_library {
154 name: "core-all",
Tobias Thierercf66bfd2019-05-29 13:18:25 +0100155 visibility: core_all_visibility,
Tobias Thierer52331642019-05-29 12:11:39 +0000156 defaults: ["libcore_java_defaults"],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700157
158 srcs: [
Neil Fuller866ed4a2018-09-06 12:05:46 +0100159 ":core_oj_java_files",
160 ":core_libart_java_files",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700161 ":openjdk_lambda_stub_files",
Pete Gillin54035812019-05-08 15:09:39 +0100162 ":openjdk_generated_annotation_stub_files",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700163 ],
Colin Crossec80f4f2018-08-15 21:17:11 -0700164
Paul Duffin83c25382019-06-07 14:10:49 +0100165 sdk_version: "none",
Colin Crossec80f4f2018-08-15 21:17:11 -0700166 system_modules: "none",
Colin Crossa4d9fc42017-09-29 18:04:37 -0700167 openjdk9: {
168 srcs: ["luni/src/module/java/module-info.java"],
169 javacflags: ["--patch-module=java.base=."],
170 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700171
Colin Crossaf0b54c2017-09-27 17:22:32 -0700172 java_resource_dirs: core_resource_dirs,
Victor Chang7fef4052018-09-25 14:12:03 +0100173 static_libs: ["android_icu4j_resources_lib"],
Tobias Thiererde991232018-03-07 15:10:46 +0000174 java_version: "1.9",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700175
Colin Crossaf0b54c2017-09-27 17:22:32 -0700176 installable: false,
177}
178
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100179// A system modules definition for use by core library targets only. It only
180// contains the core-all jar, which contains the classes that end up in core-oj,
181// core-libart as well as the lambda stubs needed to compile Java lambda code.
182// It does not contain other parts of core library like conscrypt, bouncycastle,
183// etc. This system_modules definition is used to bootstrap compilation for
184// other parts of the core library like core-oj, core-libart, conscrypt,
185// bouncycastle, etc.
186//
187// If you want to compile against the entire core library implementation, for
188// example to build core library tests, see "core-system-modules" instead.
Colin Crossa4d9fc42017-09-29 18:04:37 -0700189java_system_modules {
190 name: "core-all-system-modules",
Tobias Thierercf66bfd2019-05-29 13:18:25 +0100191 visibility: core_all_visibility,
Colin Crossa4d9fc42017-09-29 18:04:37 -0700192 libs: ["core-all"],
193}
194
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100195// Contains the parts of core library associated with OpenJDK.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700196java_library {
197 name: "core-oj",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000198 visibility: [
199 "//art/build/apex",
200 "//external/wycheproof",
Paul Duffin94f70232019-05-22 16:22:29 +0100201 "//libcore/benchmarks",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000202 ],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700203 defaults: ["libcore_java_defaults"],
Colin Cross5b75cdd2018-06-27 11:00:13 -0700204 installable: true,
Colin Crossbb180be2017-10-09 14:54:53 -0700205 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700206
Neil Fuller866ed4a2018-09-06 12:05:46 +0100207 srcs: [":core_oj_java_files"],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700208 java_resource_dirs: core_resource_dirs,
Colin Crossec80f4f2018-08-15 21:17:11 -0700209
Paul Duffin83c25382019-06-07 14:10:49 +0100210 sdk_version: "none",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700211 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700212 system_modules: "core-all-system-modules",
213 openjdk9: {
214 javacflags: ["--patch-module=java.base=."],
215 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700216
Pete Gillin7a7a6d22017-12-19 14:56:03 +0000217 jacoco: {
Pete Gillin27ca0582018-01-10 17:04:17 +0000218 exclude_filter: [
Pete Gillin3f59bad2018-01-30 11:20:29 +0000219 "java.lang.Class",
220 "java.lang.Long",
221 "java.lang.Number",
222 "java.lang.Object",
223 "java.lang.String",
224 "java.lang.invoke.MethodHandle",
225 "java.lang.ref.Reference",
226 "java.lang.reflect.Proxy",
Pete Gillinb1868ada2018-01-17 11:03:10 +0000227 "java.util.AbstractMap",
Pete Gillin3f59bad2018-01-30 11:20:29 +0000228 "java.util.HashMap",
229 "java.util.HashMap$Node",
Pete Gillinb1868ada2018-01-17 11:03:10 +0000230 "java.util.Map",
Pete Gillin7a7a6d22017-12-19 14:56:03 +0000231 ],
232 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700233
234 notice: "ojluni/NOTICE",
235
Colin Crossaf0b54c2017-09-27 17:22:32 -0700236}
237
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100238// Contains parts of core library not associated with OpenJDK. Contains not
239// just java.*, javax.* code but also android.icu.*, android.system.* and
240// various internal libcore.* packages.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700241java_library {
242 name: "core-libart",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000243 visibility: [
244 "//art/build/apex",
245 "//external/robolectric-shadows",
246 "//external/wycheproof",
Paul Duffin94f70232019-05-22 16:22:29 +0100247 "//libcore/benchmarks",
Colin Crossf0ef6252019-05-31 08:26:47 -0700248 "//frameworks/layoutlib",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000249 ],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700250 defaults: ["libcore_java_defaults"],
Colin Cross5b75cdd2018-06-27 11:00:13 -0700251 installable: true,
Colin Crossbb180be2017-10-09 14:54:53 -0700252 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700253
Neil Fuller866ed4a2018-09-06 12:05:46 +0100254 srcs: [":core_libart_java_files"],
Victor Chang7fef4052018-09-25 14:12:03 +0100255 static_libs: ["android_icu4j_resources_lib"],
Tobias Thiererde991232018-03-07 15:10:46 +0000256 java_version: "1.9",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700257
Paul Duffin83c25382019-06-07 14:10:49 +0100258 sdk_version: "none",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700259 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700260 system_modules: "core-all-system-modules",
261 openjdk9: {
262 javacflags: ["--patch-module=java.base=."],
263 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700264
Pete Gillin80ebe872018-02-13 15:21:20 +0000265 jacoco: {
266 exclude_filter: [
267 "java.lang.DexCache",
268 "dalvik.system.ClassExt",
269 ],
270 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700271
Andreas Gampe9a1ba892019-04-24 12:35:40 -0700272 target: {
273 hostdex: {
274 required: [
Neil Fuller53c5f032019-06-05 13:47:39 +0100275 // Files used to simulate the /system, runtime APEX and tzdata
276 // APEX dir structure on host.
277 "icu_tzdata.dat_host_tzdata_apex",
Andreas Gampe9a1ba892019-04-24 12:35:40 -0700278 "tzdata_host",
Neil Fuller53c5f032019-06-05 13:47:39 +0100279 "tzdata_host_tzdata_apex",
Neil Fuller53c5f032019-06-05 13:47:39 +0100280 "tzlookup.xml_host_tzdata_apex",
Andreas Gampe9a1ba892019-04-24 12:35:40 -0700281 "tz_version_host",
Neil Fuller53c5f032019-06-05 13:47:39 +0100282 "tz_version_host_tzdata_apex",
Andreas Gampe9a1ba892019-04-24 12:35:40 -0700283 ],
284 },
285 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700286}
287
Paul Duffin7bb8d232018-10-23 11:48:38 +0100288// Provided solely to contribute information about which hidden parts of the
289// core-oj API are used by apps.
Paul Duffinc6bf27b2019-05-15 14:41:00 +0100290//
291// The build system determines that this library provides hiddenapi information
292// for the core-oj bootjar because its name is of the form <x>-hiddenapi, where
293// <x> is the name of a boot jar. That triggers the generation of a flags.csv
294// file which encapsulates information extracted from the UnsupportedAppUsage
295// annotations in the dex. The information from that file is then encoded into
296// the core-oj file.
297//
298// Usually, e.g. for core-libart, the UnsupportedAppUsage annotations are
299// added to the source that is compiled directly into the bootjar and the build
300// system extracts the information about UnsupportedAppUsage directly from
301// there.
302//
303// This approach of having separate annotated source and a separate build
304// target was taken for ojluni to avoid having to maintain local patches in the
305// ojluni source for UnsupportedAppUsage annotations as that would make it more
306// difficult to pull down changes from upstream.
307//
Paul Duffin7bb8d232018-10-23 11:48:38 +0100308java_library {
309 name: "core-oj-hiddenapi",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000310 // Do not allow this to be accessed from outside this directory.
311 visibility: ["//visibility:private"],
Paul Duffin7bb8d232018-10-23 11:48:38 +0100312 defaults: ["libcore_java_defaults"],
313 compile_dex: true,
314
315 srcs: [":openjdk_hiddenapi_javadoc_files"],
316
Paul Duffin83c25382019-06-07 14:10:49 +0100317 sdk_version: "none",
Paul Duffin7bb8d232018-10-23 11:48:38 +0100318 libs: ["core-all"],
319 system_modules: "core-all-system-modules",
320 openjdk9: {
321 javacflags: ["--patch-module=java.base=."],
322 },
323}
324
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100325//
326// Guaranteed unstripped versions of core-oj and core-libart.
327//
Colin Cross3c6c2e22017-10-18 13:24:52 -0700328// The build system may or may not strip the core-oj and core-libart jars,
329// but these will not be stripped. See b/24535627.
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100330//
331
Colin Cross3c6c2e22017-10-18 13:24:52 -0700332java_library {
333 name: "core-oj-testdex",
Colin Cross5b75cdd2018-06-27 11:00:13 -0700334 installable: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700335 static_libs: ["core-oj"],
Paul Duffin83c25382019-06-07 14:10:49 +0100336 sdk_version: "none",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700337 libs: ["core-all"],
338 system_modules: "core-all-system-modules",
339 dxflags: ["--core-library"],
Colin Cross485ed362017-12-05 17:24:22 -0800340 dex_preopt: {
341 enabled: false,
342 },
Tobias Thiererde991232018-03-07 15:10:46 +0000343 java_version: "1.9",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700344 notice: "ojluni/NOTICE",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700345}
346
347java_library {
348 name: "core-libart-testdex",
Colin Cross5b75cdd2018-06-27 11:00:13 -0700349 installable: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700350 static_libs: ["core-libart"],
Paul Duffin83c25382019-06-07 14:10:49 +0100351 sdk_version: "none",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700352 libs: ["core-all"],
353 system_modules: "core-all-system-modules",
354 dxflags: ["--core-library"],
Colin Cross485ed362017-12-05 17:24:22 -0800355 dex_preopt: {
356 enabled: false,
357 },
Colin Cross3c6c2e22017-10-18 13:24:52 -0700358 notice: "ojluni/NOTICE",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700359}
360
Tobias Thierere0f8b312018-10-23 23:12:30 +0100361java_defaults {
362 name: "core_lambda_stubs_defaults",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700363 defaults: ["libcore_java_defaults"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100364 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700365
Paul Duffin83c25382019-06-07 14:10:49 +0100366 sdk_version: "none",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700367 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700368 system_modules: "core-all-system-modules",
369 openjdk9: {
370 javacflags: ["--patch-module=java.base=."],
371 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700372
373 notice: "ojluni/NOTICE",
374
375 installable: false,
376 include_srcs: true,
377}
Colin Crossa4d9fc42017-09-29 18:04:37 -0700378
Tobias Thierere0f8b312018-10-23 23:12:30 +0100379// Creates a jar that exists to satisfy javac when compiling source code that
380// contains lambdas. This contains all classes / methods required by javac
381// when generating invoke-dynamic lambda implementation code, even those that
382// are also in the public SDK API from API level 26 onwards.
383java_library {
384 name: "core-lambda-stubs",
385 defaults: ["core_lambda_stubs_defaults"],
386 srcs: [
387 ":openjdk_lambda_stub_files",
388 ":openjdk_lambda_duplicate_stub_files",
389 ],
390}
391
392// An alternative to core-lambda-stubs that omits openjdk_lambda_duplicate_stub_files
393// because those classes are also part of the core library public SDK API
394// (since API level 26).
395java_library {
396 name: "core-lambda-stubs-for-system-modules",
397 defaults: ["core_lambda_stubs_defaults"],
398 srcs: [
399 ":openjdk_lambda_stub_files",
400 ],
401}
402
Pete Gillin54035812019-05-08 15:09:39 +0100403// Creates a jar that exists to satisfy javac when compiling source code that
404// contains @Generated annotations, which are produced by some code generation
405// tools (notably dagger) but aren't part of the Android API.
406// See http://b/123891440.
407java_library {
408 name: "core-generated-annotation-stubs",
409 defaults: ["libcore_java_defaults"],
410 srcs: [
411 ":openjdk_generated_annotation_stub_files",
412 ],
413 hostdex: true,
Paul Duffin83c25382019-06-07 14:10:49 +0100414 sdk_version: "none",
Pete Gillin54035812019-05-08 15:09:39 +0100415 libs: ["core-all"],
416 system_modules: "core-all-system-modules",
417 openjdk9: {
418 javacflags: ["--patch-module=java.base=."],
419 },
420 notice: "ojluni/NOTICE",
421 installable: false,
422 include_srcs: true,
423}
424
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100425// A system modules definition containing the implementations for the various
426// parts that make up the core library.
427//
428// This system module is intended for use by tests that may need access to
429// core library internals. It should not be generally used; most of the
430// platform build should build against API stubs instead. See
431// "core-platform-api-stubs-system-modules", which is the default used by the
432// Android build.
433//
434// This module also includes lambda stubs for compiling source containing
435// Java lambdas.
Colin Crossa4d9fc42017-09-29 18:04:37 -0700436java_system_modules {
437 name: "core-system-modules",
438 libs: [
439 "core-oj",
440 "core-libart",
Neil Fullerb669ccb2018-10-04 23:10:27 +0100441 "bouncycastle",
442 "conscrypt",
443 "okhttp",
Neil Fuller05723a52018-10-19 10:55:05 +0100444 "apache-xml",
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100445 // This one is not on device but it's needed when javac compiles code
446 // containing lambdas.
Tobias Thierere0f8b312018-10-23 23:12:30 +0100447 "core-lambda-stubs-for-system-modules",
Colin Crossa4d9fc42017-09-29 18:04:37 -0700448 ],
449}
Colin Cross3c6c2e22017-10-18 13:24:52 -0700450
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100451// Builds libcore test rules
Colin Cross3c6c2e22017-10-18 13:24:52 -0700452java_library_static {
453 name: "core-test-rules",
454 hostdex: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700455 srcs: [
456 "dalvik/test-rules/src/main/**/*.java",
457 "test-rules/src/main/**/*.java",
458 ],
459 static_libs: ["junit"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100460
Paul Duffin83c25382019-06-07 14:10:49 +0100461 sdk_version: "none",
Neil Fuller4207c7f2018-10-10 14:01:40 +0100462 libs: ["core-all"],
463 system_modules: "core-all-system-modules",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700464}
465
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100466// Builds the core-tests-support library used by various tests.
Colin Cross3c6c2e22017-10-18 13:24:52 -0700467java_library_static {
468 name: "core-tests-support",
469 hostdex: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700470 srcs: ["support/src/test/java/**/*.java"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100471
Paul Duffin53c491f2019-06-12 13:48:14 +0100472 sdk_version: "core_platform",
Neil Fuller4380ab22018-10-18 19:38:53 +0100473 libs: ["junit"],
Colin Cross3c6c2e22017-10-18 13:24:52 -0700474 static_libs: [
Neil Fullerde8b0862018-10-12 21:53:31 +0100475 "bouncycastle-unbundled",
476 "bouncycastle-bcpkix-unbundled",
477 "bouncycastle-ocsp-unbundled",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700478 ],
479}
480
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100481// Builds the jsr166-tests library.
Colin Crossec80f4f2018-08-15 21:17:11 -0700482java_test {
Colin Cross3c6c2e22017-10-18 13:24:52 -0700483 name: "jsr166-tests",
484 srcs: ["jsr166-tests/src/test/java/**/*.java"],
Paul Duffin83c25382019-06-07 14:10:49 +0100485 sdk_version: "none",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700486 libs: [
Neil Fuller4207c7f2018-10-10 14:01:40 +0100487 "core-all",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700488 "junit",
489 ],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100490 system_modules: "core-all-system-modules",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700491}
Nan Zhang65f27a32018-01-05 10:41:46 -0800492
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100493// Builds the core-tests library.
Colin Crossec80f4f2018-08-15 21:17:11 -0700494java_test {
495 name: "core-tests",
496 defaults: ["libcore_java_defaults"],
497 hostdex: true,
498 srcs: [
499 "dalvik/src/test/java/**/*.java",
500 "dalvik/test-rules/src/test/java/**/*.java",
501 "dom/src/test/java/**/*.java",
502 "harmony-tests/src/test/java/**/*.java",
503 "json/src/test/java/**/*.java",
504 "luni/src/test/java/**/*.java",
Paul Duffin4ba14532019-03-21 10:32:41 +0000505 "test-rules/src/test/java/**/*.java",
Colin Crossec80f4f2018-08-15 21:17:11 -0700506 "xml/src/test/java/**/*.java",
507 ],
508 exclude_srcs: [
509 "luni/src/test/java/libcore/java/util/zip/Zip64Test.java",
510 "luni/src/test/java/libcore/java/util/zip/Zip64FileTest.java",
511 ],
512
513 java_resource_dirs: [
514 "*/src/test/java",
515 "*/src/test/resources",
516 ],
517 exclude_java_resource_dirs: [
518 "ojluni/src/test/java",
519 "ojluni/src/test/resources",
520 ],
521
522 java_resources: [
Paul Duffin16a057f2019-05-13 12:20:55 +0100523 ":annotations-test",
Colin Crossec80f4f2018-08-15 21:17:11 -0700524 ":filesystemstest",
525 ":parameter-metadata-test",
526 ],
527
Paul Duffin83c25382019-06-07 14:10:49 +0100528 sdk_version: "none",
Neil Fuller4207c7f2018-10-10 14:01:40 +0100529 libs: [
530 "core-all",
531 "okhttp",
532 "bouncycastle",
533 ],
534 system_modules: "core-all-system-modules",
535
Colin Crossec80f4f2018-08-15 21:17:11 -0700536 static_libs: [
537 "archive-patcher",
538 "core-test-rules",
539 "core-tests-support",
540 "junit-params",
541 "mockftpserver",
542 "mockito-target",
543 "mockwebserver",
544 "nist-pkix-tests",
545 "slf4j-jdk14",
546 "sqlite-jdbc",
547 "tzdata-testing",
Paul Duffina4df2372018-12-10 15:48:01 +0000548 "truth-prebuilt",
Colin Crossec80f4f2018-08-15 21:17:11 -0700549 ],
550
551 errorprone: {
552 javacflags: [
553 "-Xep:TryFailThrowable:ERROR",
554 "-Xep:ComparisonOutOfRange:ERROR",
555 ],
556 },
Simran Basi3be01e02018-08-21 17:53:49 -0700557
558 test_config: "AndroidTest-core-tests.xml",
Colin Crossec80f4f2018-08-15 21:17:11 -0700559}
560
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100561// Builds the core-ojtests library that contains test code from OpenJDK.
Colin Crossec80f4f2018-08-15 21:17:11 -0700562java_test {
563 name: "core-ojtests",
564 defaults: ["libcore_java_defaults"],
565 hostdex: true,
566
567 srcs: [
568 "ojluni/src/test/java/**/*.java",
569 ],
570 java_resource_dirs: [
571 "ojluni/src/test/java",
572 "ojluni/src/test/resources",
573 ],
Neil Fullerb669ccb2018-10-04 23:10:27 +0100574
Paul Duffin83c25382019-06-07 14:10:49 +0100575 sdk_version: "none",
Neil Fuller4207c7f2018-10-10 14:01:40 +0100576 libs: [
577 "core-all",
578 "okhttp",
579 "bouncycastle",
580 ],
581 system_modules: "core-all-system-modules",
582
Colin Crossec80f4f2018-08-15 21:17:11 -0700583 static_libs: ["testng"],
584
585 // ojluni/src/test/java/util/stream/{bootlib,boottest}
586 // contains tests that are in packages from java.base;
587 // By default, OpenJDK 9's javac will only compile such
588 // code if it's declared to also be in java.base at
589 // compile time.
590 //
591 // For now, we use --patch-module to put all sources
592 // and dependencies from this make target into java.base;
593 // other source directories in this make target are in
594 // packages not from java.base; if this becomes a problem
595 // in future, this could be addressed eg. by splitting
596 // boot{lib,test} out into a separate make target,
597 // deleting those tests or moving them to a different
598 // package.
599 patch_module: "java.base",
600}
601
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100602// Builds the core-ojtests-public library. Excludes any private API tests.
603// Like core-ojtests but smaller.
Colin Crossec80f4f2018-08-15 21:17:11 -0700604java_test {
605 name: "core-ojtests-public",
606 defaults: ["libcore_java_defaults"],
607 srcs: [
608 "ojluni/src/test/java/**/*.java",
609 ],
610 // Filter out the following:
611 // 1.) DeserializeMethodTest and SerializedLambdaTest, because they depends on stub classes
612 // and won't actually run, and
613 // 2.) util/stream/boot*. Those directories contain classes in the package java.util.stream;
614 // excluding them means we don't need patch_module: "java.base"
615 exclude_srcs: [
616 "**/DeserializeMethodTest.java",
617 "**/SerializedLambdaTest.java",
618 "ojluni/src/test/java/util/stream/boot*/**/*",
619 ],
620 java_resource_dirs: [
621 "ojluni/src/test/java",
622 "ojluni/src/test/resources",
623 // Include source code as part of JAR
624 "ojluni/src/test/dist",
625 ],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100626
Paul Duffin83c25382019-06-07 14:10:49 +0100627 sdk_version: "none",
Neil Fuller4207c7f2018-10-10 14:01:40 +0100628 libs: [
629 "core-all",
630 "bouncycastle",
631 "okhttp",
632 "testng",
633 ],
634 system_modules: "core-all-system-modules",
Colin Crossec80f4f2018-08-15 21:17:11 -0700635}
636
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100637// Exports annotated stubs source files in ojluni/annotations/sdk to make them
638// available to metalava. Used for nullability annotations in OpenJDK source.
Pete Gillin7db7faa2018-07-31 13:29:35 +0100639droiddoc_exported_dir {
Pete Gillin0728b742018-09-17 15:41:45 +0100640 name: "ojluni-annotated-sdk-stubs",
641 path: "ojluni/annotations/sdk",
Pete Gillin7db7faa2018-07-31 13:29:35 +0100642}
Paul Duffin48ac7b62019-03-28 14:28:06 +0000643
Pete Gillin600c7cf2018-08-16 19:28:38 +0100644droiddoc_exported_dir {
645 name: "ojluni-annotated-nullability-stubs",
646 path: "ojluni/annotations/sdk/nullability",
647}
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100648
649// Exports annotated stubs source files in ojluni/annotations/mmodules to make
650// them available to metalava. Used for core platform API and intra-code API
651// annotations in OpenJDK source.
Pete Gillinc9935b62018-09-25 14:42:40 +0100652droiddoc_exported_dir {
653 name: "ojluni-annotated-mmodule-stubs",
654 path: "ojluni/annotations/mmodule",
655}
Pete Gillin7db7faa2018-07-31 13:29:35 +0100656
Neil Fuller6f16b462018-09-04 15:40:39 +0100657// A file containing the list of tags that are "known" to us from the OpenJdk
658// source code and so should not cause an error or warning.
Nan Zhangd55722b2018-02-27 15:08:20 -0800659filegroup {
660 name: "known-oj-tags",
661 srcs: [
662 "known_oj_tags.txt",
663 ],
664}
Nan Zhang602fc0e2018-03-22 16:14:22 -0700665
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100666// Generates stubs for the parts of the public SDK API provided by the core
667// library.
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000668//
669// Only for use by core.current.stubs target below.
Nan Zhangf0207602018-09-10 18:57:38 -0700670droidstubs {
671 name: "core-current-stubs-gen",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100672 srcs: [":core_api_files"],
Tobias Thiererde991232018-03-07 15:10:46 +0000673 java_version: "1.9",
Nan Zhang602fc0e2018-03-22 16:14:22 -0700674 installable: false,
Paul Duffin419b2422019-06-25 15:42:05 +0100675 sdk_version: "none",
Paul Duffinc31f6bb2019-05-15 12:32:44 +0100676 args: " --exclude-annotations " +
677 "--hide-annotation libcore.api.Hide",
Neil Fullerbe9258e2018-09-24 17:11:27 +0100678 merge_inclusion_annotations_dirs: ["ojluni-annotated-mmodule-stubs"],
Nan Zhang602fc0e2018-03-22 16:14:22 -0700679}
680
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000681// A stubs target containing the parts of the public SDK API provided by the
682// core library.
683//
684// Don't use this directly, use "sdk_version: core_current".
685java_library {
686 name: "core.current.stubs",
687 srcs: [":core-current-stubs-gen"],
688 errorprone: {
689 javacflags: [
690 "-Xep:MissingOverride:OFF",
691 ],
692 },
693 openjdk9: {
694 javacflags: ["--patch-module=java.base=."],
695 },
Paul Duffin83c25382019-06-07 14:10:49 +0100696 sdk_version: "none",
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000697 system_modules: "none",
Paul Duffin65641182019-04-08 10:24:23 +0100698
699 dist: {
700 targets: [
701 "sdk",
702 "win_sdk",
703 ],
704 },
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000705}
706
Neil Fuller61dabbf2018-10-21 22:53:18 +0100707// Used when compiling higher-level code against core.current.stubs.
708java_system_modules {
709 name: "core-current-stubs-system-modules",
710 libs: [
711 "core.current.stubs",
712 // This one is not on device but it's needed when javac compiles code
713 // containing lambdas.
714 "core-lambda-stubs-for-system-modules",
715 // This one is not on device but it's needed when javac compiles code
716 // containing @Generated annotations produced by some code generation
717 // tools.
718 // See http://b/123891440.
719 "core-generated-annotation-stubs",
720 ],
721}
722
Pete Gillin600c7cf2018-08-16 19:28:38 +0100723// Target for validating nullability annotations for correctness and
724// completeness. To check that there are no nullability errors:
725// make core-current-stubs-nullability-validation
726// To check that there are only the expected nullability warnings:
727// make core-current-stubs-nullability-validation-check-nullability-warnings
728// To update the the list of known expected nullability warnings:
729// make core-current-stubs-nullability-validation-update-nullability-warnings
730droidstubs {
731 name: "core-current-stubs-nullability-validation",
732 srcs: [":core_api_files"],
733 installable: false,
Paul Duffin419b2422019-06-25 15:42:05 +0100734 sdk_version: "none",
Pete Gillin600c7cf2018-08-16 19:28:38 +0100735 annotations_enabled: true,
736 args: "--hide-annotation libcore.api.Hide " +
737 "--validate-nullability-from-merged-stubs ",
738 merge_inclusion_annotations_dirs: ["ojluni-annotated-mmodule-stubs"],
739 merge_annotations_dirs: [
740 "metalava-manual",
741 // N.B. Stubs in this filegroup will be validated:
742 "ojluni-annotated-nullability-stubs",
743 ],
Pete Gillinc5f179b2018-11-14 18:42:19 +0000744 // The list of classes which have nullability annotations included in the source.
745 // (This is in addition to those which have annotations in the merged stubs.)
746 validate_nullability_from_list: "nullability_annotated_classes.txt",
Pete Gillin600c7cf2018-08-16 19:28:38 +0100747 // The expected set of warnings about missing annotations:
748 check_nullability_warnings: "nullability_warnings.txt",
749}
750
Neil Fullere784ef22018-11-16 15:54:30 +0000751// A host library containing time zone related classes. Used for
752// host-side tools and tests that have to deal with Android
753// time zone data.
754java_library_host {
755 name: "timezone-host",
756 srcs: [":timezone_host_files"],
757}
Andrei Onea24892e22019-04-16 16:48:37 +0100758
759// The source files that contain the UnsupportedAppUsage annotation and its dependencies.
760filegroup {
761 name: "unsupportedappusage_annotation_files",
762 srcs: [
763 "dalvik/src/main/java/dalvik/annotation/compat/UnsupportedAppUsage.java",
764 "dalvik/src/main/java/dalvik/system/VersionCodes.java",
765 "luni/src/main/java/libcore/api/CorePlatformApi.java",
766 "luni/src/main/java/libcore/api/IntraCoreApi.java",
767 ],
Neil Fuller86345d72019-04-25 09:15:32 +0100768}