blob: 4ce362902c2f1bec0bb0b4e0950d876ad3565fcd [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
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
Tobias Thierer52331642019-05-29 12:11:39 +0000148// A target used to bootstrap compilation for the core library.
149// See core-all-system-modules for more details.
150java_library {
151 name: "core-all",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000152 visibility: [
153 "//external/apache-harmony:__subpackages__",
154 "//external/apache-xml",
155 "//external/bouncycastle",
156 "//external/conscrypt",
157 "//external/icu/android_icu4j",
158 "//external/okhttp",
Tobias Thierer93f5bb82019-05-28 19:43:41 +0100159 "//libcore/benchmarks",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000160 "//libcore/mmodules/intracoreapi",
161 ],
Tobias Thierer52331642019-05-29 12:11:39 +0000162 defaults: ["libcore_java_defaults"],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700163
164 srcs: [
Neil Fuller866ed4a2018-09-06 12:05:46 +0100165 ":core_oj_java_files",
166 ":core_libart_java_files",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700167 ":openjdk_lambda_stub_files",
Pete Gillin54035812019-05-08 15:09:39 +0100168 ":openjdk_generated_annotation_stub_files",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700169 ],
Colin Crossec80f4f2018-08-15 21:17:11 -0700170
171 no_standard_libs: true,
172 system_modules: "none",
Colin Crossa4d9fc42017-09-29 18:04:37 -0700173 openjdk9: {
174 srcs: ["luni/src/module/java/module-info.java"],
175 javacflags: ["--patch-module=java.base=."],
176 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700177
Colin Crossaf0b54c2017-09-27 17:22:32 -0700178 java_resource_dirs: core_resource_dirs,
Victor Chang7fef4052018-09-25 14:12:03 +0100179 static_libs: ["android_icu4j_resources_lib"],
Tobias Thiererde991232018-03-07 15:10:46 +0000180 java_version: "1.9",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700181
Colin Crossaf0b54c2017-09-27 17:22:32 -0700182 installable: false,
183}
184
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100185// A system modules definition for use by core library targets only. It only
186// contains the core-all jar, which contains the classes that end up in core-oj,
187// core-libart as well as the lambda stubs needed to compile Java lambda code.
188// It does not contain other parts of core library like conscrypt, bouncycastle,
189// etc. This system_modules definition is used to bootstrap compilation for
190// other parts of the core library like core-oj, core-libart, conscrypt,
191// bouncycastle, etc.
192//
193// If you want to compile against the entire core library implementation, for
194// example to build core library tests, see "core-system-modules" instead.
Colin Crossa4d9fc42017-09-29 18:04:37 -0700195java_system_modules {
196 name: "core-all-system-modules",
197 libs: ["core-all"],
198}
199
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100200// Contains the parts of core library associated with OpenJDK.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700201java_library {
202 name: "core-oj",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000203 visibility: [
204 "//art/build/apex",
205 "//external/wycheproof",
Paul Duffin94f70232019-05-22 16:22:29 +0100206 "//libcore/benchmarks",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000207 ],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700208 defaults: ["libcore_java_defaults"],
Colin Cross5b75cdd2018-06-27 11:00:13 -0700209 installable: true,
Colin Crossbb180be2017-10-09 14:54:53 -0700210 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700211
Neil Fuller866ed4a2018-09-06 12:05:46 +0100212 srcs: [":core_oj_java_files"],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700213 java_resource_dirs: core_resource_dirs,
Colin Crossec80f4f2018-08-15 21:17:11 -0700214
215 no_standard_libs: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700216 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700217 system_modules: "core-all-system-modules",
218 openjdk9: {
219 javacflags: ["--patch-module=java.base=."],
220 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700221
Pete Gillin7a7a6d22017-12-19 14:56:03 +0000222 jacoco: {
Pete Gillin27ca0582018-01-10 17:04:17 +0000223 exclude_filter: [
Pete Gillin3f59bad2018-01-30 11:20:29 +0000224 "java.lang.Class",
225 "java.lang.Long",
226 "java.lang.Number",
227 "java.lang.Object",
228 "java.lang.String",
229 "java.lang.invoke.MethodHandle",
230 "java.lang.ref.Reference",
231 "java.lang.reflect.Proxy",
Pete Gillinb1868ada2018-01-17 11:03:10 +0000232 "java.util.AbstractMap",
Pete Gillin3f59bad2018-01-30 11:20:29 +0000233 "java.util.HashMap",
234 "java.util.HashMap$Node",
Pete Gillinb1868ada2018-01-17 11:03:10 +0000235 "java.util.Map",
Pete Gillin7a7a6d22017-12-19 14:56:03 +0000236 ],
237 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700238
239 notice: "ojluni/NOTICE",
240
Colin Crossaf0b54c2017-09-27 17:22:32 -0700241}
242
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100243// Contains parts of core library not associated with OpenJDK. Contains not
244// just java.*, javax.* code but also android.icu.*, android.system.* and
245// various internal libcore.* packages.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700246java_library {
247 name: "core-libart",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000248 visibility: [
249 "//art/build/apex",
250 "//external/robolectric-shadows",
251 "//external/wycheproof",
Paul Duffin94f70232019-05-22 16:22:29 +0100252 "//libcore/benchmarks",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000253 ],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700254 defaults: ["libcore_java_defaults"],
Colin Cross5b75cdd2018-06-27 11:00:13 -0700255 installable: true,
Colin Crossbb180be2017-10-09 14:54:53 -0700256 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700257
Neil Fuller866ed4a2018-09-06 12:05:46 +0100258 srcs: [":core_libart_java_files"],
Victor Chang7fef4052018-09-25 14:12:03 +0100259 static_libs: ["android_icu4j_resources_lib"],
Tobias Thiererde991232018-03-07 15:10:46 +0000260 java_version: "1.9",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700261
Colin Crossec80f4f2018-08-15 21:17:11 -0700262 no_standard_libs: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700263 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700264 system_modules: "core-all-system-modules",
265 openjdk9: {
266 javacflags: ["--patch-module=java.base=."],
267 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700268
Pete Gillin80ebe872018-02-13 15:21:20 +0000269 jacoco: {
270 exclude_filter: [
271 "java.lang.DexCache",
272 "dalvik.system.ClassExt",
273 ],
274 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700275
Andreas Gampe9a1ba892019-04-24 12:35:40 -0700276 target: {
277 hostdex: {
278 required: [
279 // Files used to simulate the /system and runtime APEX dir
280 // structure on host.
281 "tzdata_host",
282 "tzdata_host_runtime_apex",
283 "tzlookup.xml_host_runtime_apex",
284 "tz_version_host",
285 "tz_version_host_runtime_apex",
286 ],
287 },
288 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700289}
290
Paul Duffin7bb8d232018-10-23 11:48:38 +0100291// Provided solely to contribute information about which hidden parts of the
292// core-oj API are used by apps.
Paul Duffinc6bf27b2019-05-15 14:41:00 +0100293//
294// The build system determines that this library provides hiddenapi information
295// for the core-oj bootjar because its name is of the form <x>-hiddenapi, where
296// <x> is the name of a boot jar. That triggers the generation of a flags.csv
297// file which encapsulates information extracted from the UnsupportedAppUsage
298// annotations in the dex. The information from that file is then encoded into
299// the core-oj file.
300//
301// Usually, e.g. for core-libart, the UnsupportedAppUsage annotations are
302// added to the source that is compiled directly into the bootjar and the build
303// system extracts the information about UnsupportedAppUsage directly from
304// there.
305//
306// This approach of having separate annotated source and a separate build
307// target was taken for ojluni to avoid having to maintain local patches in the
308// ojluni source for UnsupportedAppUsage annotations as that would make it more
309// difficult to pull down changes from upstream.
310//
Paul Duffin7bb8d232018-10-23 11:48:38 +0100311java_library {
312 name: "core-oj-hiddenapi",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000313 // Do not allow this to be accessed from outside this directory.
314 visibility: ["//visibility:private"],
Paul Duffin7bb8d232018-10-23 11:48:38 +0100315 defaults: ["libcore_java_defaults"],
316 compile_dex: true,
317
318 srcs: [":openjdk_hiddenapi_javadoc_files"],
319
320 no_standard_libs: true,
321 libs: ["core-all"],
322 system_modules: "core-all-system-modules",
323 openjdk9: {
324 javacflags: ["--patch-module=java.base=."],
325 },
326}
327
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100328//
329// Guaranteed unstripped versions of core-oj and core-libart.
330//
Colin Cross3c6c2e22017-10-18 13:24:52 -0700331// The build system may or may not strip the core-oj and core-libart jars,
332// but these will not be stripped. See b/24535627.
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100333//
334
Colin Cross3c6c2e22017-10-18 13:24:52 -0700335java_library {
336 name: "core-oj-testdex",
Colin Cross5b75cdd2018-06-27 11:00:13 -0700337 installable: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700338 static_libs: ["core-oj"],
339 no_standard_libs: true,
340 libs: ["core-all"],
341 system_modules: "core-all-system-modules",
342 dxflags: ["--core-library"],
Colin Cross485ed362017-12-05 17:24:22 -0800343 dex_preopt: {
344 enabled: false,
345 },
Tobias Thiererde991232018-03-07 15:10:46 +0000346 java_version: "1.9",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700347 notice: "ojluni/NOTICE",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700348}
349
350java_library {
351 name: "core-libart-testdex",
Colin Cross5b75cdd2018-06-27 11:00:13 -0700352 installable: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700353 static_libs: ["core-libart"],
354 no_standard_libs: true,
355 libs: ["core-all"],
356 system_modules: "core-all-system-modules",
357 dxflags: ["--core-library"],
Colin Cross485ed362017-12-05 17:24:22 -0800358 dex_preopt: {
359 enabled: false,
360 },
Colin Cross3c6c2e22017-10-18 13:24:52 -0700361 notice: "ojluni/NOTICE",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700362}
363
Tobias Thierere0f8b312018-10-23 23:12:30 +0100364java_defaults {
365 name: "core_lambda_stubs_defaults",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700366 defaults: ["libcore_java_defaults"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100367 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700368
Colin Crossec80f4f2018-08-15 21:17:11 -0700369 no_standard_libs: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700370 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700371 system_modules: "core-all-system-modules",
372 openjdk9: {
373 javacflags: ["--patch-module=java.base=."],
374 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700375
376 notice: "ojluni/NOTICE",
377
378 installable: false,
379 include_srcs: true,
380}
Colin Crossa4d9fc42017-09-29 18:04:37 -0700381
Tobias Thierere0f8b312018-10-23 23:12:30 +0100382// Creates a jar that exists to satisfy javac when compiling source code that
383// contains lambdas. This contains all classes / methods required by javac
384// when generating invoke-dynamic lambda implementation code, even those that
385// are also in the public SDK API from API level 26 onwards.
386java_library {
387 name: "core-lambda-stubs",
388 defaults: ["core_lambda_stubs_defaults"],
389 srcs: [
390 ":openjdk_lambda_stub_files",
391 ":openjdk_lambda_duplicate_stub_files",
392 ],
393}
394
395// An alternative to core-lambda-stubs that omits openjdk_lambda_duplicate_stub_files
396// because those classes are also part of the core library public SDK API
397// (since API level 26).
398java_library {
399 name: "core-lambda-stubs-for-system-modules",
400 defaults: ["core_lambda_stubs_defaults"],
401 srcs: [
402 ":openjdk_lambda_stub_files",
403 ],
404}
405
Pete Gillin54035812019-05-08 15:09:39 +0100406// Creates a jar that exists to satisfy javac when compiling source code that
407// contains @Generated annotations, which are produced by some code generation
408// tools (notably dagger) but aren't part of the Android API.
409// See http://b/123891440.
410java_library {
411 name: "core-generated-annotation-stubs",
412 defaults: ["libcore_java_defaults"],
413 srcs: [
414 ":openjdk_generated_annotation_stub_files",
415 ],
416 hostdex: true,
417 no_standard_libs: true,
418 libs: ["core-all"],
419 system_modules: "core-all-system-modules",
420 openjdk9: {
421 javacflags: ["--patch-module=java.base=."],
422 },
423 notice: "ojluni/NOTICE",
424 installable: false,
425 include_srcs: true,
426}
427
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100428// A system modules definition containing the implementations for the various
429// parts that make up the core library.
430//
431// This system module is intended for use by tests that may need access to
432// core library internals. It should not be generally used; most of the
433// platform build should build against API stubs instead. See
434// "core-platform-api-stubs-system-modules", which is the default used by the
435// Android build.
436//
437// This module also includes lambda stubs for compiling source containing
438// Java lambdas.
Colin Crossa4d9fc42017-09-29 18:04:37 -0700439java_system_modules {
440 name: "core-system-modules",
441 libs: [
442 "core-oj",
443 "core-libart",
Neil Fullerb669ccb2018-10-04 23:10:27 +0100444 "bouncycastle",
445 "conscrypt",
446 "okhttp",
Neil Fuller05723a52018-10-19 10:55:05 +0100447 "apache-xml",
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100448 // This one is not on device but it's needed when javac compiles code
449 // containing lambdas.
Tobias Thierere0f8b312018-10-23 23:12:30 +0100450 "core-lambda-stubs-for-system-modules",
Colin Crossa4d9fc42017-09-29 18:04:37 -0700451 ],
452}
Colin Cross3c6c2e22017-10-18 13:24:52 -0700453
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100454// Builds libcore test rules
Colin Cross3c6c2e22017-10-18 13:24:52 -0700455java_library_static {
456 name: "core-test-rules",
457 hostdex: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700458 srcs: [
459 "dalvik/test-rules/src/main/**/*.java",
460 "test-rules/src/main/**/*.java",
461 ],
462 static_libs: ["junit"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100463
464 no_standard_libs: true,
465 libs: ["core-all"],
466 system_modules: "core-all-system-modules",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700467}
468
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100469// Builds the core-tests-support library used by various tests.
Colin Cross3c6c2e22017-10-18 13:24:52 -0700470java_library_static {
471 name: "core-tests-support",
472 hostdex: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700473 srcs: ["support/src/test/java/**/*.java"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100474
Neil Fuller4380ab22018-10-18 19:38:53 +0100475 no_framework_libs: true,
476 libs: ["junit"],
Colin Cross3c6c2e22017-10-18 13:24:52 -0700477 static_libs: [
Neil Fullerde8b0862018-10-12 21:53:31 +0100478 "bouncycastle-unbundled",
479 "bouncycastle-bcpkix-unbundled",
480 "bouncycastle-ocsp-unbundled",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700481 ],
482}
483
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100484// Builds the jsr166-tests library.
Colin Crossec80f4f2018-08-15 21:17:11 -0700485java_test {
Colin Cross3c6c2e22017-10-18 13:24:52 -0700486 name: "jsr166-tests",
487 srcs: ["jsr166-tests/src/test/java/**/*.java"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100488 no_standard_libs: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700489 libs: [
Neil Fuller4207c7f2018-10-10 14:01:40 +0100490 "core-all",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700491 "junit",
492 ],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100493 system_modules: "core-all-system-modules",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700494}
Nan Zhang65f27a32018-01-05 10:41:46 -0800495
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100496// Builds the core-tests library.
Colin Crossec80f4f2018-08-15 21:17:11 -0700497java_test {
498 name: "core-tests",
499 defaults: ["libcore_java_defaults"],
500 hostdex: true,
501 srcs: [
502 "dalvik/src/test/java/**/*.java",
503 "dalvik/test-rules/src/test/java/**/*.java",
504 "dom/src/test/java/**/*.java",
505 "harmony-tests/src/test/java/**/*.java",
506 "json/src/test/java/**/*.java",
507 "luni/src/test/java/**/*.java",
Paul Duffin4ba14532019-03-21 10:32:41 +0000508 "test-rules/src/test/java/**/*.java",
Colin Crossec80f4f2018-08-15 21:17:11 -0700509 "xml/src/test/java/**/*.java",
510 ],
511 exclude_srcs: [
512 "luni/src/test/java/libcore/java/util/zip/Zip64Test.java",
513 "luni/src/test/java/libcore/java/util/zip/Zip64FileTest.java",
514 ],
515
516 java_resource_dirs: [
517 "*/src/test/java",
518 "*/src/test/resources",
519 ],
520 exclude_java_resource_dirs: [
521 "ojluni/src/test/java",
522 "ojluni/src/test/resources",
523 ],
524
525 java_resources: [
Paul Duffin16a057f2019-05-13 12:20:55 +0100526 ":annotations-test",
Colin Crossec80f4f2018-08-15 21:17:11 -0700527 ":filesystemstest",
528 ":parameter-metadata-test",
529 ],
530
Neil Fuller4207c7f2018-10-10 14:01:40 +0100531 no_standard_libs: true,
532 libs: [
533 "core-all",
534 "okhttp",
535 "bouncycastle",
536 ],
537 system_modules: "core-all-system-modules",
538
Colin Crossec80f4f2018-08-15 21:17:11 -0700539 static_libs: [
540 "archive-patcher",
541 "core-test-rules",
542 "core-tests-support",
543 "junit-params",
544 "mockftpserver",
545 "mockito-target",
546 "mockwebserver",
547 "nist-pkix-tests",
548 "slf4j-jdk14",
549 "sqlite-jdbc",
550 "tzdata-testing",
Paul Duffina4df2372018-12-10 15:48:01 +0000551 "truth-prebuilt",
Colin Crossec80f4f2018-08-15 21:17:11 -0700552 ],
553
554 errorprone: {
555 javacflags: [
556 "-Xep:TryFailThrowable:ERROR",
557 "-Xep:ComparisonOutOfRange:ERROR",
558 ],
559 },
Simran Basi3be01e02018-08-21 17:53:49 -0700560
561 test_config: "AndroidTest-core-tests.xml",
Colin Crossec80f4f2018-08-15 21:17:11 -0700562}
563
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100564// Builds the core-ojtests library that contains test code from OpenJDK.
Colin Crossec80f4f2018-08-15 21:17:11 -0700565java_test {
566 name: "core-ojtests",
567 defaults: ["libcore_java_defaults"],
568 hostdex: true,
569
570 srcs: [
571 "ojluni/src/test/java/**/*.java",
572 ],
573 java_resource_dirs: [
574 "ojluni/src/test/java",
575 "ojluni/src/test/resources",
576 ],
Neil Fullerb669ccb2018-10-04 23:10:27 +0100577
Neil Fuller4207c7f2018-10-10 14:01:40 +0100578 no_standard_libs: true,
579 libs: [
580 "core-all",
581 "okhttp",
582 "bouncycastle",
583 ],
584 system_modules: "core-all-system-modules",
585
Colin Crossec80f4f2018-08-15 21:17:11 -0700586 static_libs: ["testng"],
587
588 // ojluni/src/test/java/util/stream/{bootlib,boottest}
589 // contains tests that are in packages from java.base;
590 // By default, OpenJDK 9's javac will only compile such
591 // code if it's declared to also be in java.base at
592 // compile time.
593 //
594 // For now, we use --patch-module to put all sources
595 // and dependencies from this make target into java.base;
596 // other source directories in this make target are in
597 // packages not from java.base; if this becomes a problem
598 // in future, this could be addressed eg. by splitting
599 // boot{lib,test} out into a separate make target,
600 // deleting those tests or moving them to a different
601 // package.
602 patch_module: "java.base",
603}
604
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100605// Builds the core-ojtests-public library. Excludes any private API tests.
606// Like core-ojtests but smaller.
Colin Crossec80f4f2018-08-15 21:17:11 -0700607java_test {
608 name: "core-ojtests-public",
609 defaults: ["libcore_java_defaults"],
610 srcs: [
611 "ojluni/src/test/java/**/*.java",
612 ],
613 // Filter out the following:
614 // 1.) DeserializeMethodTest and SerializedLambdaTest, because they depends on stub classes
615 // and won't actually run, and
616 // 2.) util/stream/boot*. Those directories contain classes in the package java.util.stream;
617 // excluding them means we don't need patch_module: "java.base"
618 exclude_srcs: [
619 "**/DeserializeMethodTest.java",
620 "**/SerializedLambdaTest.java",
621 "ojluni/src/test/java/util/stream/boot*/**/*",
622 ],
623 java_resource_dirs: [
624 "ojluni/src/test/java",
625 "ojluni/src/test/resources",
626 // Include source code as part of JAR
627 "ojluni/src/test/dist",
628 ],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100629
630 no_standard_libs: true,
631 libs: [
632 "core-all",
633 "bouncycastle",
634 "okhttp",
635 "testng",
636 ],
637 system_modules: "core-all-system-modules",
Colin Crossec80f4f2018-08-15 21:17:11 -0700638}
639
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100640// Exports annotated stubs source files in ojluni/annotations/sdk to make them
641// available to metalava. Used for nullability annotations in OpenJDK source.
Pete Gillin7db7faa2018-07-31 13:29:35 +0100642droiddoc_exported_dir {
Pete Gillin0728b742018-09-17 15:41:45 +0100643 name: "ojluni-annotated-sdk-stubs",
644 path: "ojluni/annotations/sdk",
Pete Gillin7db7faa2018-07-31 13:29:35 +0100645}
Paul Duffin48ac7b62019-03-28 14:28:06 +0000646
Pete Gillin600c7cf2018-08-16 19:28:38 +0100647droiddoc_exported_dir {
648 name: "ojluni-annotated-nullability-stubs",
649 path: "ojluni/annotations/sdk/nullability",
650}
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100651
652// Exports annotated stubs source files in ojluni/annotations/mmodules to make
653// them available to metalava. Used for core platform API and intra-code API
654// annotations in OpenJDK source.
Pete Gillinc9935b62018-09-25 14:42:40 +0100655droiddoc_exported_dir {
656 name: "ojluni-annotated-mmodule-stubs",
657 path: "ojluni/annotations/mmodule",
658}
Pete Gillin7db7faa2018-07-31 13:29:35 +0100659
Neil Fuller6f16b462018-09-04 15:40:39 +0100660// A file containing the list of tags that are "known" to us from the OpenJdk
661// source code and so should not cause an error or warning.
Nan Zhangd55722b2018-02-27 15:08:20 -0800662filegroup {
663 name: "known-oj-tags",
664 srcs: [
665 "known_oj_tags.txt",
666 ],
667}
Nan Zhang602fc0e2018-03-22 16:14:22 -0700668
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100669// Generates stubs for the parts of the public SDK API provided by the core
670// library.
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000671//
672// Only for use by core.current.stubs target below.
Nan Zhangf0207602018-09-10 18:57:38 -0700673droidstubs {
674 name: "core-current-stubs-gen",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100675 srcs: [":core_api_files"],
Tobias Thiererde991232018-03-07 15:10:46 +0000676 java_version: "1.9",
Nan Zhang602fc0e2018-03-22 16:14:22 -0700677 installable: false,
678 no_framework_libs: true,
Paul Duffinc31f6bb2019-05-15 12:32:44 +0100679 args: " --exclude-annotations " +
680 "--hide-annotation libcore.api.Hide",
Neil Fullerbe9258e2018-09-24 17:11:27 +0100681 merge_inclusion_annotations_dirs: ["ojluni-annotated-mmodule-stubs"],
Nan Zhang602fc0e2018-03-22 16:14:22 -0700682}
683
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000684// A stubs target containing the parts of the public SDK API provided by the
685// core library.
686//
687// Don't use this directly, use "sdk_version: core_current".
688java_library {
689 name: "core.current.stubs",
690 srcs: [":core-current-stubs-gen"],
691 errorprone: {
692 javacflags: [
693 "-Xep:MissingOverride:OFF",
694 ],
695 },
696 openjdk9: {
697 javacflags: ["--patch-module=java.base=."],
698 },
699 no_standard_libs: true,
700 system_modules: "none",
Paul Duffin65641182019-04-08 10:24:23 +0100701
702 dist: {
703 targets: [
704 "sdk",
705 "win_sdk",
706 ],
707 },
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000708}
709
Pete Gillin600c7cf2018-08-16 19:28:38 +0100710// Target for validating nullability annotations for correctness and
711// completeness. To check that there are no nullability errors:
712// make core-current-stubs-nullability-validation
713// To check that there are only the expected nullability warnings:
714// make core-current-stubs-nullability-validation-check-nullability-warnings
715// To update the the list of known expected nullability warnings:
716// make core-current-stubs-nullability-validation-update-nullability-warnings
717droidstubs {
718 name: "core-current-stubs-nullability-validation",
719 srcs: [":core_api_files"],
720 installable: false,
721 no_framework_libs: true,
722 annotations_enabled: true,
723 args: "--hide-annotation libcore.api.Hide " +
724 "--validate-nullability-from-merged-stubs ",
725 merge_inclusion_annotations_dirs: ["ojluni-annotated-mmodule-stubs"],
726 merge_annotations_dirs: [
727 "metalava-manual",
728 // N.B. Stubs in this filegroup will be validated:
729 "ojluni-annotated-nullability-stubs",
730 ],
Pete Gillinc5f179b2018-11-14 18:42:19 +0000731 // The list of classes which have nullability annotations included in the source.
732 // (This is in addition to those which have annotations in the merged stubs.)
733 validate_nullability_from_list: "nullability_annotated_classes.txt",
Pete Gillin600c7cf2018-08-16 19:28:38 +0100734 // The expected set of warnings about missing annotations:
735 check_nullability_warnings: "nullability_warnings.txt",
736}
737
Neil Fullere784ef22018-11-16 15:54:30 +0000738// A host library containing time zone related classes. Used for
739// host-side tools and tests that have to deal with Android
740// time zone data.
741java_library_host {
742 name: "timezone-host",
743 srcs: [":timezone_host_files"],
744}
Andrei Onea24892e22019-04-16 16:48:37 +0100745
746// The source files that contain the UnsupportedAppUsage annotation and its dependencies.
747filegroup {
748 name: "unsupportedappusage_annotation_files",
749 srcs: [
750 "dalvik/src/main/java/dalvik/annotation/compat/UnsupportedAppUsage.java",
751 "dalvik/src/main/java/dalvik/system/VersionCodes.java",
752 "luni/src/main/java/libcore/api/CorePlatformApi.java",
753 "luni/src/main/java/libcore/api/IntraCoreApi.java",
754 ],
Neil Fuller86345d72019-04-25 09:15:32 +0100755}