blob: b229c2fcfd6595579e08897a60cb4c5043aed0b6 [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",
Pete Gillin05a43202019-06-27 14:41:21 +0100148 "//libcore/luni/src/test/java9language",
Tobias Thierercf66bfd2019-05-29 13:18:25 +0100149 "//libcore/mmodules/intracoreapi",
150]
151
Tobias Thierer52331642019-05-29 12:11:39 +0000152// A target used to bootstrap compilation for the core library.
153// See core-all-system-modules for more details.
154java_library {
155 name: "core-all",
Tobias Thierercf66bfd2019-05-29 13:18:25 +0100156 visibility: core_all_visibility,
Tobias Thierer52331642019-05-29 12:11:39 +0000157 defaults: ["libcore_java_defaults"],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700158
159 srcs: [
Neil Fuller866ed4a2018-09-06 12:05:46 +0100160 ":core_oj_java_files",
161 ":core_libart_java_files",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700162 ":openjdk_lambda_stub_files",
Pete Gillin54035812019-05-08 15:09:39 +0100163 ":openjdk_generated_annotation_stub_files",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700164 ],
Colin Crossec80f4f2018-08-15 21:17:11 -0700165
Paul Duffin83c25382019-06-07 14:10:49 +0100166 sdk_version: "none",
Colin Crossec80f4f2018-08-15 21:17:11 -0700167 system_modules: "none",
Colin Crossa4d9fc42017-09-29 18:04:37 -0700168 openjdk9: {
169 srcs: ["luni/src/module/java/module-info.java"],
170 javacflags: ["--patch-module=java.base=."],
171 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700172
Colin Crossaf0b54c2017-09-27 17:22:32 -0700173 java_resource_dirs: core_resource_dirs,
Victor Chang7fef4052018-09-25 14:12:03 +0100174 static_libs: ["android_icu4j_resources_lib"],
Tobias Thiererde991232018-03-07 15:10:46 +0000175 java_version: "1.9",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700176
Colin Crossaf0b54c2017-09-27 17:22:32 -0700177 installable: false,
178}
179
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100180// A system modules definition for use by core library targets only. It only
181// contains the core-all jar, which contains the classes that end up in core-oj,
182// core-libart as well as the lambda stubs needed to compile Java lambda code.
183// It does not contain other parts of core library like conscrypt, bouncycastle,
184// etc. This system_modules definition is used to bootstrap compilation for
185// other parts of the core library like core-oj, core-libart, conscrypt,
186// bouncycastle, etc.
187//
188// If you want to compile against the entire core library implementation, for
189// example to build core library tests, see "core-system-modules" instead.
Colin Crossa4d9fc42017-09-29 18:04:37 -0700190java_system_modules {
191 name: "core-all-system-modules",
Tobias Thierercf66bfd2019-05-29 13:18:25 +0100192 visibility: core_all_visibility,
Colin Crossa4d9fc42017-09-29 18:04:37 -0700193 libs: ["core-all"],
194}
195
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100196// Contains the parts of core library associated with OpenJDK.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700197java_library {
198 name: "core-oj",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000199 visibility: [
200 "//art/build/apex",
201 "//external/wycheproof",
Paul Duffin94f70232019-05-22 16:22:29 +0100202 "//libcore/benchmarks",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000203 ],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700204 defaults: ["libcore_java_defaults"],
Colin Cross5b75cdd2018-06-27 11:00:13 -0700205 installable: true,
Colin Crossbb180be2017-10-09 14:54:53 -0700206 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700207
Neil Fuller866ed4a2018-09-06 12:05:46 +0100208 srcs: [":core_oj_java_files"],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700209 java_resource_dirs: core_resource_dirs,
Colin Crossec80f4f2018-08-15 21:17:11 -0700210
Paul Duffin83c25382019-06-07 14:10:49 +0100211 sdk_version: "none",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700212 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700213 system_modules: "core-all-system-modules",
214 openjdk9: {
215 javacflags: ["--patch-module=java.base=."],
216 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700217
Pete Gillin7a7a6d22017-12-19 14:56:03 +0000218 jacoco: {
Pete Gillin27ca0582018-01-10 17:04:17 +0000219 exclude_filter: [
Pete Gillin3f59bad2018-01-30 11:20:29 +0000220 "java.lang.Class",
221 "java.lang.Long",
222 "java.lang.Number",
223 "java.lang.Object",
224 "java.lang.String",
225 "java.lang.invoke.MethodHandle",
226 "java.lang.ref.Reference",
227 "java.lang.reflect.Proxy",
Pete Gillinb1868ada2018-01-17 11:03:10 +0000228 "java.util.AbstractMap",
Pete Gillin3f59bad2018-01-30 11:20:29 +0000229 "java.util.HashMap",
230 "java.util.HashMap$Node",
Pete Gillinb1868ada2018-01-17 11:03:10 +0000231 "java.util.Map",
Pete Gillin7a7a6d22017-12-19 14:56:03 +0000232 ],
233 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700234
235 notice: "ojluni/NOTICE",
236
Colin Crossaf0b54c2017-09-27 17:22:32 -0700237}
238
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100239// Contains parts of core library not associated with OpenJDK. Contains not
240// just java.*, javax.* code but also android.icu.*, android.system.* and
241// various internal libcore.* packages.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700242java_library {
243 name: "core-libart",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000244 visibility: [
245 "//art/build/apex",
246 "//external/robolectric-shadows",
247 "//external/wycheproof",
Paul Duffin94f70232019-05-22 16:22:29 +0100248 "//libcore/benchmarks",
Colin Crossf0ef6252019-05-31 08:26:47 -0700249 "//frameworks/layoutlib",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000250 ],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700251 defaults: ["libcore_java_defaults"],
Colin Cross5b75cdd2018-06-27 11:00:13 -0700252 installable: true,
Colin Crossbb180be2017-10-09 14:54:53 -0700253 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700254
Neil Fuller866ed4a2018-09-06 12:05:46 +0100255 srcs: [":core_libart_java_files"],
Victor Chang7fef4052018-09-25 14:12:03 +0100256 static_libs: ["android_icu4j_resources_lib"],
Tobias Thiererde991232018-03-07 15:10:46 +0000257 java_version: "1.9",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700258
Paul Duffin83c25382019-06-07 14:10:49 +0100259 sdk_version: "none",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700260 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700261 system_modules: "core-all-system-modules",
262 openjdk9: {
263 javacflags: ["--patch-module=java.base=."],
264 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700265
Pete Gillin80ebe872018-02-13 15:21:20 +0000266 jacoco: {
267 exclude_filter: [
268 "java.lang.DexCache",
269 "dalvik.system.ClassExt",
270 ],
271 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700272
Andreas Gampe9a1ba892019-04-24 12:35:40 -0700273 target: {
274 hostdex: {
275 required: [
Neil Fuller53c5f032019-06-05 13:47:39 +0100276 // Files used to simulate the /system, runtime APEX and tzdata
277 // APEX dir structure on host.
278 "icu_tzdata.dat_host_tzdata_apex",
Andreas Gampe9a1ba892019-04-24 12:35:40 -0700279 "tzdata_host",
Neil Fuller53c5f032019-06-05 13:47:39 +0100280 "tzdata_host_tzdata_apex",
Neil Fuller53c5f032019-06-05 13:47:39 +0100281 "tzlookup.xml_host_tzdata_apex",
Andreas Gampe9a1ba892019-04-24 12:35:40 -0700282 "tz_version_host",
Neil Fuller53c5f032019-06-05 13:47:39 +0100283 "tz_version_host_tzdata_apex",
Andreas Gampe9a1ba892019-04-24 12:35:40 -0700284 ],
285 },
286 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700287}
288
Paul Duffin7bb8d232018-10-23 11:48:38 +0100289// Provided solely to contribute information about which hidden parts of the
290// core-oj API are used by apps.
Paul Duffinc6bf27b2019-05-15 14:41:00 +0100291//
292// The build system determines that this library provides hiddenapi information
293// for the core-oj bootjar because its name is of the form <x>-hiddenapi, where
294// <x> is the name of a boot jar. That triggers the generation of a flags.csv
295// file which encapsulates information extracted from the UnsupportedAppUsage
296// annotations in the dex. The information from that file is then encoded into
297// the core-oj file.
298//
299// Usually, e.g. for core-libart, the UnsupportedAppUsage annotations are
300// added to the source that is compiled directly into the bootjar and the build
301// system extracts the information about UnsupportedAppUsage directly from
302// there.
303//
304// This approach of having separate annotated source and a separate build
305// target was taken for ojluni to avoid having to maintain local patches in the
306// ojluni source for UnsupportedAppUsage annotations as that would make it more
307// difficult to pull down changes from upstream.
308//
Paul Duffin7bb8d232018-10-23 11:48:38 +0100309java_library {
310 name: "core-oj-hiddenapi",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000311 // Do not allow this to be accessed from outside this directory.
312 visibility: ["//visibility:private"],
Paul Duffin7bb8d232018-10-23 11:48:38 +0100313 defaults: ["libcore_java_defaults"],
314 compile_dex: true,
315
316 srcs: [":openjdk_hiddenapi_javadoc_files"],
317
Paul Duffin83c25382019-06-07 14:10:49 +0100318 sdk_version: "none",
Paul Duffin7bb8d232018-10-23 11:48:38 +0100319 libs: ["core-all"],
320 system_modules: "core-all-system-modules",
321 openjdk9: {
322 javacflags: ["--patch-module=java.base=."],
323 },
324}
325
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100326//
327// Guaranteed unstripped versions of core-oj and core-libart.
328//
Colin Cross3c6c2e22017-10-18 13:24:52 -0700329// The build system may or may not strip the core-oj and core-libart jars,
330// but these will not be stripped. See b/24535627.
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100331//
332
Colin Cross3c6c2e22017-10-18 13:24:52 -0700333java_library {
334 name: "core-oj-testdex",
Colin Cross5b75cdd2018-06-27 11:00:13 -0700335 installable: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700336 static_libs: ["core-oj"],
Paul Duffin83c25382019-06-07 14:10:49 +0100337 sdk_version: "none",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700338 libs: ["core-all"],
339 system_modules: "core-all-system-modules",
340 dxflags: ["--core-library"],
Colin Cross485ed362017-12-05 17:24:22 -0800341 dex_preopt: {
342 enabled: false,
343 },
Tobias Thiererde991232018-03-07 15:10:46 +0000344 java_version: "1.9",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700345 notice: "ojluni/NOTICE",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700346}
347
348java_library {
349 name: "core-libart-testdex",
Colin Cross5b75cdd2018-06-27 11:00:13 -0700350 installable: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700351 static_libs: ["core-libart"],
Paul Duffin83c25382019-06-07 14:10:49 +0100352 sdk_version: "none",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700353 libs: ["core-all"],
354 system_modules: "core-all-system-modules",
355 dxflags: ["--core-library"],
Colin Cross485ed362017-12-05 17:24:22 -0800356 dex_preopt: {
357 enabled: false,
358 },
Colin Cross3c6c2e22017-10-18 13:24:52 -0700359 notice: "ojluni/NOTICE",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700360}
361
Tobias Thierere0f8b312018-10-23 23:12:30 +0100362java_defaults {
363 name: "core_lambda_stubs_defaults",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700364 defaults: ["libcore_java_defaults"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100365 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700366
Paul Duffin83c25382019-06-07 14:10:49 +0100367 sdk_version: "none",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700368 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700369 system_modules: "core-all-system-modules",
370 openjdk9: {
371 javacflags: ["--patch-module=java.base=."],
372 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700373
374 notice: "ojluni/NOTICE",
375
376 installable: false,
377 include_srcs: true,
378}
Colin Crossa4d9fc42017-09-29 18:04:37 -0700379
Tobias Thierere0f8b312018-10-23 23:12:30 +0100380// Creates a jar that exists to satisfy javac when compiling source code that
381// contains lambdas. This contains all classes / methods required by javac
382// when generating invoke-dynamic lambda implementation code, even those that
383// are also in the public SDK API from API level 26 onwards.
384java_library {
385 name: "core-lambda-stubs",
386 defaults: ["core_lambda_stubs_defaults"],
387 srcs: [
388 ":openjdk_lambda_stub_files",
389 ":openjdk_lambda_duplicate_stub_files",
390 ],
391}
392
393// An alternative to core-lambda-stubs that omits openjdk_lambda_duplicate_stub_files
394// because those classes are also part of the core library public SDK API
395// (since API level 26).
396java_library {
397 name: "core-lambda-stubs-for-system-modules",
398 defaults: ["core_lambda_stubs_defaults"],
399 srcs: [
400 ":openjdk_lambda_stub_files",
401 ],
402}
403
Pete Gillin54035812019-05-08 15:09:39 +0100404// Creates a jar that exists to satisfy javac when compiling source code that
405// contains @Generated annotations, which are produced by some code generation
406// tools (notably dagger) but aren't part of the Android API.
407// See http://b/123891440.
408java_library {
409 name: "core-generated-annotation-stubs",
410 defaults: ["libcore_java_defaults"],
411 srcs: [
412 ":openjdk_generated_annotation_stub_files",
413 ],
414 hostdex: true,
Paul Duffin83c25382019-06-07 14:10:49 +0100415 sdk_version: "none",
Pete Gillin54035812019-05-08 15:09:39 +0100416 libs: ["core-all"],
417 system_modules: "core-all-system-modules",
418 openjdk9: {
419 javacflags: ["--patch-module=java.base=."],
420 },
421 notice: "ojluni/NOTICE",
422 installable: false,
423 include_srcs: true,
424}
425
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100426// A system modules definition containing the implementations for the various
427// parts that make up the core library.
428//
429// This system module is intended for use by tests that may need access to
430// core library internals. It should not be generally used; most of the
431// platform build should build against API stubs instead. See
432// "core-platform-api-stubs-system-modules", which is the default used by the
433// Android build.
434//
435// This module also includes lambda stubs for compiling source containing
436// Java lambdas.
Colin Crossa4d9fc42017-09-29 18:04:37 -0700437java_system_modules {
438 name: "core-system-modules",
439 libs: [
440 "core-oj",
441 "core-libart",
Neil Fullerb669ccb2018-10-04 23:10:27 +0100442 "bouncycastle",
443 "conscrypt",
444 "okhttp",
Neil Fuller05723a52018-10-19 10:55:05 +0100445 "apache-xml",
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100446 // This one is not on device but it's needed when javac compiles code
447 // containing lambdas.
Tobias Thierere0f8b312018-10-23 23:12:30 +0100448 "core-lambda-stubs-for-system-modules",
Colin Crossa4d9fc42017-09-29 18:04:37 -0700449 ],
450}
Colin Cross3c6c2e22017-10-18 13:24:52 -0700451
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100452// Builds libcore test rules
Colin Cross3c6c2e22017-10-18 13:24:52 -0700453java_library_static {
454 name: "core-test-rules",
455 hostdex: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700456 srcs: [
457 "dalvik/test-rules/src/main/**/*.java",
458 "test-rules/src/main/**/*.java",
459 ],
460 static_libs: ["junit"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100461
Paul Duffin83c25382019-06-07 14:10:49 +0100462 sdk_version: "none",
Neil Fuller4207c7f2018-10-10 14:01:40 +0100463 libs: ["core-all"],
464 system_modules: "core-all-system-modules",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700465}
466
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100467// Builds the core-tests-support library used by various tests.
Colin Cross3c6c2e22017-10-18 13:24:52 -0700468java_library_static {
469 name: "core-tests-support",
470 hostdex: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700471 srcs: ["support/src/test/java/**/*.java"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100472
Paul Duffin53c491f2019-06-12 13:48:14 +0100473 sdk_version: "core_platform",
Neil Fuller4380ab22018-10-18 19:38:53 +0100474 libs: ["junit"],
Colin Cross3c6c2e22017-10-18 13:24:52 -0700475 static_libs: [
Neil Fullerde8b0862018-10-12 21:53:31 +0100476 "bouncycastle-unbundled",
477 "bouncycastle-bcpkix-unbundled",
478 "bouncycastle-ocsp-unbundled",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700479 ],
480}
481
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100482// Builds the jsr166-tests library.
Colin Crossec80f4f2018-08-15 21:17:11 -0700483java_test {
Colin Cross3c6c2e22017-10-18 13:24:52 -0700484 name: "jsr166-tests",
485 srcs: ["jsr166-tests/src/test/java/**/*.java"],
Paul Duffin83c25382019-06-07 14:10:49 +0100486 sdk_version: "none",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700487 libs: [
Neil Fuller4207c7f2018-10-10 14:01:40 +0100488 "core-all",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700489 "junit",
490 ],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100491 system_modules: "core-all-system-modules",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700492}
Nan Zhang65f27a32018-01-05 10:41:46 -0800493
Pete Gillinec902b82019-06-26 17:23:00 +0100494// A filegroup that provides access to a source file for a toolchain test that
495// checks Java 9 language features are handled properly by JarJar.
496filegroup {
497 name: "core-java-9-language-features-source",
498 srcs: ["luni/src/main/java/libcore/internal/Java9LanguageFeatures.java"],
499 visibility: ["//libcore/luni/src/test/java9language"],
500}
501
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100502// Builds the core-tests library.
Colin Crossec80f4f2018-08-15 21:17:11 -0700503java_test {
504 name: "core-tests",
505 defaults: ["libcore_java_defaults"],
506 hostdex: true,
507 srcs: [
508 "dalvik/src/test/java/**/*.java",
509 "dalvik/test-rules/src/test/java/**/*.java",
510 "dom/src/test/java/**/*.java",
511 "harmony-tests/src/test/java/**/*.java",
512 "json/src/test/java/**/*.java",
513 "luni/src/test/java/**/*.java",
Paul Duffin4ba14532019-03-21 10:32:41 +0000514 "test-rules/src/test/java/**/*.java",
Colin Crossec80f4f2018-08-15 21:17:11 -0700515 "xml/src/test/java/**/*.java",
516 ],
517 exclude_srcs: [
518 "luni/src/test/java/libcore/java/util/zip/Zip64Test.java",
519 "luni/src/test/java/libcore/java/util/zip/Zip64FileTest.java",
520 ],
521
522 java_resource_dirs: [
523 "*/src/test/java",
524 "*/src/test/resources",
525 ],
526 exclude_java_resource_dirs: [
527 "ojluni/src/test/java",
528 "ojluni/src/test/resources",
529 ],
530
531 java_resources: [
Paul Duffin16a057f2019-05-13 12:20:55 +0100532 ":annotations-test",
Colin Crossec80f4f2018-08-15 21:17:11 -0700533 ":filesystemstest",
534 ":parameter-metadata-test",
535 ],
536
Paul Duffin83c25382019-06-07 14:10:49 +0100537 sdk_version: "none",
Neil Fuller4207c7f2018-10-10 14:01:40 +0100538 libs: [
539 "core-all",
540 "okhttp",
541 "bouncycastle",
542 ],
543 system_modules: "core-all-system-modules",
544
Colin Crossec80f4f2018-08-15 21:17:11 -0700545 static_libs: [
546 "archive-patcher",
Pete Gillin05a43202019-06-27 14:41:21 +0100547 "core-java-9-language-tests",
Colin Crossec80f4f2018-08-15 21:17:11 -0700548 "core-test-rules",
549 "core-tests-support",
550 "junit-params",
551 "mockftpserver",
552 "mockito-target",
553 "mockwebserver",
554 "nist-pkix-tests",
555 "slf4j-jdk14",
556 "sqlite-jdbc",
557 "tzdata-testing",
Paul Duffina4df2372018-12-10 15:48:01 +0000558 "truth-prebuilt",
Colin Crossec80f4f2018-08-15 21:17:11 -0700559 ],
560
561 errorprone: {
562 javacflags: [
563 "-Xep:TryFailThrowable:ERROR",
564 "-Xep:ComparisonOutOfRange:ERROR",
565 ],
566 },
Simran Basi3be01e02018-08-21 17:53:49 -0700567
568 test_config: "AndroidTest-core-tests.xml",
Colin Crossec80f4f2018-08-15 21:17:11 -0700569}
570
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100571// Builds the core-ojtests library that contains test code from OpenJDK.
Colin Crossec80f4f2018-08-15 21:17:11 -0700572java_test {
573 name: "core-ojtests",
574 defaults: ["libcore_java_defaults"],
575 hostdex: true,
576
577 srcs: [
578 "ojluni/src/test/java/**/*.java",
579 ],
580 java_resource_dirs: [
581 "ojluni/src/test/java",
582 "ojluni/src/test/resources",
583 ],
Neil Fullerb669ccb2018-10-04 23:10:27 +0100584
Paul Duffin83c25382019-06-07 14:10:49 +0100585 sdk_version: "none",
Neil Fuller4207c7f2018-10-10 14:01:40 +0100586 libs: [
587 "core-all",
588 "okhttp",
589 "bouncycastle",
590 ],
591 system_modules: "core-all-system-modules",
592
Colin Crossec80f4f2018-08-15 21:17:11 -0700593 static_libs: ["testng"],
594
595 // ojluni/src/test/java/util/stream/{bootlib,boottest}
596 // contains tests that are in packages from java.base;
597 // By default, OpenJDK 9's javac will only compile such
598 // code if it's declared to also be in java.base at
599 // compile time.
600 //
601 // For now, we use --patch-module to put all sources
602 // and dependencies from this make target into java.base;
603 // other source directories in this make target are in
604 // packages not from java.base; if this becomes a problem
605 // in future, this could be addressed eg. by splitting
606 // boot{lib,test} out into a separate make target,
607 // deleting those tests or moving them to a different
608 // package.
609 patch_module: "java.base",
610}
611
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100612// Builds the core-ojtests-public library. Excludes any private API tests.
613// Like core-ojtests but smaller.
Colin Crossec80f4f2018-08-15 21:17:11 -0700614java_test {
615 name: "core-ojtests-public",
616 defaults: ["libcore_java_defaults"],
617 srcs: [
618 "ojluni/src/test/java/**/*.java",
619 ],
620 // Filter out the following:
621 // 1.) DeserializeMethodTest and SerializedLambdaTest, because they depends on stub classes
622 // and won't actually run, and
623 // 2.) util/stream/boot*. Those directories contain classes in the package java.util.stream;
624 // excluding them means we don't need patch_module: "java.base"
625 exclude_srcs: [
626 "**/DeserializeMethodTest.java",
627 "**/SerializedLambdaTest.java",
628 "ojluni/src/test/java/util/stream/boot*/**/*",
629 ],
630 java_resource_dirs: [
631 "ojluni/src/test/java",
632 "ojluni/src/test/resources",
633 // Include source code as part of JAR
634 "ojluni/src/test/dist",
635 ],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100636
Paul Duffin83c25382019-06-07 14:10:49 +0100637 sdk_version: "none",
Neil Fuller4207c7f2018-10-10 14:01:40 +0100638 libs: [
639 "core-all",
640 "bouncycastle",
641 "okhttp",
642 "testng",
643 ],
644 system_modules: "core-all-system-modules",
Colin Crossec80f4f2018-08-15 21:17:11 -0700645}
646
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100647// Exports annotated stubs source files in ojluni/annotations/sdk to make them
648// available to metalava. Used for nullability annotations in OpenJDK source.
Pete Gillin7db7faa2018-07-31 13:29:35 +0100649droiddoc_exported_dir {
Pete Gillin0728b742018-09-17 15:41:45 +0100650 name: "ojluni-annotated-sdk-stubs",
651 path: "ojluni/annotations/sdk",
Pete Gillin7db7faa2018-07-31 13:29:35 +0100652}
Paul Duffin48ac7b62019-03-28 14:28:06 +0000653
Pete Gillin600c7cf2018-08-16 19:28:38 +0100654droiddoc_exported_dir {
655 name: "ojluni-annotated-nullability-stubs",
656 path: "ojluni/annotations/sdk/nullability",
657}
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100658
659// Exports annotated stubs source files in ojluni/annotations/mmodules to make
660// them available to metalava. Used for core platform API and intra-code API
661// annotations in OpenJDK source.
Pete Gillinc9935b62018-09-25 14:42:40 +0100662droiddoc_exported_dir {
663 name: "ojluni-annotated-mmodule-stubs",
664 path: "ojluni/annotations/mmodule",
665}
Pete Gillin7db7faa2018-07-31 13:29:35 +0100666
Neil Fuller6f16b462018-09-04 15:40:39 +0100667// A file containing the list of tags that are "known" to us from the OpenJdk
668// source code and so should not cause an error or warning.
Nan Zhangd55722b2018-02-27 15:08:20 -0800669filegroup {
670 name: "known-oj-tags",
671 srcs: [
672 "known_oj_tags.txt",
673 ],
674}
Nan Zhang602fc0e2018-03-22 16:14:22 -0700675
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100676// Generates stubs for the parts of the public SDK API provided by the core
677// library.
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000678//
679// Only for use by core.current.stubs target below.
Nan Zhangf0207602018-09-10 18:57:38 -0700680droidstubs {
681 name: "core-current-stubs-gen",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100682 srcs: [":core_api_files"],
Tobias Thiererde991232018-03-07 15:10:46 +0000683 java_version: "1.9",
Nan Zhang602fc0e2018-03-22 16:14:22 -0700684 installable: false,
Paul Duffin419b2422019-06-25 15:42:05 +0100685 sdk_version: "none",
Paul Duffinc31f6bb2019-05-15 12:32:44 +0100686 args: " --exclude-annotations " +
687 "--hide-annotation libcore.api.Hide",
Neil Fullerbe9258e2018-09-24 17:11:27 +0100688 merge_inclusion_annotations_dirs: ["ojluni-annotated-mmodule-stubs"],
Nan Zhang602fc0e2018-03-22 16:14:22 -0700689}
690
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000691// A stubs target containing the parts of the public SDK API provided by the
692// core library.
693//
694// Don't use this directly, use "sdk_version: core_current".
695java_library {
696 name: "core.current.stubs",
697 srcs: [":core-current-stubs-gen"],
698 errorprone: {
699 javacflags: [
700 "-Xep:MissingOverride:OFF",
701 ],
702 },
703 openjdk9: {
704 javacflags: ["--patch-module=java.base=."],
705 },
Paul Duffin83c25382019-06-07 14:10:49 +0100706 sdk_version: "none",
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000707 system_modules: "none",
Paul Duffin65641182019-04-08 10:24:23 +0100708
709 dist: {
710 targets: [
711 "sdk",
712 "win_sdk",
713 ],
714 },
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000715}
716
Neil Fuller61dabbf2018-10-21 22:53:18 +0100717// Used when compiling higher-level code against core.current.stubs.
718java_system_modules {
719 name: "core-current-stubs-system-modules",
720 libs: [
721 "core.current.stubs",
722 // This one is not on device but it's needed when javac compiles code
723 // containing lambdas.
724 "core-lambda-stubs-for-system-modules",
725 // This one is not on device but it's needed when javac compiles code
726 // containing @Generated annotations produced by some code generation
727 // tools.
728 // See http://b/123891440.
729 "core-generated-annotation-stubs",
730 ],
731}
732
Pete Gillin600c7cf2018-08-16 19:28:38 +0100733// Target for validating nullability annotations for correctness and
734// completeness. To check that there are no nullability errors:
735// make core-current-stubs-nullability-validation
736// To check that there are only the expected nullability warnings:
737// make core-current-stubs-nullability-validation-check-nullability-warnings
738// To update the the list of known expected nullability warnings:
739// make core-current-stubs-nullability-validation-update-nullability-warnings
740droidstubs {
741 name: "core-current-stubs-nullability-validation",
742 srcs: [":core_api_files"],
743 installable: false,
Paul Duffin419b2422019-06-25 15:42:05 +0100744 sdk_version: "none",
Pete Gillin600c7cf2018-08-16 19:28:38 +0100745 annotations_enabled: true,
746 args: "--hide-annotation libcore.api.Hide " +
747 "--validate-nullability-from-merged-stubs ",
748 merge_inclusion_annotations_dirs: ["ojluni-annotated-mmodule-stubs"],
749 merge_annotations_dirs: [
750 "metalava-manual",
751 // N.B. Stubs in this filegroup will be validated:
752 "ojluni-annotated-nullability-stubs",
753 ],
Pete Gillinc5f179b2018-11-14 18:42:19 +0000754 // The list of classes which have nullability annotations included in the source.
755 // (This is in addition to those which have annotations in the merged stubs.)
756 validate_nullability_from_list: "nullability_annotated_classes.txt",
Pete Gillin600c7cf2018-08-16 19:28:38 +0100757 // The expected set of warnings about missing annotations:
758 check_nullability_warnings: "nullability_warnings.txt",
759}
760
Neil Fullere784ef22018-11-16 15:54:30 +0000761// A host library containing time zone related classes. Used for
762// host-side tools and tests that have to deal with Android
763// time zone data.
764java_library_host {
765 name: "timezone-host",
766 srcs: [":timezone_host_files"],
767}
Andrei Onea24892e22019-04-16 16:48:37 +0100768
769// The source files that contain the UnsupportedAppUsage annotation and its dependencies.
770filegroup {
771 name: "unsupportedappusage_annotation_files",
772 srcs: [
773 "dalvik/src/main/java/dalvik/annotation/compat/UnsupportedAppUsage.java",
774 "dalvik/src/main/java/dalvik/system/VersionCodes.java",
775 "luni/src/main/java/libcore/api/CorePlatformApi.java",
776 "luni/src/main/java/libcore/api/IntraCoreApi.java",
777 ],
Neil Fuller86345d72019-04-25 09:15:32 +0100778}