blob: 7a939cc07e1b54ff55faba8e2ab8676650038967 [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.
Tobias Thierer79eea262019-08-01 14:05:11 +010048filegroup {
49 name: "core-luni-resources",
50 visibility: [
51 "//libcore:__subpackages__",
52 ],
53 path: "luni/src/main/java/",
54 srcs: [
Tobias Thiereraef55ca2019-08-28 22:41:57 +000055 "luni/src/main/java/libcore/net/android.mime.types",
Tobias Thierer79eea262019-08-01 14:05:11 +010056 "luni/src/main/java/java/util/logging/logging.properties",
57 "luni/src/main/java/java/security/security.properties",
58 ],
59}
60
61filegroup {
62 name: "core-ojluni-resources",
63 visibility: [
64 "//libcore:__subpackages__",
65 ],
66 path: "ojluni/src/main/resources/",
67 srcs: [
68 "ojluni/src/main/resources/**/*",
69 ],
70}
71
72core_resources = [
73 ":core-luni-resources",
74 ":core-ojluni-resources",
Tobias Thiereraef55ca2019-08-28 22:41:57 +000075 ":debian.mime.types",
Colin Crossaf0b54c2017-09-27 17:22:32 -070076]
77
Neil Fuller866ed4a2018-09-06 12:05:46 +010078// The source files that go into core-oj.
79filegroup {
80 name: "core_oj_java_files",
Paul Duffinc241d6a2019-06-25 15:40:29 +010081 visibility: [
82 "//libcore:__subpackages__",
83 ],
Neil Fuller866ed4a2018-09-06 12:05:46 +010084 srcs: [":openjdk_java_files"],
85}
86
Neil Fullere32e2e12019-02-26 11:48:30 +000087// OpenJDK source is not annotated with @hide so we need this separate
Neil Fuller866ed4a2018-09-06 12:05:46 +010088// filegroup for just the parts that contribute to the API.
89filegroup {
90 name: "core_oj_api_files",
91 srcs: [":openjdk_javadoc_files"],
92}
93
94// The source files that go into core-libart.
95filegroup {
96 name: "core_libart_java_files",
Paul Duffinc241d6a2019-06-25 15:40:29 +010097 visibility: [
98 "//libcore:__subpackages__",
99 ],
Neil Fuller866ed4a2018-09-06 12:05:46 +0100100 srcs: [
101 ":non_openjdk_java_files",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100102 ],
103}
104
Neil Fullere32e2e12019-02-26 11:48:30 +0000105// Some parts of libart are not annotated with @hide so we need this separate
Neil Fuller866ed4a2018-09-06 12:05:46 +0100106// filegroup for just the parts that contribute to the API.
107filegroup {
108 name: "core_libart_api_files",
109 srcs: [
110 ":non_openjdk_javadoc_files",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100111 ],
112}
113
Neil Fullere32e2e12019-02-26 11:48:30 +0000114// The set of files for the core library that have been marked up with @hide
115// for the public SDK APIs. Used from frameworks/base/ to indicate the source
116// files for inclusion in the public SDK docs.
117filegroup {
118 name: "core_public_api_files",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100119 visibility: [
120 "//frameworks/base",
121 ],
Neil Fullere32e2e12019-02-26 11:48:30 +0000122 srcs: [
Victor Changcad47af2019-08-06 16:33:38 +0100123 ":android_icu4j_src_files",
Neil Fullere32e2e12019-02-26 11:48:30 +0000124 ":core_oj_api_files",
125 ":core_libart_api_files",
126 ":conscrypt_public_api_files",
127 ],
128}
129
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100130// The set of files for the core library that have been marked up with @hide and
131// API-related annotations. Note that this includes the intra-core and
132// core-platform APIs as well as the public APIs.
133//
Neil Fullere32e2e12019-02-26 11:48:30 +0000134// Some source files in :core_oj_api_files and :openjdk_mmodule_extra_files are
135// annotated by applying annotations to the .annotated.java stubs files in
136// ojluni/annotated/mmodules and rather than in the original source. See the comments
137// in openjdk_java_files.bp for more details.
Neil Fuller866ed4a2018-09-06 12:05:46 +0100138filegroup {
139 name: "core_api_files",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100140 visibility: [
141 "//libcore:__subpackages__",
142 ],
Neil Fuller866ed4a2018-09-06 12:05:46 +0100143 srcs: [
Victor Changcad47af2019-08-06 16:33:38 +0100144 ":android_icu4j_src_files",
Neil Fullerd129bc92018-09-26 11:12:58 +0100145 ":apache-xml_api_files",
Neil Fullera77f7102018-09-21 19:04:41 +0100146 ":bouncycastle_java_files",
Neil Fuller603e1a72018-09-25 11:55:41 +0100147 ":conscrypt_java_files",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100148 ":core_oj_api_files",
149 ":core_libart_api_files",
Neil Fuller641d5f92018-09-24 15:40:39 +0100150 ":okhttp_api_files",
Pete Gillinc9935b62018-09-25 14:42:40 +0100151 ":openjdk_mmodule_extra_files",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100152 ],
153}
154
Colin Crossaf0b54c2017-09-27 17:22:32 -0700155java_defaults {
156 name: "libcore_java_defaults",
157 javacflags: [
158 //"-Xlint:all",
159 //"-Xlint:-serial,-deprecation,-unchecked",
160 ],
161 dxflags: ["--core-library"],
Andreas Gampe66b31732018-02-20 09:22:16 -0800162 errorprone: {
163 javacflags: [
Paul Duffinc31f6bb2019-05-15 12:32:44 +0100164 "-Xep:MissingOverride:OFF", // Ignore missing @Override.
165 "-Xep:ConstantOverflow:WARN", // Known constant overflow in SplittableRandom
Andreas Gampe66b31732018-02-20 09:22:16 -0800166 ],
167 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700168}
169
170//
171// Build for the target (device).
172//
173
Tobias Thierercf66bfd2019-05-29 13:18:25 +0100174// Visibility of core-all* build modules; we restrict visibility of core-all deliberately to
175// a small set of build modules that the core library team control. See core-all-system-modules
176// for more details.
177core_all_visibility = [
178 "//external/apache-harmony:__subpackages__",
179 "//external/apache-xml",
180 "//external/bouncycastle",
181 "//external/conscrypt",
182 "//external/icu/android_icu4j",
183 "//external/okhttp",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100184 "//libcore:__subpackages__",
Tobias Thierercf66bfd2019-05-29 13:18:25 +0100185]
186
Tobias Thierer52331642019-05-29 12:11:39 +0000187// A target used to bootstrap compilation for the core library.
188// See core-all-system-modules for more details.
189java_library {
190 name: "core-all",
Tobias Thierercf66bfd2019-05-29 13:18:25 +0100191 visibility: core_all_visibility,
Tobias Thierer52331642019-05-29 12:11:39 +0000192 defaults: ["libcore_java_defaults"],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700193
194 srcs: [
Victor Changcad47af2019-08-06 16:33:38 +0100195 ":android_icu4j_src_files",
Neil Fuller866ed4a2018-09-06 12:05:46 +0100196 ":core_oj_java_files",
197 ":core_libart_java_files",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700198 ":openjdk_lambda_stub_files",
Pete Gillin54035812019-05-08 15:09:39 +0100199 ":openjdk_generated_annotation_stub_files",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700200 ],
Colin Crossec80f4f2018-08-15 21:17:11 -0700201
Paul Duffin83c25382019-06-07 14:10:49 +0100202 sdk_version: "none",
Colin Crossec80f4f2018-08-15 21:17:11 -0700203 system_modules: "none",
Colin Crossa4d9fc42017-09-29 18:04:37 -0700204 openjdk9: {
205 srcs: ["luni/src/module/java/module-info.java"],
206 javacflags: ["--patch-module=java.base=."],
207 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700208
Tobias Thierer79eea262019-08-01 14:05:11 +0100209 java_resources: core_resources,
Victor Chang7fef4052018-09-25 14:12:03 +0100210 static_libs: ["android_icu4j_resources_lib"],
Tobias Thiererde991232018-03-07 15:10:46 +0000211 java_version: "1.9",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700212
Colin Crossaf0b54c2017-09-27 17:22:32 -0700213 installable: false,
atrost98ec08d2019-08-05 12:23:41 +0100214
215 plugins: ["compat-changeid-annotation-processor"],
216}
217
218platform_compat_config {
219 name: "libcore-platform-compat-config",
atrost98ec08d2019-08-05 12:23:41 +0100220 src: ":core-all",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700221}
222
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100223// A system modules definition for use by core library targets only. It only
224// contains the core-all jar, which contains the classes that end up in core-oj,
225// core-libart as well as the lambda stubs needed to compile Java lambda code.
226// It does not contain other parts of core library like conscrypt, bouncycastle,
227// etc. This system_modules definition is used to bootstrap compilation for
Victor Changcad47af2019-08-06 16:33:38 +0100228// other parts of the core library like core-oj, core-libart, core-icu4j, conscrypt,
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100229// bouncycastle, etc.
230//
231// If you want to compile against the entire core library implementation, for
232// example to build core library tests, see "core-system-modules" instead.
Colin Crossa4d9fc42017-09-29 18:04:37 -0700233java_system_modules {
234 name: "core-all-system-modules",
Tobias Thierercf66bfd2019-05-29 13:18:25 +0100235 visibility: core_all_visibility,
Colin Crossa4d9fc42017-09-29 18:04:37 -0700236 libs: ["core-all"],
237}
238
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100239// Contains the parts of core library associated with OpenJDK.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700240java_library {
241 name: "core-oj",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000242 visibility: [
243 "//art/build/apex",
244 "//external/wycheproof",
Paul Duffin94f70232019-05-22 16:22:29 +0100245 "//libcore/benchmarks",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000246 ],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700247 defaults: ["libcore_java_defaults"],
Colin Cross5b75cdd2018-06-27 11:00:13 -0700248 installable: true,
Colin Crossbb180be2017-10-09 14:54:53 -0700249 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700250
Neil Fuller866ed4a2018-09-06 12:05:46 +0100251 srcs: [":core_oj_java_files"],
Tobias Thierer79eea262019-08-01 14:05:11 +0100252 java_resources: core_resources,
Colin Crossec80f4f2018-08-15 21:17:11 -0700253
Paul Duffin83c25382019-06-07 14:10:49 +0100254 sdk_version: "none",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700255 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700256 system_modules: "core-all-system-modules",
257 openjdk9: {
258 javacflags: ["--patch-module=java.base=."],
259 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700260
Pete Gillin7a7a6d22017-12-19 14:56:03 +0000261 jacoco: {
Pete Gillin27ca0582018-01-10 17:04:17 +0000262 exclude_filter: [
Pete Gillin3f59bad2018-01-30 11:20:29 +0000263 "java.lang.Class",
264 "java.lang.Long",
265 "java.lang.Number",
266 "java.lang.Object",
267 "java.lang.String",
268 "java.lang.invoke.MethodHandle",
269 "java.lang.ref.Reference",
270 "java.lang.reflect.Proxy",
Pete Gillinb1868ada2018-01-17 11:03:10 +0000271 "java.util.AbstractMap",
Pete Gillin3f59bad2018-01-30 11:20:29 +0000272 "java.util.HashMap",
273 "java.util.HashMap$Node",
Pete Gillinb1868ada2018-01-17 11:03:10 +0000274 "java.util.Map",
Pete Gillin7a7a6d22017-12-19 14:56:03 +0000275 ],
276 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700277
278 notice: "ojluni/NOTICE",
279
Colin Crossaf0b54c2017-09-27 17:22:32 -0700280}
281
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100282// Contains parts of core library not associated with OpenJDK. Contains not
Victor Changcad47af2019-08-06 16:33:38 +0100283// just java.*, javax.* code but also android.system.* and various internal
284// libcore.* packages.
Colin Crossaf0b54c2017-09-27 17:22:32 -0700285java_library {
286 name: "core-libart",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000287 visibility: [
288 "//art/build/apex",
289 "//external/robolectric-shadows",
290 "//external/wycheproof",
Paul Duffin94f70232019-05-22 16:22:29 +0100291 "//libcore/benchmarks",
Colin Crossf0ef6252019-05-31 08:26:47 -0700292 "//frameworks/layoutlib",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000293 ],
Colin Crossaf0b54c2017-09-27 17:22:32 -0700294 defaults: ["libcore_java_defaults"],
Colin Cross5b75cdd2018-06-27 11:00:13 -0700295 installable: true,
Colin Crossbb180be2017-10-09 14:54:53 -0700296 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700297
Neil Fuller866ed4a2018-09-06 12:05:46 +0100298 srcs: [":core_libart_java_files"],
Tobias Thiererde991232018-03-07 15:10:46 +0000299 java_version: "1.9",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700300
Paul Duffin83c25382019-06-07 14:10:49 +0100301 sdk_version: "none",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700302 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700303 system_modules: "core-all-system-modules",
304 openjdk9: {
305 javacflags: ["--patch-module=java.base=."],
306 },
Colin Crossec80f4f2018-08-15 21:17:11 -0700307
Pete Gillin80ebe872018-02-13 15:21:20 +0000308 jacoco: {
309 exclude_filter: [
310 "java.lang.DexCache",
311 "dalvik.system.ClassExt",
312 ],
313 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700314
Andreas Gampe9a1ba892019-04-24 12:35:40 -0700315 target: {
316 hostdex: {
317 required: [
Neil Fuller53c5f032019-06-05 13:47:39 +0100318 // Files used to simulate the /system, runtime APEX and tzdata
319 // APEX dir structure on host.
320 "icu_tzdata.dat_host_tzdata_apex",
Andreas Gampe9a1ba892019-04-24 12:35:40 -0700321 "tzdata_host",
Neil Fuller53c5f032019-06-05 13:47:39 +0100322 "tzdata_host_tzdata_apex",
Neil Fuller53c5f032019-06-05 13:47:39 +0100323 "tzlookup.xml_host_tzdata_apex",
Andreas Gampe9a1ba892019-04-24 12:35:40 -0700324 "tz_version_host",
Neil Fuller53c5f032019-06-05 13:47:39 +0100325 "tz_version_host_tzdata_apex",
Andreas Gampe9a1ba892019-04-24 12:35:40 -0700326 ],
327 },
328 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700329}
330
Victor Changb28d3f82019-08-09 16:24:46 +0100331// A separated core library that contains ICU4J because ICU4J will be in a different APEX module,
332// not in Runtime module.
Victor Changcad47af2019-08-06 16:33:38 +0100333java_library {
334 name: "core-icu4j",
335 visibility: [
336 "//art/build/apex",
337 "//external/robolectric-shadows",
338 "//frameworks/layoutlib",
339 ],
340 defaults: ["libcore_java_defaults"],
341 installable: true,
342 hostdex: true,
343
344 srcs: [":android_icu4j_src_files"],
Victor Changb28d3f82019-08-09 16:24:46 +0100345 libs: ["libcore-unsupportedappusage-annotation"],
346 static_libs: ["android_icu4j_resources_lib_sdk_core_current"],
Victor Changcad47af2019-08-06 16:33:38 +0100347
Victor Changb28d3f82019-08-09 16:24:46 +0100348 // We use core_current when compiling core-icu4j but we could depend on core.intra.stubs
349 // (a superset of core_current) instead if there were internal APIs we wanted to use from ICU4J.
350 // It is important that core-icu4j is restricted to only use APIs that core-libart and core-oj
351 // consider stable since they are in a different APEX module that can be updated independently.
352 sdk_version: "core_current",
Victor Changcad47af2019-08-06 16:33:38 +0100353 openjdk9: {
354 javacflags: ["--patch-module=java.base=."],
355 },
356}
357
Paul Duffin7bb8d232018-10-23 11:48:38 +0100358// Provided solely to contribute information about which hidden parts of the
359// core-oj API are used by apps.
Paul Duffinc6bf27b2019-05-15 14:41:00 +0100360//
361// The build system determines that this library provides hiddenapi information
362// for the core-oj bootjar because its name is of the form <x>-hiddenapi, where
363// <x> is the name of a boot jar. That triggers the generation of a flags.csv
364// file which encapsulates information extracted from the UnsupportedAppUsage
365// annotations in the dex. The information from that file is then encoded into
366// the core-oj file.
367//
368// Usually, e.g. for core-libart, the UnsupportedAppUsage annotations are
369// added to the source that is compiled directly into the bootjar and the build
370// system extracts the information about UnsupportedAppUsage directly from
371// there.
372//
373// This approach of having separate annotated source and a separate build
374// target was taken for ojluni to avoid having to maintain local patches in the
375// ojluni source for UnsupportedAppUsage annotations as that would make it more
376// difficult to pull down changes from upstream.
377//
Paul Duffin7bb8d232018-10-23 11:48:38 +0100378java_library {
379 name: "core-oj-hiddenapi",
Paul Duffin48ac7b62019-03-28 14:28:06 +0000380 // Do not allow this to be accessed from outside this directory.
381 visibility: ["//visibility:private"],
Paul Duffin7bb8d232018-10-23 11:48:38 +0100382 defaults: ["libcore_java_defaults"],
383 compile_dex: true,
384
385 srcs: [":openjdk_hiddenapi_javadoc_files"],
386
Paul Duffin83c25382019-06-07 14:10:49 +0100387 sdk_version: "none",
Paul Duffin7bb8d232018-10-23 11:48:38 +0100388 libs: ["core-all"],
389 system_modules: "core-all-system-modules",
390 openjdk9: {
391 javacflags: ["--patch-module=java.base=."],
392 },
393}
394
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100395//
Victor Changcad47af2019-08-06 16:33:38 +0100396// Guaranteed unstripped versions of core-icu4j, core-oj and core-libart.
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100397//
Colin Cross3c6c2e22017-10-18 13:24:52 -0700398// The build system may or may not strip the core-oj and core-libart jars,
399// but these will not be stripped. See b/24535627.
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100400//
401
Colin Cross3c6c2e22017-10-18 13:24:52 -0700402java_library {
403 name: "core-oj-testdex",
Colin Cross5b75cdd2018-06-27 11:00:13 -0700404 installable: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700405 static_libs: ["core-oj"],
Paul Duffin83c25382019-06-07 14:10:49 +0100406 sdk_version: "none",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700407 libs: ["core-all"],
408 system_modules: "core-all-system-modules",
409 dxflags: ["--core-library"],
Colin Cross485ed362017-12-05 17:24:22 -0800410 dex_preopt: {
411 enabled: false,
412 },
Tobias Thiererde991232018-03-07 15:10:46 +0000413 java_version: "1.9",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700414 notice: "ojluni/NOTICE",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700415}
416
417java_library {
418 name: "core-libart-testdex",
Colin Cross5b75cdd2018-06-27 11:00:13 -0700419 installable: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700420 static_libs: ["core-libart"],
Paul Duffin83c25382019-06-07 14:10:49 +0100421 sdk_version: "none",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700422 libs: ["core-all"],
423 system_modules: "core-all-system-modules",
424 dxflags: ["--core-library"],
Colin Cross485ed362017-12-05 17:24:22 -0800425 dex_preopt: {
426 enabled: false,
427 },
Colin Cross3c6c2e22017-10-18 13:24:52 -0700428 notice: "ojluni/NOTICE",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700429}
430
Victor Changcad47af2019-08-06 16:33:38 +0100431java_library {
432 name: "core-icu4j-testdex",
433 installable: true,
434 static_libs: ["core-icu4j"],
435 sdk_version: "none",
436 libs: ["core-all"],
437 system_modules: "core-all-system-modules",
438 dxflags: ["--core-library"],
439 dex_preopt: {
440 enabled: false,
441 },
442}
443
Tobias Thierere0f8b312018-10-23 23:12:30 +0100444java_defaults {
445 name: "core_lambda_stubs_defaults",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700446 defaults: ["libcore_java_defaults"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100447 hostdex: true,
Colin Crossaf0b54c2017-09-27 17:22:32 -0700448
Paul Duffin83c25382019-06-07 14:10:49 +0100449 sdk_version: "none",
Colin Crossaf0b54c2017-09-27 17:22:32 -0700450 libs: ["core-all"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700451 system_modules: "core-all-system-modules",
452 openjdk9: {
453 javacflags: ["--patch-module=java.base=."],
454 },
Colin Crossaf0b54c2017-09-27 17:22:32 -0700455
456 notice: "ojluni/NOTICE",
457
458 installable: false,
459 include_srcs: true,
460}
Colin Crossa4d9fc42017-09-29 18:04:37 -0700461
Tobias Thierere0f8b312018-10-23 23:12:30 +0100462// Creates a jar that exists to satisfy javac when compiling source code that
463// contains lambdas. This contains all classes / methods required by javac
464// when generating invoke-dynamic lambda implementation code, even those that
465// are also in the public SDK API from API level 26 onwards.
466java_library {
467 name: "core-lambda-stubs",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100468 visibility: ["//visibility:public"],
Tobias Thierere0f8b312018-10-23 23:12:30 +0100469 defaults: ["core_lambda_stubs_defaults"],
470 srcs: [
471 ":openjdk_lambda_stub_files",
472 ":openjdk_lambda_duplicate_stub_files",
473 ],
474}
475
476// An alternative to core-lambda-stubs that omits openjdk_lambda_duplicate_stub_files
477// because those classes are also part of the core library public SDK API
478// (since API level 26).
479java_library {
480 name: "core-lambda-stubs-for-system-modules",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100481 visibility: [
482 "//libcore/mmodules/core_platform_api",
483 ],
Tobias Thierere0f8b312018-10-23 23:12:30 +0100484 defaults: ["core_lambda_stubs_defaults"],
485 srcs: [
486 ":openjdk_lambda_stub_files",
487 ],
488}
489
Pete Gillin54035812019-05-08 15:09:39 +0100490// Creates a jar that exists to satisfy javac when compiling source code that
491// contains @Generated annotations, which are produced by some code generation
492// tools (notably dagger) but aren't part of the Android API.
493// See http://b/123891440.
494java_library {
495 name: "core-generated-annotation-stubs",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100496 visibility: [
497 "//libcore/mmodules/core_platform_api",
498 ],
Pete Gillin54035812019-05-08 15:09:39 +0100499 defaults: ["libcore_java_defaults"],
500 srcs: [
501 ":openjdk_generated_annotation_stub_files",
502 ],
503 hostdex: true,
Paul Duffin83c25382019-06-07 14:10:49 +0100504 sdk_version: "none",
Pete Gillin54035812019-05-08 15:09:39 +0100505 libs: ["core-all"],
506 system_modules: "core-all-system-modules",
507 openjdk9: {
508 javacflags: ["--patch-module=java.base=."],
509 },
510 notice: "ojluni/NOTICE",
511 installable: false,
512 include_srcs: true,
513}
514
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100515// A system modules definition containing the implementations for the various
516// parts that make up the core library.
517//
518// This system module is intended for use by tests that may need access to
519// core library internals. It should not be generally used; most of the
520// platform build should build against API stubs instead. See
521// "core-platform-api-stubs-system-modules", which is the default used by the
522// Android build.
523//
524// This module also includes lambda stubs for compiling source containing
525// Java lambdas.
Colin Crossa4d9fc42017-09-29 18:04:37 -0700526java_system_modules {
527 name: "core-system-modules",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100528 visibility: ["//visibility:public"],
Colin Crossa4d9fc42017-09-29 18:04:37 -0700529 libs: [
530 "core-oj",
531 "core-libart",
Victor Changcad47af2019-08-06 16:33:38 +0100532 "core-icu4j",
Neil Fullerb669ccb2018-10-04 23:10:27 +0100533 "bouncycastle",
534 "conscrypt",
535 "okhttp",
Neil Fuller05723a52018-10-19 10:55:05 +0100536 "apache-xml",
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100537 // This one is not on device but it's needed when javac compiles code
538 // containing lambdas.
Tobias Thierere0f8b312018-10-23 23:12:30 +0100539 "core-lambda-stubs-for-system-modules",
Colin Crossa4d9fc42017-09-29 18:04:37 -0700540 ],
541}
Colin Cross3c6c2e22017-10-18 13:24:52 -0700542
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100543// Builds libcore test rules
Colin Cross3c6c2e22017-10-18 13:24:52 -0700544java_library_static {
545 name: "core-test-rules",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100546 visibility: [
547 "//frameworks/base/location/tests/locationtests",
548 ],
Colin Cross3c6c2e22017-10-18 13:24:52 -0700549 hostdex: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700550 srcs: [
551 "dalvik/test-rules/src/main/**/*.java",
552 "test-rules/src/main/**/*.java",
553 ],
554 static_libs: ["junit"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100555
Paul Duffin83c25382019-06-07 14:10:49 +0100556 sdk_version: "none",
Neil Fuller4207c7f2018-10-10 14:01:40 +0100557 libs: ["core-all"],
558 system_modules: "core-all-system-modules",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700559}
560
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100561// Builds the core-tests-support library used by various tests.
Colin Cross3c6c2e22017-10-18 13:24:52 -0700562java_library_static {
563 name: "core-tests-support",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100564 visibility: [
565 "//cts/apps/CtsVerifier",
566 "//cts/tests/tests/keystore",
567 "//cts/tests/tests/net",
568 "//cts/tests/tests/net/api23Test",
569 "//external/apache-harmony",
570 "//frameworks/base/core/tests/coretests",
571 "//libcore/benchmarks",
572 "//packages/apps/KeyChain/tests",
573 "//system/timezone/distro/core",
574 ],
Colin Cross3c6c2e22017-10-18 13:24:52 -0700575 hostdex: true,
Colin Cross3c6c2e22017-10-18 13:24:52 -0700576 srcs: ["support/src/test/java/**/*.java"],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100577
Paul Duffin53c491f2019-06-12 13:48:14 +0100578 sdk_version: "core_platform",
Neil Fuller4380ab22018-10-18 19:38:53 +0100579 libs: ["junit"],
Colin Cross3c6c2e22017-10-18 13:24:52 -0700580 static_libs: [
Neil Fullerde8b0862018-10-12 21:53:31 +0100581 "bouncycastle-unbundled",
582 "bouncycastle-bcpkix-unbundled",
583 "bouncycastle-ocsp-unbundled",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700584 ],
585}
586
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100587// Builds the jsr166-tests library.
Colin Crossec80f4f2018-08-15 21:17:11 -0700588java_test {
Colin Cross3c6c2e22017-10-18 13:24:52 -0700589 name: "jsr166-tests",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100590 visibility: [
591 "//cts/tests/libcore/jsr166",
592 ],
Colin Cross3c6c2e22017-10-18 13:24:52 -0700593 srcs: ["jsr166-tests/src/test/java/**/*.java"],
Paul Duffin83c25382019-06-07 14:10:49 +0100594 sdk_version: "none",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700595 libs: [
Neil Fuller4207c7f2018-10-10 14:01:40 +0100596 "core-all",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700597 "junit",
598 ],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100599 system_modules: "core-all-system-modules",
Colin Cross3c6c2e22017-10-18 13:24:52 -0700600}
Nan Zhang65f27a32018-01-05 10:41:46 -0800601
Pete Gillinec902b82019-06-26 17:23:00 +0100602// A filegroup that provides access to a source file for a toolchain test that
603// checks Java 9 language features are handled properly by JarJar.
604filegroup {
605 name: "core-java-9-language-features-source",
606 srcs: ["luni/src/main/java/libcore/internal/Java9LanguageFeatures.java"],
607 visibility: ["//libcore/luni/src/test/java9language"],
608}
609
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100610// Builds the core-tests library.
Colin Crossec80f4f2018-08-15 21:17:11 -0700611java_test {
612 name: "core-tests",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100613 visibility: [
614 "//cts/tests/libcore/luni",
615 ],
Colin Crossec80f4f2018-08-15 21:17:11 -0700616 defaults: ["libcore_java_defaults"],
617 hostdex: true,
618 srcs: [
619 "dalvik/src/test/java/**/*.java",
620 "dalvik/test-rules/src/test/java/**/*.java",
621 "dom/src/test/java/**/*.java",
622 "harmony-tests/src/test/java/**/*.java",
623 "json/src/test/java/**/*.java",
624 "luni/src/test/java/**/*.java",
Paul Duffin4ba14532019-03-21 10:32:41 +0000625 "test-rules/src/test/java/**/*.java",
Colin Crossec80f4f2018-08-15 21:17:11 -0700626 "xml/src/test/java/**/*.java",
627 ],
628 exclude_srcs: [
629 "luni/src/test/java/libcore/java/util/zip/Zip64Test.java",
630 "luni/src/test/java/libcore/java/util/zip/Zip64FileTest.java",
631 ],
632
633 java_resource_dirs: [
634 "*/src/test/java",
635 "*/src/test/resources",
636 ],
637 exclude_java_resource_dirs: [
638 "ojluni/src/test/java",
639 "ojluni/src/test/resources",
640 ],
641
642 java_resources: [
Paul Duffin16a057f2019-05-13 12:20:55 +0100643 ":annotations-test",
Colin Crossec80f4f2018-08-15 21:17:11 -0700644 ":filesystemstest",
645 ":parameter-metadata-test",
646 ],
647
Paul Duffin83c25382019-06-07 14:10:49 +0100648 sdk_version: "none",
Neil Fuller4207c7f2018-10-10 14:01:40 +0100649 libs: [
650 "core-all",
651 "okhttp",
652 "bouncycastle",
653 ],
654 system_modules: "core-all-system-modules",
655
Colin Crossec80f4f2018-08-15 21:17:11 -0700656 static_libs: [
657 "archive-patcher",
Pete Gillin05a43202019-06-27 14:41:21 +0100658 "core-java-9-language-tests",
Colin Crossec80f4f2018-08-15 21:17:11 -0700659 "core-test-rules",
660 "core-tests-support",
661 "junit-params",
662 "mockftpserver",
663 "mockito-target",
664 "mockwebserver",
665 "nist-pkix-tests",
666 "slf4j-jdk14",
667 "sqlite-jdbc",
668 "tzdata-testing",
Paul Duffina4df2372018-12-10 15:48:01 +0000669 "truth-prebuilt",
Colin Crossec80f4f2018-08-15 21:17:11 -0700670 ],
671
672 errorprone: {
673 javacflags: [
674 "-Xep:TryFailThrowable:ERROR",
675 "-Xep:ComparisonOutOfRange:ERROR",
676 ],
677 },
Simran Basi3be01e02018-08-21 17:53:49 -0700678
679 test_config: "AndroidTest-core-tests.xml",
Colin Crossec80f4f2018-08-15 21:17:11 -0700680}
681
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100682// Builds the core-ojtests library that contains test code from OpenJDK.
Colin Crossec80f4f2018-08-15 21:17:11 -0700683java_test {
684 name: "core-ojtests",
685 defaults: ["libcore_java_defaults"],
686 hostdex: true,
687
688 srcs: [
689 "ojluni/src/test/java/**/*.java",
690 ],
691 java_resource_dirs: [
692 "ojluni/src/test/java",
693 "ojluni/src/test/resources",
694 ],
Neil Fullerb669ccb2018-10-04 23:10:27 +0100695
Paul Duffin83c25382019-06-07 14:10:49 +0100696 sdk_version: "none",
Neil Fuller4207c7f2018-10-10 14:01:40 +0100697 libs: [
698 "core-all",
699 "okhttp",
700 "bouncycastle",
701 ],
702 system_modules: "core-all-system-modules",
703
Colin Crossec80f4f2018-08-15 21:17:11 -0700704 static_libs: ["testng"],
705
706 // ojluni/src/test/java/util/stream/{bootlib,boottest}
707 // contains tests that are in packages from java.base;
708 // By default, OpenJDK 9's javac will only compile such
709 // code if it's declared to also be in java.base at
710 // compile time.
711 //
712 // For now, we use --patch-module to put all sources
713 // and dependencies from this make target into java.base;
714 // other source directories in this make target are in
715 // packages not from java.base; if this becomes a problem
716 // in future, this could be addressed eg. by splitting
717 // boot{lib,test} out into a separate make target,
718 // deleting those tests or moving them to a different
719 // package.
720 patch_module: "java.base",
721}
722
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100723// Builds the core-ojtests-public library. Excludes any private API tests.
724// Like core-ojtests but smaller.
Colin Crossec80f4f2018-08-15 21:17:11 -0700725java_test {
726 name: "core-ojtests-public",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100727 visibility: [
728 "//cts/tests/libcore/ojluni",
729 ],
Colin Crossec80f4f2018-08-15 21:17:11 -0700730 defaults: ["libcore_java_defaults"],
731 srcs: [
732 "ojluni/src/test/java/**/*.java",
733 ],
734 // Filter out the following:
735 // 1.) DeserializeMethodTest and SerializedLambdaTest, because they depends on stub classes
736 // and won't actually run, and
737 // 2.) util/stream/boot*. Those directories contain classes in the package java.util.stream;
738 // excluding them means we don't need patch_module: "java.base"
739 exclude_srcs: [
740 "**/DeserializeMethodTest.java",
741 "**/SerializedLambdaTest.java",
742 "ojluni/src/test/java/util/stream/boot*/**/*",
743 ],
744 java_resource_dirs: [
745 "ojluni/src/test/java",
746 "ojluni/src/test/resources",
747 // Include source code as part of JAR
748 "ojluni/src/test/dist",
749 ],
Neil Fuller4207c7f2018-10-10 14:01:40 +0100750
Paul Duffin83c25382019-06-07 14:10:49 +0100751 sdk_version: "none",
Neil Fuller4207c7f2018-10-10 14:01:40 +0100752 libs: [
753 "core-all",
754 "bouncycastle",
755 "okhttp",
756 "testng",
757 ],
758 system_modules: "core-all-system-modules",
Colin Crossec80f4f2018-08-15 21:17:11 -0700759}
760
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100761// Exports annotated stubs source files in ojluni/annotations/sdk to make them
762// available to metalava. Used for nullability annotations in OpenJDK source.
Pete Gillin7db7faa2018-07-31 13:29:35 +0100763droiddoc_exported_dir {
Pete Gillin0728b742018-09-17 15:41:45 +0100764 name: "ojluni-annotated-sdk-stubs",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100765 visibility: [
766 "//frameworks/base",
767 ],
Pete Gillin0728b742018-09-17 15:41:45 +0100768 path: "ojluni/annotations/sdk",
Pete Gillin7db7faa2018-07-31 13:29:35 +0100769}
Paul Duffin48ac7b62019-03-28 14:28:06 +0000770
Pete Gillin600c7cf2018-08-16 19:28:38 +0100771droiddoc_exported_dir {
772 name: "ojluni-annotated-nullability-stubs",
773 path: "ojluni/annotations/sdk/nullability",
774}
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100775
776// Exports annotated stubs source files in ojluni/annotations/mmodules to make
Paul Duffinc241d6a2019-06-25 15:40:29 +0100777// them available to metalava. Used for core platform API and intra-core API
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100778// annotations in OpenJDK source.
Pete Gillinc9935b62018-09-25 14:42:40 +0100779droiddoc_exported_dir {
780 name: "ojluni-annotated-mmodule-stubs",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100781 visibility: [
782 "//libcore/mmodules/core_platform_api",
783 "//libcore/mmodules/intracoreapi",
784 ],
Pete Gillinc9935b62018-09-25 14:42:40 +0100785 path: "ojluni/annotations/mmodule",
786}
Pete Gillin7db7faa2018-07-31 13:29:35 +0100787
Neil Fuller6f16b462018-09-04 15:40:39 +0100788// A file containing the list of tags that are "known" to us from the OpenJdk
789// source code and so should not cause an error or warning.
Nan Zhangd55722b2018-02-27 15:08:20 -0800790filegroup {
791 name: "known-oj-tags",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100792 visibility: [
793 "//frameworks/base",
794 ],
Nan Zhangd55722b2018-02-27 15:08:20 -0800795 srcs: [
796 "known_oj_tags.txt",
797 ],
798}
Nan Zhang602fc0e2018-03-22 16:14:22 -0700799
Neil Fuller77e3f3b2018-10-19 10:22:32 +0100800// Generates stubs for the parts of the public SDK API provided by the core
801// library.
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000802//
803// Only for use by core.current.stubs target below.
Nan Zhangf0207602018-09-10 18:57:38 -0700804droidstubs {
805 name: "core-current-stubs-gen",
Paul Duffin53690cb2019-09-19 15:11:28 +0100806 srcs: [
807 ":core_public_api_files",
808 ],
Tobias Thiererde991232018-03-07 15:10:46 +0000809 java_version: "1.9",
Nan Zhang602fc0e2018-03-22 16:14:22 -0700810 installable: false,
Paul Duffin419b2422019-06-25 15:42:05 +0100811 sdk_version: "none",
Nan Zhang602fc0e2018-03-22 16:14:22 -0700812}
813
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000814// A stubs target containing the parts of the public SDK API provided by the
815// core library.
816//
817// Don't use this directly, use "sdk_version: core_current".
818java_library {
819 name: "core.current.stubs",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100820 visibility: ["//visibility:public"],
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000821 srcs: [":core-current-stubs-gen"],
822 errorprone: {
823 javacflags: [
824 "-Xep:MissingOverride:OFF",
825 ],
826 },
827 openjdk9: {
828 javacflags: ["--patch-module=java.base=."],
829 },
Paul Duffin83c25382019-06-07 14:10:49 +0100830 sdk_version: "none",
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000831 system_modules: "none",
Paul Duffin65641182019-04-08 10:24:23 +0100832
833 dist: {
834 targets: [
835 "sdk",
836 "win_sdk",
837 ],
838 },
Paul Duffin0ca3cbe2019-02-14 15:47:58 +0000839}
840
Neil Fuller61dabbf2018-10-21 22:53:18 +0100841// Used when compiling higher-level code against core.current.stubs.
842java_system_modules {
843 name: "core-current-stubs-system-modules",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100844 visibility: ["//visibility:public"],
Neil Fuller61dabbf2018-10-21 22:53:18 +0100845 libs: [
846 "core.current.stubs",
847 // This one is not on device but it's needed when javac compiles code
848 // containing lambdas.
849 "core-lambda-stubs-for-system-modules",
850 // This one is not on device but it's needed when javac compiles code
851 // containing @Generated annotations produced by some code generation
852 // tools.
853 // See http://b/123891440.
854 "core-generated-annotation-stubs",
855 ],
856}
857
Pete Gillin600c7cf2018-08-16 19:28:38 +0100858// Target for validating nullability annotations for correctness and
859// completeness. To check that there are no nullability errors:
860// make core-current-stubs-nullability-validation
861// To check that there are only the expected nullability warnings:
862// make core-current-stubs-nullability-validation-check-nullability-warnings
863// To update the the list of known expected nullability warnings:
864// make core-current-stubs-nullability-validation-update-nullability-warnings
865droidstubs {
866 name: "core-current-stubs-nullability-validation",
867 srcs: [":core_api_files"],
868 installable: false,
Paul Duffin419b2422019-06-25 15:42:05 +0100869 sdk_version: "none",
Pete Gillin600c7cf2018-08-16 19:28:38 +0100870 annotations_enabled: true,
871 args: "--hide-annotation libcore.api.Hide " +
872 "--validate-nullability-from-merged-stubs ",
873 merge_inclusion_annotations_dirs: ["ojluni-annotated-mmodule-stubs"],
874 merge_annotations_dirs: [
875 "metalava-manual",
876 // N.B. Stubs in this filegroup will be validated:
877 "ojluni-annotated-nullability-stubs",
878 ],
Pete Gillinc5f179b2018-11-14 18:42:19 +0000879 // The list of classes which have nullability annotations included in the source.
880 // (This is in addition to those which have annotations in the merged stubs.)
881 validate_nullability_from_list: "nullability_annotated_classes.txt",
Pete Gillin600c7cf2018-08-16 19:28:38 +0100882 // The expected set of warnings about missing annotations:
883 check_nullability_warnings: "nullability_warnings.txt",
884}
885
Neil Fullere784ef22018-11-16 15:54:30 +0000886// A host library containing time zone related classes. Used for
887// host-side tools and tests that have to deal with Android
888// time zone data.
889java_library_host {
890 name: "timezone-host",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100891 visibility: [
892 "//system/timezone/distro/core",
893 ],
Neil Fullere784ef22018-11-16 15:54:30 +0000894 srcs: [":timezone_host_files"],
895}
Andrei Onea24892e22019-04-16 16:48:37 +0100896
Victor Changb28d3f82019-08-09 16:24:46 +0100897// A library that contains annotations not retented in runtime and inline-able constants
898// that should not introduce any runtime dependency for compiling core libraries, e.g. core-icu4j,
899java_library {
900 name: "libcore-unsupportedappusage-annotation",
901 srcs: [
902 ":unsupportedappusage_annotation_files",
903 ],
904
905 installable: false,
906 sdk_version: "core_current",
907}
908
Andrei Onea24892e22019-04-16 16:48:37 +0100909// The source files that contain the UnsupportedAppUsage annotation and its dependencies.
910filegroup {
911 name: "unsupportedappusage_annotation_files",
Paul Duffinc241d6a2019-06-25 15:40:29 +0100912 visibility: [
913 "//frameworks/base",
914 ],
Andrei Onea24892e22019-04-16 16:48:37 +0100915 srcs: [
916 "dalvik/src/main/java/dalvik/annotation/compat/UnsupportedAppUsage.java",
917 "dalvik/src/main/java/dalvik/system/VersionCodes.java",
918 "luni/src/main/java/libcore/api/CorePlatformApi.java",
919 "luni/src/main/java/libcore/api/IntraCoreApi.java",
920 ],
Neil Fuller86345d72019-04-25 09:15:32 +0100921}