blob: 5f9835eec2829d169f65780cef80232a72e4e70f [file] [log] [blame]
Colin Crossaf0b54c2017-09-27 17:22:32 -07001// Copyright (C) 2007 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15//
Neil Fuller77e3f3b2018-10-19 10:22:32 +010016// Definitions for building the Android core library and associated tests.
Colin Crossaf0b54c2017-09-27 17:22:32 -070017//
18
Neil Fuller77e3f3b2018-10-19 10:22:32 +010019// The Android core library provides low-level APIs for use by the rest of the
20// Android software stack. It is made up of various parts, some of which can be
21// found in libcore/ and other parts that can be found in various external/
22// directories. See the "core-system-modules" definition for the parts.
23
Neil Fullercf756882018-08-28 18:42:22 +010024// libcore has some sub-directories that follow a common structure:
25// e.g. dalvik, dom, harmony-tests, json, jsr166-tests, luni, libart, ojluni,
26// support, xml, xmlpull.
Colin Crossaf0b54c2017-09-27 17:22:32 -070027//
Neil Fullercf756882018-08-28 18:42:22 +010028// The structure of these is generally:
Colin Crossaf0b54c2017-09-27 17:22:32 -070029//
30// src/
31// main/ # To be shipped on every device.
32// java/ # Java source for library code.
Neil Fullercf756882018-08-28 18:42:22 +010033// native/ # C/C++ source for library code.
Colin Crossaf0b54c2017-09-27 17:22:32 -070034// resources/ # Support files.
35// test/ # Built only on demand, for testing.
36// java/ # Java source for tests.
Neil Fullercf756882018-08-28 18:42:22 +010037// native/ # C/C++ source for tests (rare).
Colin Crossaf0b54c2017-09-27 17:22:32 -070038// resources/ # Support files.
39//
Neil Fullercf756882018-08-28 18:42:22 +010040// All subdirectories are optional.
Colin Crossaf0b54c2017-09-27 17:22:32 -070041
42build = [
43 "openjdk_java_files.bp",
44 "non_openjdk_java_files.bp",
45]
46
47// The Java files and their associated resources.
48core_resource_dirs = [
49 "luni/src/main/java",
50 "ojluni/src/main/resources/",
51]
52
Neil Fuller866ed4a2018-09-06 12:05:46 +010053// The source files that go into core-oj.
54filegroup {
55 name: "core_oj_java_files",
56 srcs: [":openjdk_java_files"],
57}
58
Neil Fullere32e2e12019-02-26 11:48:30 +000059// OpenJDK source is not annotated with @hide so we need this separate
Neil Fuller866ed4a2018-09-06 12:05:46 +010060// filegroup for just the parts that contribute to the API.
61filegroup {
62 name: "core_oj_api_files",
63 srcs: [":openjdk_javadoc_files"],
64}
65
66// The source files that go into core-libart.
67filegroup {
68 name: "core_libart_java_files",
69 srcs: [
70 ":non_openjdk_java_files",
71 ":android_icu4j_src_files",
72 ],
73}
74
Neil Fullere32e2e12019-02-26 11:48:30 +000075// Some parts of libart are not annotated with @hide so we need this separate
Neil Fuller866ed4a2018-09-06 12:05:46 +010076// filegroup for just the parts that contribute to the API.
77filegroup {
78 name: "core_libart_api_files",
79 srcs: [
80 ":non_openjdk_javadoc_files",
81 ":android_icu4j_src_files",
82 ],
83}
84
Neil Fullere32e2e12019-02-26 11:48:30 +000085// The set of files for the core library that have been marked up with @hide
86// for the public SDK APIs. Used from frameworks/base/ to indicate the source
87// files for inclusion in the public SDK docs.
88filegroup {
89 name: "core_public_api_files",
90 srcs: [
91 ":core_oj_api_files",
92 ":core_libart_api_files",
93 ":conscrypt_public_api_files",
94 ],
95}
96
Neil Fuller77e3f3b2018-10-19 10:22:32 +010097// The set of files for the core library that have been marked up with @hide and
98// API-related annotations. Note that this includes the intra-core and
99// core-platform APIs as well as the public APIs.
100//
Neil Fullere32e2e12019-02-26 11:48:30 +0000101// Some source files in :core_oj_api_files and :openjdk_mmodule_extra_files are
102// annotated by applying annotations to the .annotated.java stubs files in
103// ojluni/annotated/mmodules and rather than in the original source. See the comments
104// in openjdk_java_files.bp for more details.
Neil Fuller866ed4a2018-09-06 12:05:46 +0100105filegroup {
106 name: "core_api_files",
107 srcs: [
Neil Fullerd129bc92018-09-26 11:12:58 +0100108 ":apache-xml_api_files",
Neil Fullera77f7102018-09-21 19:04:41 +0100109 ":bouncycastle_java_files",
Neil Fuller603e1a72018-09-25 11:55:41 +0100110 ":conscrypt_java_files",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100111 ":core_oj_api_files",
112 ":core_libart_api_files",
Neil Fuller641d5f92018-09-24 15:40:39 +0100113 ":okhttp_api_files",
Pete Gillinc9935b62018-09-25 14:42:40 +0100114 ":openjdk_mmodule_extra_files",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100115 ],
116}
117
Colin Crossaf0b54c2017-09-27 17:22:32 -0700118java_defaults {
119 name: "libcore_java_defaults",
120 javacflags: [
121 //"-Xlint:all",
122 //"-Xlint:-serial,-deprecation,-unchecked",
123 ],
124 dxflags: ["--core-library"],
Andreas Gampe66b31732018-02-20 09:22:16 -0800125 errorprone: {
126 javacflags: [
127 "-Xep:MissingOverride:OFF", // Ignore missing @Override.
Andreas Gampe24a20172018-06-13 11:28:45 -0700128 "-Xep:ConstantOverflow:WARN", // Known constant overflow in SplittableRandom
Andreas Gampe66b31732018-02-20 09:22:16 -0800129 ],
130 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700131}
132
133//
134// Build for the target (device).
135//
136
Victor Chang7fef4052018-09-25 14:12:03 +0100137// Rule generating resource lib for android_icu4j.
138// In the downstream branch master-icu-dev, the resource files are generated.
139// This rule can't be moved external/icu because soong enforces that no_standard_libs:true can only
140// be used in libcore/ or development/
141java_library {
142 name: "android_icu4j_resources_lib",
143 java_resources: [":android_icu4j_resources"],
144 no_standard_libs: true,
145 system_modules: "none",
146}
147
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100148// A target used to bootstrap compilation for the core library.
149// See core-all-system-modules for more details.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700150java_library {
151 name: "core-all",
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",
159 "//libcore/mmodules/intracoreapi",
160 ],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700161 defaults: ["libcore_java_defaults"],
162
163 srcs: [
Neil Fuller866ed4a2018-09-06 12:05:46 +0100164 ":core_oj_java_files",
165 ":core_libart_java_files",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700166 ":openjdk_lambda_stub_files",
167 ],
Colin Crossec80f4f2018-08-15 21:17:11 -0700168
169 no_standard_libs: true,
170 system_modules: "none",
Colin Crossa4d9fc42017-09-29 18:04:37 -0700171 openjdk9: {
172 srcs: ["luni/src/module/java/module-info.java"],
173 javacflags: ["--patch-module=java.base=."],
174 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700175
Colin Crossaf0b54c2017-09-27 17:22:32 -0700176 java_resource_dirs: core_resource_dirs,
Victor Chang7fef4052018-09-25 14:12:03 +0100177 static_libs: ["android_icu4j_resources_lib"],
Tobias Thiererde991232018-03-07 15:10:46 +0000178 java_version: "1.9",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700179
Colin Crossaf0b54c2017-09-27 17:22:32 -0700180 installable: false,
181}
182
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100183// A system modules definition for use by core library targets only. It only
184// contains the core-all jar, which contains the classes that end up in core-oj,
185// core-libart as well as the lambda stubs needed to compile Java lambda code.
186// It does not contain other parts of core library like conscrypt, bouncycastle,
187// etc. This system_modules definition is used to bootstrap compilation for
188// other parts of the core library like core-oj, core-libart, conscrypt,
189// bouncycastle, etc.
190//
191// If you want to compile against the entire core library implementation, for
192// example to build core library tests, see "core-system-modules" instead.
Colin Crossa4d9fc42017-09-29 18:04:37 -0700193java_system_modules {
194 name: "core-all-system-modules",
195 libs: ["core-all"],
196}
197
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100198// Contains the parts of core library associated with OpenJDK.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700199java_library {
200 name: "core-oj",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000201 visibility: [
202 "//art/build/apex",
203 "//external/wycheproof",
204 ],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700205 defaults: ["libcore_java_defaults"],
Colin Cross5b75cdd2018-06-27 11:00:13 -0700206 installable: true,
Colin Crossbb180be2017-10-09 14:54:53 -0700207 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700208
Neil Fuller866ed4a2018-09-06 12:05:46 +0100209 srcs: [":core_oj_java_files"],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700210 java_resource_dirs: core_resource_dirs,
Colin Crossec80f4f2018-08-15 21:17:11 -0700211
212 no_standard_libs: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700213 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700214 system_modules: "core-all-system-modules",
215 openjdk9: {
216 javacflags: ["--patch-module=java.base=."],
217 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700218
Pete Gillin7a7a6d22017-12-19 14:56:03 +0000219 jacoco: {
Pete Gillin27ca0582018-01-10 17:04:17 +0000220 exclude_filter: [
Pete Gillin3f59bad2018-01-30 11:20:29 +0000221 "java.lang.Class",
222 "java.lang.Long",
223 "java.lang.Number",
224 "java.lang.Object",
225 "java.lang.String",
226 "java.lang.invoke.MethodHandle",
227 "java.lang.ref.Reference",
228 "java.lang.reflect.Proxy",
Pete Gillinb1868ada2018-01-17 11:03:10 +0000229 "java.util.AbstractMap",
Pete Gillin3f59bad2018-01-30 11:20:29 +0000230 "java.util.HashMap",
231 "java.util.HashMap$Node",
Pete Gillinb1868ada2018-01-17 11:03:10 +0000232 "java.util.Map",
Pete Gillin7a7a6d22017-12-19 14:56:03 +0000233 ],
234 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700235
236 notice: "ojluni/NOTICE",
237
Colin Crossaf0b54c2017-09-27 17:22:32 -0700238}
239
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100240// Contains parts of core library not associated with OpenJDK. Contains not
241// just java.*, javax.* code but also android.icu.*, android.system.* and
242// various internal libcore.* packages.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700243java_library {
244 name: "core-libart",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000245 visibility: [
246 "//art/build/apex",
247 "//external/robolectric-shadows",
248 "//external/wycheproof",
249 ],
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
Colin Crossec80f4f2018-08-15 21:17:11 -0700258 no_standard_libs: true,
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: [
275 // Files used to simulate the /system and runtime APEX dir
276 // structure on host.
277 "tzdata_host",
278 "tzdata_host_runtime_apex",
279 "tzlookup.xml_host_runtime_apex",
280 "tz_version_host",
281 "tz_version_host_runtime_apex",
282 ],
283 },
284 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700285}
286
Paul Duffin7bb8d232018-10-23 11:48:38 +0100287// Provided solely to contribute information about which hidden parts of the
288// core-oj API are used by apps.
289java_library {
290 name: "core-oj-hiddenapi",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000291 // Do not allow this to be accessed from outside this directory.
292 visibility: ["//visibility:private"],
Paul Duffin7bb8d232018-10-23 11:48:38 +0100293 defaults: ["libcore_java_defaults"],
294 compile_dex: true,
295
296 srcs: [":openjdk_hiddenapi_javadoc_files"],
297
298 no_standard_libs: true,
299 libs: ["core-all"],
300 system_modules: "core-all-system-modules",
301 openjdk9: {
302 javacflags: ["--patch-module=java.base=."],
303 },
304}
305
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100306//
307// Guaranteed unstripped versions of core-oj and core-libart.
308//
Colin Cross3c6c2e22017-10-18 13:24:52 -0700309// The build system may or may not strip the core-oj and core-libart jars,
310// but these will not be stripped. See b/24535627.
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100311//
312
Colin Cross3c6c2e22017-10-18 13:24:52 -0700313java_library {
314 name: "core-oj-testdex",
Colin Cross5b75cdd2018-06-27 11:00:13 -0700315 installable: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700316 static_libs: ["core-oj"],
317 no_standard_libs: true,
318 libs: ["core-all"],
319 system_modules: "core-all-system-modules",
320 dxflags: ["--core-library"],
Colin Cross485ed362017-12-05 17:24:22 -0800321 dex_preopt: {
322 enabled: false,
323 },
Tobias Thiererde991232018-03-07 15:10:46 +0000324 java_version: "1.9",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700325 notice: "ojluni/NOTICE",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700326}
327
328java_library {
329 name: "core-libart-testdex",
Colin Cross5b75cdd2018-06-27 11:00:13 -0700330 installable: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700331 static_libs: ["core-libart"],
332 no_standard_libs: true,
333 libs: ["core-all"],
334 system_modules: "core-all-system-modules",
335 dxflags: ["--core-library"],
Colin Cross485ed362017-12-05 17:24:22 -0800336 dex_preopt: {
337 enabled: false,
338 },
Colin Cross3c6c2e22017-10-18 13:24:52 -0700339 notice: "ojluni/NOTICE",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700340}
341
Tobias Thierere0f8b312018-10-23 23:12:30 +0100342java_defaults {
343 name: "core_lambda_stubs_defaults",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700344 defaults: ["libcore_java_defaults"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100345 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700346
Colin Crossec80f4f2018-08-15 21:17:11 -0700347 no_standard_libs: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700348 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700349 system_modules: "core-all-system-modules",
350 openjdk9: {
351 javacflags: ["--patch-module=java.base=."],
352 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700353
354 notice: "ojluni/NOTICE",
355
356 installable: false,
357 include_srcs: true,
358}
Colin Crossa4d9fc42017-09-29 18:04:37 -0700359
Tobias Thierere0f8b312018-10-23 23:12:30 +0100360// Creates a jar that exists to satisfy javac when compiling source code that
361// contains lambdas. This contains all classes / methods required by javac
362// when generating invoke-dynamic lambda implementation code, even those that
363// are also in the public SDK API from API level 26 onwards.
364java_library {
365 name: "core-lambda-stubs",
366 defaults: ["core_lambda_stubs_defaults"],
367 srcs: [
368 ":openjdk_lambda_stub_files",
369 ":openjdk_lambda_duplicate_stub_files",
370 ],
371}
372
373// An alternative to core-lambda-stubs that omits openjdk_lambda_duplicate_stub_files
374// because those classes are also part of the core library public SDK API
375// (since API level 26).
376java_library {
377 name: "core-lambda-stubs-for-system-modules",
378 defaults: ["core_lambda_stubs_defaults"],
379 srcs: [
380 ":openjdk_lambda_stub_files",
381 ],
382}
383
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100384// A system modules definition containing the implementations for the various
385// parts that make up the core library.
386//
387// This system module is intended for use by tests that may need access to
388// core library internals. It should not be generally used; most of the
389// platform build should build against API stubs instead. See
390// "core-platform-api-stubs-system-modules", which is the default used by the
391// Android build.
392//
393// This module also includes lambda stubs for compiling source containing
394// Java lambdas.
Colin Crossa4d9fc42017-09-29 18:04:37 -0700395java_system_modules {
396 name: "core-system-modules",
397 libs: [
398 "core-oj",
399 "core-libart",
Neil Fullerb669ccb2018-10-04 23:10:27 +0100400 "bouncycastle",
401 "conscrypt",
402 "okhttp",
Neil Fuller05723a52018-10-19 10:55:05 +0100403 "apache-xml",
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100404 // This one is not on device but it's needed when javac compiles code
405 // containing lambdas.
Tobias Thierere0f8b312018-10-23 23:12:30 +0100406 "core-lambda-stubs-for-system-modules",
Colin Crossa4d9fc42017-09-29 18:04:37 -0700407 ],
408}
Colin Cross3c6c2e22017-10-18 13:24:52 -0700409
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100410// Builds libcore test rules
Colin Cross3c6c2e22017-10-18 13:24:52 -0700411java_library_static {
412 name: "core-test-rules",
413 hostdex: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700414 srcs: [
415 "dalvik/test-rules/src/main/**/*.java",
416 "test-rules/src/main/**/*.java",
417 ],
418 static_libs: ["junit"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100419
420 no_standard_libs: true,
421 libs: ["core-all"],
422 system_modules: "core-all-system-modules",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700423}
424
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100425// Builds the core-tests-support library used by various tests.
Colin Cross3c6c2e22017-10-18 13:24:52 -0700426java_library_static {
427 name: "core-tests-support",
428 hostdex: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700429 srcs: ["support/src/test/java/**/*.java"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100430
Neil Fuller4380ab22018-10-18 19:38:53 +0100431 no_framework_libs: true,
432 libs: ["junit"],
Colin Cross3c6c2e22017-10-18 13:24:52 -0700433 static_libs: [
Neil Fullerde8b0862018-10-12 21:53:31 +0100434 "bouncycastle-unbundled",
435 "bouncycastle-bcpkix-unbundled",
436 "bouncycastle-ocsp-unbundled",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700437 ],
438}
439
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100440// Builds the jsr166-tests library.
Colin Crossec80f4f2018-08-15 21:17:11 -0700441java_test {
Colin Cross3c6c2e22017-10-18 13:24:52 -0700442 name: "jsr166-tests",
443 srcs: ["jsr166-tests/src/test/java/**/*.java"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100444 no_standard_libs: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700445 libs: [
Neil Fuller4207c7f2018-10-10 14:01:40 +0100446 "core-all",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700447 "junit",
448 ],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100449 system_modules: "core-all-system-modules",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700450}
Nan Zhang65f27a32018-01-05 10:41:46 -0800451
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100452// Builds a library just containing files from luni/src/test/filesystems
453// for use in tests.
Colin Crossec80f4f2018-08-15 21:17:11 -0700454java_library {
455 name: "filesystemstest",
456 compile_dex: true,
457 srcs: ["luni/src/test/filesystems/src/**/*.java"],
458 java_resource_dirs: ["luni/src/test/filesystems/resources"],
459 no_framework_libs: true,
460 errorprone: {
461 javacflags: ["-Xep:MissingOverride:OFF"],
462 },
463}
464
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100465// Builds a library just containing files from luni/src/test/parameter_metadata
466// for use in tests.
Colin Crossec80f4f2018-08-15 21:17:11 -0700467java_library {
468 name: "parameter-metadata-test",
469 compile_dex: true,
470 srcs: ["luni/src/test/parameter_metadata/src/**/*.java"],
471 no_framework_libs: true,
472 javacflags: ["-parameters"],
473 errorprone: {
474 javacflags: ["-Xep:MissingOverride:OFF"],
475 },
476}
477
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100478// Builds the core-tests library.
Colin Crossec80f4f2018-08-15 21:17:11 -0700479java_test {
480 name: "core-tests",
481 defaults: ["libcore_java_defaults"],
482 hostdex: true,
483 srcs: [
484 "dalvik/src/test/java/**/*.java",
485 "dalvik/test-rules/src/test/java/**/*.java",
486 "dom/src/test/java/**/*.java",
487 "harmony-tests/src/test/java/**/*.java",
488 "json/src/test/java/**/*.java",
489 "luni/src/test/java/**/*.java",
Paul Duffin4ba14532019-03-21 10:32:41 +0000490 "test-rules/src/test/java/**/*.java",
Colin Crossec80f4f2018-08-15 21:17:11 -0700491 "xml/src/test/java/**/*.java",
492 ],
493 exclude_srcs: [
494 "luni/src/test/java/libcore/java/util/zip/Zip64Test.java",
495 "luni/src/test/java/libcore/java/util/zip/Zip64FileTest.java",
496 ],
497
498 java_resource_dirs: [
499 "*/src/test/java",
500 "*/src/test/resources",
501 ],
502 exclude_java_resource_dirs: [
503 "ojluni/src/test/java",
504 "ojluni/src/test/resources",
505 ],
506
507 java_resources: [
508 ":filesystemstest",
509 ":parameter-metadata-test",
510 ],
511
Neil Fuller4207c7f2018-10-10 14:01:40 +0100512 no_standard_libs: true,
513 libs: [
514 "core-all",
515 "okhttp",
516 "bouncycastle",
517 ],
518 system_modules: "core-all-system-modules",
519
Colin Crossec80f4f2018-08-15 21:17:11 -0700520 static_libs: [
521 "archive-patcher",
522 "core-test-rules",
523 "core-tests-support",
524 "junit-params",
525 "mockftpserver",
526 "mockito-target",
527 "mockwebserver",
528 "nist-pkix-tests",
529 "slf4j-jdk14",
530 "sqlite-jdbc",
531 "tzdata-testing",
Paul Duffina4df2372018-12-10 15:48:01 +0000532 "truth-prebuilt",
Colin Crossec80f4f2018-08-15 21:17:11 -0700533 ],
534
535 errorprone: {
536 javacflags: [
537 "-Xep:TryFailThrowable:ERROR",
538 "-Xep:ComparisonOutOfRange:ERROR",
539 ],
540 },
Simran Basi3be01e02018-08-21 17:53:49 -0700541
542 test_config: "AndroidTest-core-tests.xml",
Colin Crossec80f4f2018-08-15 21:17:11 -0700543}
544
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100545// Builds the core-ojtests library that contains test code from OpenJDK.
Colin Crossec80f4f2018-08-15 21:17:11 -0700546java_test {
547 name: "core-ojtests",
548 defaults: ["libcore_java_defaults"],
549 hostdex: true,
550
551 srcs: [
552 "ojluni/src/test/java/**/*.java",
553 ],
554 java_resource_dirs: [
555 "ojluni/src/test/java",
556 "ojluni/src/test/resources",
557 ],
Neil Fullerb669ccb2018-10-04 23:10:27 +0100558
Neil Fuller4207c7f2018-10-10 14:01:40 +0100559 no_standard_libs: true,
560 libs: [
561 "core-all",
562 "okhttp",
563 "bouncycastle",
564 ],
565 system_modules: "core-all-system-modules",
566
Colin Crossec80f4f2018-08-15 21:17:11 -0700567 static_libs: ["testng"],
568
569 // ojluni/src/test/java/util/stream/{bootlib,boottest}
570 // contains tests that are in packages from java.base;
571 // By default, OpenJDK 9's javac will only compile such
572 // code if it's declared to also be in java.base at
573 // compile time.
574 //
575 // For now, we use --patch-module to put all sources
576 // and dependencies from this make target into java.base;
577 // other source directories in this make target are in
578 // packages not from java.base; if this becomes a problem
579 // in future, this could be addressed eg. by splitting
580 // boot{lib,test} out into a separate make target,
581 // deleting those tests or moving them to a different
582 // package.
583 patch_module: "java.base",
584}
585
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100586// Builds the core-ojtests-public library. Excludes any private API tests.
587// Like core-ojtests but smaller.
Colin Crossec80f4f2018-08-15 21:17:11 -0700588java_test {
589 name: "core-ojtests-public",
590 defaults: ["libcore_java_defaults"],
591 srcs: [
592 "ojluni/src/test/java/**/*.java",
593 ],
594 // Filter out the following:
595 // 1.) DeserializeMethodTest and SerializedLambdaTest, because they depends on stub classes
596 // and won't actually run, and
597 // 2.) util/stream/boot*. Those directories contain classes in the package java.util.stream;
598 // excluding them means we don't need patch_module: "java.base"
599 exclude_srcs: [
600 "**/DeserializeMethodTest.java",
601 "**/SerializedLambdaTest.java",
602 "ojluni/src/test/java/util/stream/boot*/**/*",
603 ],
604 java_resource_dirs: [
605 "ojluni/src/test/java",
606 "ojluni/src/test/resources",
607 // Include source code as part of JAR
608 "ojluni/src/test/dist",
609 ],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100610
611 no_standard_libs: true,
612 libs: [
613 "core-all",
614 "bouncycastle",
615 "okhttp",
616 "testng",
617 ],
618 system_modules: "core-all-system-modules",
Colin Crossec80f4f2018-08-15 21:17:11 -0700619}
620
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100621// Exports annotated stubs source files in ojluni/annotations/sdk to make them
622// available to metalava. Used for nullability annotations in OpenJDK source.
Pete Gillin7db7faa2018-07-31 13:29:35 +0100623droiddoc_exported_dir {
Pete Gillin0728b742018-09-17 15:41:45 +0100624 name: "ojluni-annotated-sdk-stubs",
625 path: "ojluni/annotations/sdk",
Pete Gillin7db7faa2018-07-31 13:29:35 +0100626}
Paul Duffin48ac7b62019-03-28 14:28:06 +0000627
Pete Gillin600c7cf2018-08-16 19:28:38 +0100628droiddoc_exported_dir {
629 name: "ojluni-annotated-nullability-stubs",
630 path: "ojluni/annotations/sdk/nullability",
631}
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100632
633// Exports annotated stubs source files in ojluni/annotations/mmodules to make
634// them available to metalava. Used for core platform API and intra-code API
635// annotations in OpenJDK source.
Pete Gillinc9935b62018-09-25 14:42:40 +0100636droiddoc_exported_dir {
637 name: "ojluni-annotated-mmodule-stubs",
638 path: "ojluni/annotations/mmodule",
639}
Pete Gillin7db7faa2018-07-31 13:29:35 +0100640
Neil Fuller6f16b462018-09-04 15:40:39 +0100641// A file containing the list of tags that are "known" to us from the OpenJdk
642// source code and so should not cause an error or warning.
Nan Zhangd55722b2018-02-27 15:08:20 -0800643filegroup {
644 name: "known-oj-tags",
645 srcs: [
646 "known_oj_tags.txt",
647 ],
648}
Nan Zhang602fc0e2018-03-22 16:14:22 -0700649
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100650// Generates stubs for the parts of the public SDK API provided by the core
651// library.
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000652//
653// Only for use by core.current.stubs target below.
Nan Zhangf0207602018-09-10 18:57:38 -0700654droidstubs {
655 name: "core-current-stubs-gen",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100656 srcs: [":core_api_files"],
Tobias Thiererde991232018-03-07 15:10:46 +0000657 java_version: "1.9",
Nan Zhang602fc0e2018-03-22 16:14:22 -0700658 installable: false,
659 no_framework_libs: true,
Neil Fullerbe9258e2018-09-24 17:11:27 +0100660 args: " --exclude-annotations "
661 + "--hide-annotation libcore.api.Hide",
662 merge_inclusion_annotations_dirs: ["ojluni-annotated-mmodule-stubs"],
Nan Zhang602fc0e2018-03-22 16:14:22 -0700663}
664
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000665// A stubs target containing the parts of the public SDK API provided by the
666// core library.
667//
668// Don't use this directly, use "sdk_version: core_current".
669java_library {
670 name: "core.current.stubs",
671 srcs: [":core-current-stubs-gen"],
672 errorprone: {
673 javacflags: [
674 "-Xep:MissingOverride:OFF",
675 ],
676 },
677 openjdk9: {
678 javacflags: ["--patch-module=java.base=."],
679 },
680 no_standard_libs: true,
681 system_modules: "none",
Paul Duffin65641182019-04-08 10:24:23 +0100682
683 dist: {
684 targets: [
685 "sdk",
686 "win_sdk",
687 ],
688 },
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000689}
690
Pete Gillin600c7cf2018-08-16 19:28:38 +0100691// Target for validating nullability annotations for correctness and
692// completeness. To check that there are no nullability errors:
693// make core-current-stubs-nullability-validation
694// To check that there are only the expected nullability warnings:
695// make core-current-stubs-nullability-validation-check-nullability-warnings
696// To update the the list of known expected nullability warnings:
697// make core-current-stubs-nullability-validation-update-nullability-warnings
698droidstubs {
699 name: "core-current-stubs-nullability-validation",
700 srcs: [":core_api_files"],
701 installable: false,
702 no_framework_libs: true,
703 annotations_enabled: true,
704 args: "--hide-annotation libcore.api.Hide " +
705 "--validate-nullability-from-merged-stubs ",
706 merge_inclusion_annotations_dirs: ["ojluni-annotated-mmodule-stubs"],
707 merge_annotations_dirs: [
708 "metalava-manual",
709 // N.B. Stubs in this filegroup will be validated:
710 "ojluni-annotated-nullability-stubs",
711 ],
Pete Gillinc5f179b2018-11-14 18:42:19 +0000712 // The list of classes which have nullability annotations included in the source.
713 // (This is in addition to those which have annotations in the merged stubs.)
714 validate_nullability_from_list: "nullability_annotated_classes.txt",
Pete Gillin600c7cf2018-08-16 19:28:38 +0100715 // The expected set of warnings about missing annotations:
716 check_nullability_warnings: "nullability_warnings.txt",
717}
718
Neil Fullere784ef22018-11-16 15:54:30 +0000719// A host library containing time zone related classes. Used for
720// host-side tools and tests that have to deal with Android
721// time zone data.
722java_library_host {
723 name: "timezone-host",
724 srcs: [":timezone_host_files"],
725}
Andrei Onea24892e22019-04-16 16:48:37 +0100726
727// The source files that contain the UnsupportedAppUsage annotation and its dependencies.
728filegroup {
729 name: "unsupportedappusage_annotation_files",
730 srcs: [
731 "dalvik/src/main/java/dalvik/annotation/compat/UnsupportedAppUsage.java",
732 "dalvik/src/main/java/dalvik/system/VersionCodes.java",
733 "luni/src/main/java/libcore/api/CorePlatformApi.java",
734 "luni/src/main/java/libcore/api/IntraCoreApi.java",
735 ],
Neil Fuller86345d72019-04-25 09:15:32 +0100736}