blob: 317ef4b689b4892c2f71ec948e1826c135b0f665 [file] [log] [blame]
Colin Crossaf0b54c2017-09-27 17:22:32 -07001// Copyright (C) 2007 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15//
Neil Fuller77e3f3b2018-10-19 10:22:32 +010016// Definitions for building the Android core library and associated tests.
Colin Crossaf0b54c2017-09-27 17:22:32 -070017//
18
Neil Fuller77e3f3b2018-10-19 10:22:32 +010019// The Android core library provides low-level APIs for use by the rest of the
20// Android software stack. It is made up of various parts, some of which can be
21// found in libcore/ and other parts that can be found in various external/
22// directories. See the "core-system-modules" definition for the parts.
23
Neil Fullercf756882018-08-28 18:42:22 +010024// libcore has some sub-directories that follow a common structure:
25// e.g. dalvik, dom, harmony-tests, json, jsr166-tests, luni, libart, ojluni,
26// support, xml, xmlpull.
Colin Crossaf0b54c2017-09-27 17:22:32 -070027//
Neil Fullercf756882018-08-28 18:42:22 +010028// The structure of these is generally:
Colin Crossaf0b54c2017-09-27 17:22:32 -070029//
30// src/
31// main/ # To be shipped on every device.
32// java/ # Java source for library code.
Neil Fullercf756882018-08-28 18:42:22 +010033// native/ # C/C++ source for library code.
Colin Crossaf0b54c2017-09-27 17:22:32 -070034// resources/ # Support files.
35// test/ # Built only on demand, for testing.
36// java/ # Java source for tests.
Neil Fullercf756882018-08-28 18:42:22 +010037// native/ # C/C++ source for tests (rare).
Colin Crossaf0b54c2017-09-27 17:22:32 -070038// resources/ # Support files.
39//
Neil Fullercf756882018-08-28 18:42:22 +010040// All subdirectories are optional.
Colin Crossaf0b54c2017-09-27 17:22:32 -070041
42build = [
43 "openjdk_java_files.bp",
44 "non_openjdk_java_files.bp",
45]
46
47// The Java files and their associated resources.
48core_resource_dirs = [
49 "luni/src/main/java",
50 "ojluni/src/main/resources/",
51]
52
Neil Fuller866ed4a2018-09-06 12:05:46 +010053// The source files that go into core-oj.
54filegroup {
55 name: "core_oj_java_files",
56 srcs: [":openjdk_java_files"],
57}
58
Neil Fullere32e2e12019-02-26 11:48:30 +000059// OpenJDK source is not annotated with @hide so we need this separate
Neil Fuller866ed4a2018-09-06 12:05:46 +010060// filegroup for just the parts that contribute to the API.
61filegroup {
62 name: "core_oj_api_files",
63 srcs: [":openjdk_javadoc_files"],
64}
65
66// The source files that go into core-libart.
67filegroup {
68 name: "core_libart_java_files",
69 srcs: [
70 ":non_openjdk_java_files",
71 ":android_icu4j_src_files",
72 ],
73}
74
Neil Fullere32e2e12019-02-26 11:48:30 +000075// Some parts of libart are not annotated with @hide so we need this separate
Neil Fuller866ed4a2018-09-06 12:05:46 +010076// filegroup for just the parts that contribute to the API.
77filegroup {
78 name: "core_libart_api_files",
79 srcs: [
80 ":non_openjdk_javadoc_files",
81 ":android_icu4j_src_files",
82 ],
83}
84
Neil Fullere32e2e12019-02-26 11:48:30 +000085// The set of files for the core library that have been marked up with @hide
86// for the public SDK APIs. Used from frameworks/base/ to indicate the source
87// files for inclusion in the public SDK docs.
88filegroup {
89 name: "core_public_api_files",
90 srcs: [
91 ":core_oj_api_files",
92 ":core_libart_api_files",
93 ":conscrypt_public_api_files",
94 ],
95}
96
Neil Fuller77e3f3b2018-10-19 10:22:32 +010097// The set of files for the core library that have been marked up with @hide and
98// API-related annotations. Note that this includes the intra-core and
99// core-platform APIs as well as the public APIs.
100//
Neil Fullere32e2e12019-02-26 11:48:30 +0000101// Some source files in :core_oj_api_files and :openjdk_mmodule_extra_files are
102// annotated by applying annotations to the .annotated.java stubs files in
103// ojluni/annotated/mmodules and rather than in the original source. See the comments
104// in openjdk_java_files.bp for more details.
Neil Fuller866ed4a2018-09-06 12:05:46 +0100105filegroup {
106 name: "core_api_files",
107 srcs: [
Neil Fullerd129bc92018-09-26 11:12:58 +0100108 ":apache-xml_api_files",
Neil Fullera77f7102018-09-21 19:04:41 +0100109 ":bouncycastle_java_files",
Neil Fuller603e1a72018-09-25 11:55:41 +0100110 ":conscrypt_java_files",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100111 ":core_oj_api_files",
112 ":core_libart_api_files",
Neil Fuller641d5f92018-09-24 15:40:39 +0100113 ":okhttp_api_files",
Pete Gillinc9935b62018-09-25 14:42:40 +0100114 ":openjdk_mmodule_extra_files",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100115 ],
116}
117
Colin Crossaf0b54c2017-09-27 17:22:32 -0700118java_defaults {
119 name: "libcore_java_defaults",
120 javacflags: [
121 //"-Xlint:all",
122 //"-Xlint:-serial,-deprecation,-unchecked",
123 ],
124 dxflags: ["--core-library"],
Andreas Gampe66b31732018-02-20 09:22:16 -0800125 errorprone: {
126 javacflags: [
127 "-Xep:MissingOverride:OFF", // Ignore missing @Override.
Andreas Gampe24a20172018-06-13 11:28:45 -0700128 "-Xep:ConstantOverflow:WARN", // Known constant overflow in SplittableRandom
Andreas Gampe66b31732018-02-20 09:22:16 -0800129 ],
130 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700131}
132
133//
134// Build for the target (device).
135//
136
Victor Chang7fef4052018-09-25 14:12:03 +0100137// Rule generating resource lib for android_icu4j.
138// In the downstream branch master-icu-dev, the resource files are generated.
139// This rule can't be moved external/icu because soong enforces that no_standard_libs:true can only
140// be used in libcore/ or development/
141java_library {
142 name: "android_icu4j_resources_lib",
143 java_resources: [":android_icu4j_resources"],
144 no_standard_libs: true,
145 system_modules: "none",
146}
147
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100148// A target used to bootstrap compilation for the core library.
149// See core-all-system-modules for more details.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700150java_library {
151 name: "core-all",
152 defaults: ["libcore_java_defaults"],
153
154 srcs: [
Neil Fuller866ed4a2018-09-06 12:05:46 +0100155 ":core_oj_java_files",
156 ":core_libart_java_files",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700157 ":openjdk_lambda_stub_files",
158 ],
Colin Crossec80f4f2018-08-15 21:17:11 -0700159
160 no_standard_libs: true,
161 system_modules: "none",
Colin Crossa4d9fc42017-09-29 18:04:37 -0700162 openjdk9: {
163 srcs: ["luni/src/module/java/module-info.java"],
164 javacflags: ["--patch-module=java.base=."],
165 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700166
Colin Crossaf0b54c2017-09-27 17:22:32 -0700167 java_resource_dirs: core_resource_dirs,
Victor Chang7fef4052018-09-25 14:12:03 +0100168 static_libs: ["android_icu4j_resources_lib"],
Tobias Thiererde991232018-03-07 15:10:46 +0000169 java_version: "1.9",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700170
Colin Crossaf0b54c2017-09-27 17:22:32 -0700171 installable: false,
172}
173
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100174// A system modules definition for use by core library targets only. It only
175// contains the core-all jar, which contains the classes that end up in core-oj,
176// core-libart as well as the lambda stubs needed to compile Java lambda code.
177// It does not contain other parts of core library like conscrypt, bouncycastle,
178// etc. This system_modules definition is used to bootstrap compilation for
179// other parts of the core library like core-oj, core-libart, conscrypt,
180// bouncycastle, etc.
181//
182// If you want to compile against the entire core library implementation, for
183// example to build core library tests, see "core-system-modules" instead.
Colin Crossa4d9fc42017-09-29 18:04:37 -0700184java_system_modules {
185 name: "core-all-system-modules",
186 libs: ["core-all"],
187}
188
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100189// Contains the parts of core library associated with OpenJDK.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700190java_library {
191 name: "core-oj",
192 defaults: ["libcore_java_defaults"],
Colin Cross5b75cdd2018-06-27 11:00:13 -0700193 installable: true,
Colin Crossbb180be2017-10-09 14:54:53 -0700194 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700195
Neil Fuller866ed4a2018-09-06 12:05:46 +0100196 srcs: [":core_oj_java_files"],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700197 java_resource_dirs: core_resource_dirs,
Colin Crossec80f4f2018-08-15 21:17:11 -0700198
199 no_standard_libs: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700200 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700201 system_modules: "core-all-system-modules",
202 openjdk9: {
203 javacflags: ["--patch-module=java.base=."],
204 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700205
Pete Gillin7a7a6d22017-12-19 14:56:03 +0000206 jacoco: {
Pete Gillin27ca0582018-01-10 17:04:17 +0000207 exclude_filter: [
Pete Gillin3f59bad2018-01-30 11:20:29 +0000208 "java.lang.Class",
209 "java.lang.Long",
210 "java.lang.Number",
211 "java.lang.Object",
212 "java.lang.String",
213 "java.lang.invoke.MethodHandle",
214 "java.lang.ref.Reference",
215 "java.lang.reflect.Proxy",
Pete Gillinb1868ada2018-01-17 11:03:10 +0000216 "java.util.AbstractMap",
Pete Gillin3f59bad2018-01-30 11:20:29 +0000217 "java.util.HashMap",
218 "java.util.HashMap$Node",
Pete Gillinb1868ada2018-01-17 11:03:10 +0000219 "java.util.Map",
Pete Gillin7a7a6d22017-12-19 14:56:03 +0000220 ],
221 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700222
223 notice: "ojluni/NOTICE",
224
Colin Crossaf0b54c2017-09-27 17:22:32 -0700225}
226
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100227// Contains parts of core library not associated with OpenJDK. Contains not
228// just java.*, javax.* code but also android.icu.*, android.system.* and
229// various internal libcore.* packages.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700230java_library {
231 name: "core-libart",
232 defaults: ["libcore_java_defaults"],
Colin Cross5b75cdd2018-06-27 11:00:13 -0700233 installable: true,
Colin Crossbb180be2017-10-09 14:54:53 -0700234 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700235
Neil Fuller866ed4a2018-09-06 12:05:46 +0100236 srcs: [":core_libart_java_files"],
Victor Chang7fef4052018-09-25 14:12:03 +0100237 static_libs: ["android_icu4j_resources_lib"],
Tobias Thiererde991232018-03-07 15:10:46 +0000238 java_version: "1.9",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700239
Colin Crossec80f4f2018-08-15 21:17:11 -0700240 no_standard_libs: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700241 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700242 system_modules: "core-all-system-modules",
243 openjdk9: {
244 javacflags: ["--patch-module=java.base=."],
245 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700246
Pete Gillin80ebe872018-02-13 15:21:20 +0000247 jacoco: {
248 exclude_filter: [
249 "java.lang.DexCache",
250 "dalvik.system.ClassExt",
251 ],
252 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700253
254 required: [
Neil Fuller3b8c0552018-12-14 22:19:07 +0000255 // Device files put in /system.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700256 "tzdata",
Neil Fuller7a4d3db2018-11-20 19:43:10 +0000257 "tz_version",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700258 ],
Andreas Gampe9a1ba892019-04-24 12:35:40 -0700259 target: {
260 hostdex: {
261 required: [
262 // Files used to simulate the /system and runtime APEX dir
263 // structure on host.
264 "tzdata_host",
265 "tzdata_host_runtime_apex",
266 "tzlookup.xml_host_runtime_apex",
267 "tz_version_host",
268 "tz_version_host_runtime_apex",
269 ],
270 },
271 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700272}
273
Paul Duffin7bb8d232018-10-23 11:48:38 +0100274// Provided solely to contribute information about which hidden parts of the
275// core-oj API are used by apps.
276java_library {
277 name: "core-oj-hiddenapi",
278 defaults: ["libcore_java_defaults"],
279 compile_dex: true,
280
281 srcs: [":openjdk_hiddenapi_javadoc_files"],
282
283 no_standard_libs: true,
284 libs: ["core-all"],
285 system_modules: "core-all-system-modules",
286 openjdk9: {
287 javacflags: ["--patch-module=java.base=."],
288 },
289}
290
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100291//
292// Guaranteed unstripped versions of core-oj and core-libart.
293//
Colin Cross3c6c2e22017-10-18 13:24:52 -0700294// The build system may or may not strip the core-oj and core-libart jars,
295// but these will not be stripped. See b/24535627.
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100296//
297
Colin Cross3c6c2e22017-10-18 13:24:52 -0700298java_library {
299 name: "core-oj-testdex",
Colin Cross5b75cdd2018-06-27 11:00:13 -0700300 installable: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700301 static_libs: ["core-oj"],
302 no_standard_libs: true,
303 libs: ["core-all"],
304 system_modules: "core-all-system-modules",
305 dxflags: ["--core-library"],
Colin Cross485ed362017-12-05 17:24:22 -0800306 dex_preopt: {
307 enabled: false,
308 },
Tobias Thiererde991232018-03-07 15:10:46 +0000309 java_version: "1.9",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700310 notice: "ojluni/NOTICE",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700311}
312
313java_library {
314 name: "core-libart-testdex",
Colin Cross5b75cdd2018-06-27 11:00:13 -0700315 installable: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700316 static_libs: ["core-libart"],
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 },
Colin Cross3c6c2e22017-10-18 13:24:52 -0700324 notice: "ojluni/NOTICE",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700325}
326
Tobias Thierere0f8b312018-10-23 23:12:30 +0100327
328java_defaults {
329 name: "core_lambda_stubs_defaults",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700330 defaults: ["libcore_java_defaults"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100331 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700332
Colin Crossec80f4f2018-08-15 21:17:11 -0700333 no_standard_libs: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700334 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700335 system_modules: "core-all-system-modules",
336 openjdk9: {
337 javacflags: ["--patch-module=java.base=."],
338 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700339
340 notice: "ojluni/NOTICE",
341
342 installable: false,
343 include_srcs: true,
344}
Colin Crossa4d9fc42017-09-29 18:04:37 -0700345
Tobias Thierere0f8b312018-10-23 23:12:30 +0100346// Creates a jar that exists to satisfy javac when compiling source code that
347// contains lambdas. This contains all classes / methods required by javac
348// when generating invoke-dynamic lambda implementation code, even those that
349// are also in the public SDK API from API level 26 onwards.
350java_library {
351 name: "core-lambda-stubs",
352 defaults: ["core_lambda_stubs_defaults"],
353 srcs: [
354 ":openjdk_lambda_stub_files",
355 ":openjdk_lambda_duplicate_stub_files",
356 ],
357}
358
359// An alternative to core-lambda-stubs that omits openjdk_lambda_duplicate_stub_files
360// because those classes are also part of the core library public SDK API
361// (since API level 26).
362java_library {
363 name: "core-lambda-stubs-for-system-modules",
364 defaults: ["core_lambda_stubs_defaults"],
365 srcs: [
366 ":openjdk_lambda_stub_files",
367 ],
368}
369
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100370// A system modules definition containing the implementations for the various
371// parts that make up the core library.
372//
373// This system module is intended for use by tests that may need access to
374// core library internals. It should not be generally used; most of the
375// platform build should build against API stubs instead. See
376// "core-platform-api-stubs-system-modules", which is the default used by the
377// Android build.
378//
379// This module also includes lambda stubs for compiling source containing
380// Java lambdas.
Colin Crossa4d9fc42017-09-29 18:04:37 -0700381java_system_modules {
382 name: "core-system-modules",
383 libs: [
384 "core-oj",
385 "core-libart",
Neil Fullerb669ccb2018-10-04 23:10:27 +0100386 "bouncycastle",
387 "conscrypt",
388 "okhttp",
Neil Fuller05723a52018-10-19 10:55:05 +0100389 "apache-xml",
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100390 // This one is not on device but it's needed when javac compiles code
391 // containing lambdas.
Tobias Thierere0f8b312018-10-23 23:12:30 +0100392 "core-lambda-stubs-for-system-modules",
Colin Crossa4d9fc42017-09-29 18:04:37 -0700393 ],
394}
Colin Cross3c6c2e22017-10-18 13:24:52 -0700395
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100396// Builds libcore test rules
Colin Cross3c6c2e22017-10-18 13:24:52 -0700397java_library_static {
398 name: "core-test-rules",
399 hostdex: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700400 srcs: [
401 "dalvik/test-rules/src/main/**/*.java",
402 "test-rules/src/main/**/*.java",
403 ],
404 static_libs: ["junit"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100405
406 no_standard_libs: true,
407 libs: ["core-all"],
408 system_modules: "core-all-system-modules",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700409}
410
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100411// Builds the core-tests-support library used by various tests.
Colin Cross3c6c2e22017-10-18 13:24:52 -0700412java_library_static {
413 name: "core-tests-support",
414 hostdex: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700415 srcs: ["support/src/test/java/**/*.java"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100416
Neil Fuller4380ab22018-10-18 19:38:53 +0100417 no_framework_libs: true,
418 libs: ["junit"],
Colin Cross3c6c2e22017-10-18 13:24:52 -0700419 static_libs: [
Neil Fullerde8b0862018-10-12 21:53:31 +0100420 "bouncycastle-unbundled",
421 "bouncycastle-bcpkix-unbundled",
422 "bouncycastle-ocsp-unbundled",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700423 ],
424}
425
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100426// Builds the jsr166-tests library.
Colin Crossec80f4f2018-08-15 21:17:11 -0700427java_test {
Colin Cross3c6c2e22017-10-18 13:24:52 -0700428 name: "jsr166-tests",
429 srcs: ["jsr166-tests/src/test/java/**/*.java"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100430 no_standard_libs: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700431 libs: [
Neil Fuller4207c7f2018-10-10 14:01:40 +0100432 "core-all",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700433 "junit",
434 ],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100435 system_modules: "core-all-system-modules",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700436}
Nan Zhang65f27a32018-01-05 10:41:46 -0800437
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100438// Builds a library just containing files from luni/src/test/filesystems
439// for use in tests.
Colin Crossec80f4f2018-08-15 21:17:11 -0700440java_library {
441 name: "filesystemstest",
442 compile_dex: true,
443 srcs: ["luni/src/test/filesystems/src/**/*.java"],
444 java_resource_dirs: ["luni/src/test/filesystems/resources"],
445 no_framework_libs: true,
446 errorprone: {
447 javacflags: ["-Xep:MissingOverride:OFF"],
448 },
449}
450
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100451// Builds a library just containing files from luni/src/test/parameter_metadata
452// for use in tests.
Colin Crossec80f4f2018-08-15 21:17:11 -0700453java_library {
454 name: "parameter-metadata-test",
455 compile_dex: true,
456 srcs: ["luni/src/test/parameter_metadata/src/**/*.java"],
457 no_framework_libs: true,
458 javacflags: ["-parameters"],
459 errorprone: {
460 javacflags: ["-Xep:MissingOverride:OFF"],
461 },
462}
463
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100464// Builds the core-tests library.
Colin Crossec80f4f2018-08-15 21:17:11 -0700465java_test {
466 name: "core-tests",
467 defaults: ["libcore_java_defaults"],
468 hostdex: true,
469 srcs: [
470 "dalvik/src/test/java/**/*.java",
471 "dalvik/test-rules/src/test/java/**/*.java",
472 "dom/src/test/java/**/*.java",
473 "harmony-tests/src/test/java/**/*.java",
474 "json/src/test/java/**/*.java",
475 "luni/src/test/java/**/*.java",
Paul Duffin4ba14532019-03-21 10:32:41 +0000476 "test-rules/src/test/java/**/*.java",
Colin Crossec80f4f2018-08-15 21:17:11 -0700477 "xml/src/test/java/**/*.java",
478 ],
479 exclude_srcs: [
480 "luni/src/test/java/libcore/java/util/zip/Zip64Test.java",
481 "luni/src/test/java/libcore/java/util/zip/Zip64FileTest.java",
482 ],
483
484 java_resource_dirs: [
485 "*/src/test/java",
486 "*/src/test/resources",
487 ],
488 exclude_java_resource_dirs: [
489 "ojluni/src/test/java",
490 "ojluni/src/test/resources",
491 ],
492
493 java_resources: [
494 ":filesystemstest",
495 ":parameter-metadata-test",
496 ],
497
Neil Fuller4207c7f2018-10-10 14:01:40 +0100498 no_standard_libs: true,
499 libs: [
500 "core-all",
501 "okhttp",
502 "bouncycastle",
503 ],
504 system_modules: "core-all-system-modules",
505
Colin Crossec80f4f2018-08-15 21:17:11 -0700506 static_libs: [
507 "archive-patcher",
508 "core-test-rules",
509 "core-tests-support",
510 "junit-params",
511 "mockftpserver",
512 "mockito-target",
513 "mockwebserver",
514 "nist-pkix-tests",
515 "slf4j-jdk14",
516 "sqlite-jdbc",
517 "tzdata-testing",
Paul Duffina4df2372018-12-10 15:48:01 +0000518 "truth-prebuilt",
Colin Crossec80f4f2018-08-15 21:17:11 -0700519 ],
520
521 errorprone: {
522 javacflags: [
523 "-Xep:TryFailThrowable:ERROR",
524 "-Xep:ComparisonOutOfRange:ERROR",
525 ],
526 },
Simran Basi3be01e02018-08-21 17:53:49 -0700527
528 test_config: "AndroidTest-core-tests.xml",
Colin Crossec80f4f2018-08-15 21:17:11 -0700529}
530
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100531// Builds the core-ojtests library that contains test code from OpenJDK.
Colin Crossec80f4f2018-08-15 21:17:11 -0700532java_test {
533 name: "core-ojtests",
534 defaults: ["libcore_java_defaults"],
535 hostdex: true,
536
537 srcs: [
538 "ojluni/src/test/java/**/*.java",
539 ],
540 java_resource_dirs: [
541 "ojluni/src/test/java",
542 "ojluni/src/test/resources",
543 ],
Neil Fullerb669ccb2018-10-04 23:10:27 +0100544
Neil Fuller4207c7f2018-10-10 14:01:40 +0100545 no_standard_libs: true,
546 libs: [
547 "core-all",
548 "okhttp",
549 "bouncycastle",
550 ],
551 system_modules: "core-all-system-modules",
552
Colin Crossec80f4f2018-08-15 21:17:11 -0700553 static_libs: ["testng"],
554
555 // ojluni/src/test/java/util/stream/{bootlib,boottest}
556 // contains tests that are in packages from java.base;
557 // By default, OpenJDK 9's javac will only compile such
558 // code if it's declared to also be in java.base at
559 // compile time.
560 //
561 // For now, we use --patch-module to put all sources
562 // and dependencies from this make target into java.base;
563 // other source directories in this make target are in
564 // packages not from java.base; if this becomes a problem
565 // in future, this could be addressed eg. by splitting
566 // boot{lib,test} out into a separate make target,
567 // deleting those tests or moving them to a different
568 // package.
569 patch_module: "java.base",
570}
571
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100572// Builds the core-ojtests-public library. Excludes any private API tests.
573// Like core-ojtests but smaller.
Colin Crossec80f4f2018-08-15 21:17:11 -0700574java_test {
575 name: "core-ojtests-public",
576 defaults: ["libcore_java_defaults"],
577 srcs: [
578 "ojluni/src/test/java/**/*.java",
579 ],
580 // Filter out the following:
581 // 1.) DeserializeMethodTest and SerializedLambdaTest, because they depends on stub classes
582 // and won't actually run, and
583 // 2.) util/stream/boot*. Those directories contain classes in the package java.util.stream;
584 // excluding them means we don't need patch_module: "java.base"
585 exclude_srcs: [
586 "**/DeserializeMethodTest.java",
587 "**/SerializedLambdaTest.java",
588 "ojluni/src/test/java/util/stream/boot*/**/*",
589 ],
590 java_resource_dirs: [
591 "ojluni/src/test/java",
592 "ojluni/src/test/resources",
593 // Include source code as part of JAR
594 "ojluni/src/test/dist",
595 ],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100596
597 no_standard_libs: true,
598 libs: [
599 "core-all",
600 "bouncycastle",
601 "okhttp",
602 "testng",
603 ],
604 system_modules: "core-all-system-modules",
Colin Crossec80f4f2018-08-15 21:17:11 -0700605}
606
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100607// Exports annotated stubs source files in ojluni/annotations/sdk to make them
608// available to metalava. Used for nullability annotations in OpenJDK source.
Pete Gillin7db7faa2018-07-31 13:29:35 +0100609droiddoc_exported_dir {
Pete Gillin0728b742018-09-17 15:41:45 +0100610 name: "ojluni-annotated-sdk-stubs",
611 path: "ojluni/annotations/sdk",
Pete Gillin7db7faa2018-07-31 13:29:35 +0100612}
Pete Gillin600c7cf2018-08-16 19:28:38 +0100613droiddoc_exported_dir {
614 name: "ojluni-annotated-nullability-stubs",
615 path: "ojluni/annotations/sdk/nullability",
616}
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100617
618// Exports annotated stubs source files in ojluni/annotations/mmodules to make
619// them available to metalava. Used for core platform API and intra-code API
620// annotations in OpenJDK source.
Pete Gillinc9935b62018-09-25 14:42:40 +0100621droiddoc_exported_dir {
622 name: "ojluni-annotated-mmodule-stubs",
623 path: "ojluni/annotations/mmodule",
624}
Pete Gillin7db7faa2018-07-31 13:29:35 +0100625
Neil Fuller6f16b462018-09-04 15:40:39 +0100626// A file containing the list of tags that are "known" to us from the OpenJdk
627// source code and so should not cause an error or warning.
Nan Zhangd55722b2018-02-27 15:08:20 -0800628filegroup {
629 name: "known-oj-tags",
630 srcs: [
631 "known_oj_tags.txt",
632 ],
633}
Nan Zhang602fc0e2018-03-22 16:14:22 -0700634
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100635// Generates stubs for the parts of the public SDK API provided by the core
636// library.
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000637//
638// Only for use by core.current.stubs target below.
Nan Zhangf0207602018-09-10 18:57:38 -0700639droidstubs {
640 name: "core-current-stubs-gen",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100641 srcs: [":core_api_files"],
Tobias Thiererde991232018-03-07 15:10:46 +0000642 java_version: "1.9",
Nan Zhang602fc0e2018-03-22 16:14:22 -0700643 installable: false,
644 no_framework_libs: true,
Neil Fullerbe9258e2018-09-24 17:11:27 +0100645 args: " --exclude-annotations "
646 + "--hide-annotation libcore.api.Hide",
647 merge_inclusion_annotations_dirs: ["ojluni-annotated-mmodule-stubs"],
Nan Zhang602fc0e2018-03-22 16:14:22 -0700648}
649
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000650// A stubs target containing the parts of the public SDK API provided by the
651// core library.
652//
653// Don't use this directly, use "sdk_version: core_current".
654java_library {
655 name: "core.current.stubs",
656 srcs: [":core-current-stubs-gen"],
657 errorprone: {
658 javacflags: [
659 "-Xep:MissingOverride:OFF",
660 ],
661 },
662 openjdk9: {
663 javacflags: ["--patch-module=java.base=."],
664 },
665 no_standard_libs: true,
666 system_modules: "none",
Paul Duffin65641182019-04-08 10:24:23 +0100667
668 dist: {
669 targets: [
670 "sdk",
671 "win_sdk",
672 ],
673 },
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000674}
675
Pete Gillin600c7cf2018-08-16 19:28:38 +0100676// Target for validating nullability annotations for correctness and
677// completeness. To check that there are no nullability errors:
678// make core-current-stubs-nullability-validation
679// To check that there are only the expected nullability warnings:
680// make core-current-stubs-nullability-validation-check-nullability-warnings
681// To update the the list of known expected nullability warnings:
682// make core-current-stubs-nullability-validation-update-nullability-warnings
683droidstubs {
684 name: "core-current-stubs-nullability-validation",
685 srcs: [":core_api_files"],
686 installable: false,
687 no_framework_libs: true,
688 annotations_enabled: true,
689 args: "--hide-annotation libcore.api.Hide " +
690 "--validate-nullability-from-merged-stubs ",
691 merge_inclusion_annotations_dirs: ["ojluni-annotated-mmodule-stubs"],
692 merge_annotations_dirs: [
693 "metalava-manual",
694 // N.B. Stubs in this filegroup will be validated:
695 "ojluni-annotated-nullability-stubs",
696 ],
Pete Gillinc5f179b2018-11-14 18:42:19 +0000697 // The list of classes which have nullability annotations included in the source.
698 // (This is in addition to those which have annotations in the merged stubs.)
699 validate_nullability_from_list: "nullability_annotated_classes.txt",
Pete Gillin600c7cf2018-08-16 19:28:38 +0100700 // The expected set of warnings about missing annotations:
701 check_nullability_warnings: "nullability_warnings.txt",
702}
703
Neil Fullere784ef22018-11-16 15:54:30 +0000704// A host library containing time zone related classes. Used for
705// host-side tools and tests that have to deal with Android
706// time zone data.
707java_library_host {
708 name: "timezone-host",
709 srcs: [":timezone_host_files"],
710}
Andrei Onea24892e22019-04-16 16:48:37 +0100711
712// The source files that contain the UnsupportedAppUsage annotation and its dependencies.
713filegroup {
714 name: "unsupportedappusage_annotation_files",
715 srcs: [
716 "dalvik/src/main/java/dalvik/annotation/compat/UnsupportedAppUsage.java",
717 "dalvik/src/main/java/dalvik/system/VersionCodes.java",
718 "luni/src/main/java/libcore/api/CorePlatformApi.java",
719 "luni/src/main/java/libcore/api/IntraCoreApi.java",
720 ],
721}