Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 1 | // 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 Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 16 | // Definitions for building the Android core library and associated tests. |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 17 | // |
| 18 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 19 | // 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 Fuller | cf75688 | 2018-08-28 18:42:22 +0100 | [diff] [blame] | 24 | // 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 Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 27 | // |
Neil Fuller | cf75688 | 2018-08-28 18:42:22 +0100 | [diff] [blame] | 28 | // The structure of these is generally: |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 29 | // |
| 30 | // src/ |
| 31 | // main/ # To be shipped on every device. |
| 32 | // java/ # Java source for library code. |
Neil Fuller | cf75688 | 2018-08-28 18:42:22 +0100 | [diff] [blame] | 33 | // native/ # C/C++ source for library code. |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 34 | // resources/ # Support files. |
| 35 | // test/ # Built only on demand, for testing. |
| 36 | // java/ # Java source for tests. |
Neil Fuller | cf75688 | 2018-08-28 18:42:22 +0100 | [diff] [blame] | 37 | // native/ # C/C++ source for tests (rare). |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 38 | // resources/ # Support files. |
| 39 | // |
Neil Fuller | cf75688 | 2018-08-28 18:42:22 +0100 | [diff] [blame] | 40 | // All subdirectories are optional. |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 41 | |
| 42 | build = [ |
| 43 | "openjdk_java_files.bp", |
| 44 | "non_openjdk_java_files.bp", |
| 45 | ] |
| 46 | |
| 47 | // The Java files and their associated resources. |
| 48 | core_resource_dirs = [ |
| 49 | "luni/src/main/java", |
| 50 | "ojluni/src/main/resources/", |
| 51 | ] |
| 52 | |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 53 | // The source files that go into core-oj. |
| 54 | filegroup { |
| 55 | name: "core_oj_java_files", |
| 56 | srcs: [":openjdk_java_files"], |
| 57 | } |
| 58 | |
Neil Fuller | e32e2e1 | 2019-02-26 11:48:30 +0000 | [diff] [blame] | 59 | // OpenJDK source is not annotated with @hide so we need this separate |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 60 | // filegroup for just the parts that contribute to the API. |
| 61 | filegroup { |
| 62 | name: "core_oj_api_files", |
| 63 | srcs: [":openjdk_javadoc_files"], |
| 64 | } |
| 65 | |
| 66 | // The source files that go into core-libart. |
| 67 | filegroup { |
| 68 | name: "core_libart_java_files", |
| 69 | srcs: [ |
| 70 | ":non_openjdk_java_files", |
| 71 | ":android_icu4j_src_files", |
| 72 | ], |
| 73 | } |
| 74 | |
Neil Fuller | e32e2e1 | 2019-02-26 11:48:30 +0000 | [diff] [blame] | 75 | // Some parts of libart are not annotated with @hide so we need this separate |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 76 | // filegroup for just the parts that contribute to the API. |
| 77 | filegroup { |
| 78 | name: "core_libart_api_files", |
| 79 | srcs: [ |
| 80 | ":non_openjdk_javadoc_files", |
| 81 | ":android_icu4j_src_files", |
| 82 | ], |
| 83 | } |
| 84 | |
Neil Fuller | e32e2e1 | 2019-02-26 11:48:30 +0000 | [diff] [blame] | 85 | // 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. |
| 88 | filegroup { |
| 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 Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 97 | // 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 Fuller | e32e2e1 | 2019-02-26 11:48:30 +0000 | [diff] [blame] | 101 | // 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 Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 105 | filegroup { |
| 106 | name: "core_api_files", |
| 107 | srcs: [ |
Neil Fuller | d129bc9 | 2018-09-26 11:12:58 +0100 | [diff] [blame] | 108 | ":apache-xml_api_files", |
Neil Fuller | a77f710 | 2018-09-21 19:04:41 +0100 | [diff] [blame] | 109 | ":bouncycastle_java_files", |
Neil Fuller | 603e1a7 | 2018-09-25 11:55:41 +0100 | [diff] [blame] | 110 | ":conscrypt_java_files", |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 111 | ":core_oj_api_files", |
| 112 | ":core_libart_api_files", |
Neil Fuller | 641d5f9 | 2018-09-24 15:40:39 +0100 | [diff] [blame] | 113 | ":okhttp_api_files", |
Pete Gillin | c9935b6 | 2018-09-25 14:42:40 +0100 | [diff] [blame] | 114 | ":openjdk_mmodule_extra_files", |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 115 | ], |
| 116 | } |
| 117 | |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 118 | java_defaults { |
| 119 | name: "libcore_java_defaults", |
| 120 | javacflags: [ |
| 121 | //"-Xlint:all", |
| 122 | //"-Xlint:-serial,-deprecation,-unchecked", |
| 123 | ], |
| 124 | dxflags: ["--core-library"], |
Andreas Gampe | 66b3173 | 2018-02-20 09:22:16 -0800 | [diff] [blame] | 125 | errorprone: { |
| 126 | javacflags: [ |
| 127 | "-Xep:MissingOverride:OFF", // Ignore missing @Override. |
Andreas Gampe | 24a2017 | 2018-06-13 11:28:45 -0700 | [diff] [blame] | 128 | "-Xep:ConstantOverflow:WARN", // Known constant overflow in SplittableRandom |
Andreas Gampe | 66b3173 | 2018-02-20 09:22:16 -0800 | [diff] [blame] | 129 | ], |
| 130 | }, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | // |
| 134 | // Build for the target (device). |
| 135 | // |
| 136 | |
Victor Chang | 7fef405 | 2018-09-25 14:12:03 +0100 | [diff] [blame] | 137 | // 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/ |
| 141 | java_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 Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 148 | // A target used to bootstrap compilation for the core library. |
| 149 | // See core-all-system-modules for more details. |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 150 | java_library { |
| 151 | name: "core-all", |
| 152 | defaults: ["libcore_java_defaults"], |
| 153 | |
| 154 | srcs: [ |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 155 | ":core_oj_java_files", |
| 156 | ":core_libart_java_files", |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 157 | ":openjdk_lambda_stub_files", |
| 158 | ], |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 159 | |
| 160 | no_standard_libs: true, |
| 161 | system_modules: "none", |
Colin Cross | a4d9fc4 | 2017-09-29 18:04:37 -0700 | [diff] [blame] | 162 | openjdk9: { |
| 163 | srcs: ["luni/src/module/java/module-info.java"], |
| 164 | javacflags: ["--patch-module=java.base=."], |
| 165 | }, |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 166 | |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 167 | java_resource_dirs: core_resource_dirs, |
Victor Chang | 7fef405 | 2018-09-25 14:12:03 +0100 | [diff] [blame] | 168 | static_libs: ["android_icu4j_resources_lib"], |
Tobias Thierer | de99123 | 2018-03-07 15:10:46 +0000 | [diff] [blame] | 169 | java_version: "1.9", |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 170 | |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 171 | installable: false, |
| 172 | } |
| 173 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 174 | // 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 Cross | a4d9fc4 | 2017-09-29 18:04:37 -0700 | [diff] [blame] | 184 | java_system_modules { |
| 185 | name: "core-all-system-modules", |
| 186 | libs: ["core-all"], |
| 187 | } |
| 188 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 189 | // Contains the parts of core library associated with OpenJDK. |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 190 | java_library { |
| 191 | name: "core-oj", |
| 192 | defaults: ["libcore_java_defaults"], |
Colin Cross | 5b75cdd | 2018-06-27 11:00:13 -0700 | [diff] [blame] | 193 | installable: true, |
Colin Cross | bb180be | 2017-10-09 14:54:53 -0700 | [diff] [blame] | 194 | hostdex: true, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 195 | |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 196 | srcs: [":core_oj_java_files"], |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 197 | java_resource_dirs: core_resource_dirs, |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 198 | |
| 199 | no_standard_libs: true, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 200 | libs: ["core-all"], |
Colin Cross | a4d9fc4 | 2017-09-29 18:04:37 -0700 | [diff] [blame] | 201 | system_modules: "core-all-system-modules", |
| 202 | openjdk9: { |
| 203 | javacflags: ["--patch-module=java.base=."], |
| 204 | }, |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 205 | |
Pete Gillin | 7a7a6d2 | 2017-12-19 14:56:03 +0000 | [diff] [blame] | 206 | jacoco: { |
Pete Gillin | 27ca058 | 2018-01-10 17:04:17 +0000 | [diff] [blame] | 207 | exclude_filter: [ |
Pete Gillin | 3f59bad | 2018-01-30 11:20:29 +0000 | [diff] [blame] | 208 | "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 Gillin | b1868ada | 2018-01-17 11:03:10 +0000 | [diff] [blame] | 216 | "java.util.AbstractMap", |
Pete Gillin | 3f59bad | 2018-01-30 11:20:29 +0000 | [diff] [blame] | 217 | "java.util.HashMap", |
| 218 | "java.util.HashMap$Node", |
Pete Gillin | b1868ada | 2018-01-17 11:03:10 +0000 | [diff] [blame] | 219 | "java.util.Map", |
Pete Gillin | 7a7a6d2 | 2017-12-19 14:56:03 +0000 | [diff] [blame] | 220 | ], |
| 221 | }, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 222 | |
| 223 | notice: "ojluni/NOTICE", |
| 224 | |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 225 | } |
| 226 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 227 | // 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 Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 230 | java_library { |
| 231 | name: "core-libart", |
| 232 | defaults: ["libcore_java_defaults"], |
Colin Cross | 5b75cdd | 2018-06-27 11:00:13 -0700 | [diff] [blame] | 233 | installable: true, |
Colin Cross | bb180be | 2017-10-09 14:54:53 -0700 | [diff] [blame] | 234 | hostdex: true, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 235 | |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 236 | srcs: [":core_libart_java_files"], |
Victor Chang | 7fef405 | 2018-09-25 14:12:03 +0100 | [diff] [blame] | 237 | static_libs: ["android_icu4j_resources_lib"], |
Tobias Thierer | de99123 | 2018-03-07 15:10:46 +0000 | [diff] [blame] | 238 | java_version: "1.9", |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 239 | |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 240 | no_standard_libs: true, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 241 | libs: ["core-all"], |
Colin Cross | a4d9fc4 | 2017-09-29 18:04:37 -0700 | [diff] [blame] | 242 | system_modules: "core-all-system-modules", |
| 243 | openjdk9: { |
| 244 | javacflags: ["--patch-module=java.base=."], |
| 245 | }, |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 246 | |
Pete Gillin | 80ebe87 | 2018-02-13 15:21:20 +0000 | [diff] [blame] | 247 | jacoco: { |
| 248 | exclude_filter: [ |
| 249 | "java.lang.DexCache", |
| 250 | "dalvik.system.ClassExt", |
| 251 | ], |
| 252 | }, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 253 | |
| 254 | required: [ |
Neil Fuller | 3b8c055 | 2018-12-14 22:19:07 +0000 | [diff] [blame] | 255 | // Device files put in /system. |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 256 | "tzdata", |
Neil Fuller | 7a4d3db | 2018-11-20 19:43:10 +0000 | [diff] [blame] | 257 | "tz_version", |
Neil Fuller | 3b8c055 | 2018-12-14 22:19:07 +0000 | [diff] [blame] | 258 | // Files used to simulate the /system and runtime APEX dir |
| 259 | // structure on host. |
| 260 | "tzdata_host", |
| 261 | "tzdata_host_runtime_apex", |
| 262 | "tzlookup.xml_host_runtime_apex", |
| 263 | "tz_version_host", |
| 264 | "tz_version_host_runtime_apex", |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 265 | ], |
| 266 | } |
| 267 | |
Paul Duffin | 7bb8d23 | 2018-10-23 11:48:38 +0100 | [diff] [blame] | 268 | // Provided solely to contribute information about which hidden parts of the |
| 269 | // core-oj API are used by apps. |
| 270 | java_library { |
| 271 | name: "core-oj-hiddenapi", |
| 272 | defaults: ["libcore_java_defaults"], |
| 273 | compile_dex: true, |
| 274 | |
| 275 | srcs: [":openjdk_hiddenapi_javadoc_files"], |
| 276 | |
| 277 | no_standard_libs: true, |
| 278 | libs: ["core-all"], |
| 279 | system_modules: "core-all-system-modules", |
| 280 | openjdk9: { |
| 281 | javacflags: ["--patch-module=java.base=."], |
| 282 | }, |
| 283 | } |
| 284 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 285 | // |
| 286 | // Guaranteed unstripped versions of core-oj and core-libart. |
| 287 | // |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 288 | // The build system may or may not strip the core-oj and core-libart jars, |
| 289 | // but these will not be stripped. See b/24535627. |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 290 | // |
| 291 | |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 292 | java_library { |
| 293 | name: "core-oj-testdex", |
Colin Cross | 5b75cdd | 2018-06-27 11:00:13 -0700 | [diff] [blame] | 294 | installable: true, |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 295 | static_libs: ["core-oj"], |
| 296 | no_standard_libs: true, |
| 297 | libs: ["core-all"], |
| 298 | system_modules: "core-all-system-modules", |
| 299 | dxflags: ["--core-library"], |
Colin Cross | 485ed36 | 2017-12-05 17:24:22 -0800 | [diff] [blame] | 300 | dex_preopt: { |
| 301 | enabled: false, |
| 302 | }, |
Tobias Thierer | de99123 | 2018-03-07 15:10:46 +0000 | [diff] [blame] | 303 | java_version: "1.9", |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 304 | notice: "ojluni/NOTICE", |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | java_library { |
| 308 | name: "core-libart-testdex", |
Colin Cross | 5b75cdd | 2018-06-27 11:00:13 -0700 | [diff] [blame] | 309 | installable: true, |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 310 | static_libs: ["core-libart"], |
| 311 | no_standard_libs: true, |
| 312 | libs: ["core-all"], |
| 313 | system_modules: "core-all-system-modules", |
| 314 | dxflags: ["--core-library"], |
Colin Cross | 485ed36 | 2017-12-05 17:24:22 -0800 | [diff] [blame] | 315 | dex_preopt: { |
| 316 | enabled: false, |
| 317 | }, |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 318 | notice: "ojluni/NOTICE", |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 319 | } |
| 320 | |
Tobias Thierer | e0f8b31 | 2018-10-23 23:12:30 +0100 | [diff] [blame] | 321 | |
| 322 | java_defaults { |
| 323 | name: "core_lambda_stubs_defaults", |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 324 | defaults: ["libcore_java_defaults"], |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 325 | hostdex: true, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 326 | |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 327 | no_standard_libs: true, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 328 | libs: ["core-all"], |
Colin Cross | a4d9fc4 | 2017-09-29 18:04:37 -0700 | [diff] [blame] | 329 | system_modules: "core-all-system-modules", |
| 330 | openjdk9: { |
| 331 | javacflags: ["--patch-module=java.base=."], |
| 332 | }, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 333 | |
| 334 | notice: "ojluni/NOTICE", |
| 335 | |
| 336 | installable: false, |
| 337 | include_srcs: true, |
| 338 | } |
Colin Cross | a4d9fc4 | 2017-09-29 18:04:37 -0700 | [diff] [blame] | 339 | |
Tobias Thierer | e0f8b31 | 2018-10-23 23:12:30 +0100 | [diff] [blame] | 340 | // Creates a jar that exists to satisfy javac when compiling source code that |
| 341 | // contains lambdas. This contains all classes / methods required by javac |
| 342 | // when generating invoke-dynamic lambda implementation code, even those that |
| 343 | // are also in the public SDK API from API level 26 onwards. |
| 344 | java_library { |
| 345 | name: "core-lambda-stubs", |
| 346 | defaults: ["core_lambda_stubs_defaults"], |
| 347 | srcs: [ |
| 348 | ":openjdk_lambda_stub_files", |
| 349 | ":openjdk_lambda_duplicate_stub_files", |
| 350 | ], |
| 351 | } |
| 352 | |
| 353 | // An alternative to core-lambda-stubs that omits openjdk_lambda_duplicate_stub_files |
| 354 | // because those classes are also part of the core library public SDK API |
| 355 | // (since API level 26). |
| 356 | java_library { |
| 357 | name: "core-lambda-stubs-for-system-modules", |
| 358 | defaults: ["core_lambda_stubs_defaults"], |
| 359 | srcs: [ |
| 360 | ":openjdk_lambda_stub_files", |
| 361 | ], |
| 362 | } |
| 363 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 364 | // A system modules definition containing the implementations for the various |
| 365 | // parts that make up the core library. |
| 366 | // |
| 367 | // This system module is intended for use by tests that may need access to |
| 368 | // core library internals. It should not be generally used; most of the |
| 369 | // platform build should build against API stubs instead. See |
| 370 | // "core-platform-api-stubs-system-modules", which is the default used by the |
| 371 | // Android build. |
| 372 | // |
| 373 | // This module also includes lambda stubs for compiling source containing |
| 374 | // Java lambdas. |
Colin Cross | a4d9fc4 | 2017-09-29 18:04:37 -0700 | [diff] [blame] | 375 | java_system_modules { |
| 376 | name: "core-system-modules", |
| 377 | libs: [ |
| 378 | "core-oj", |
| 379 | "core-libart", |
Neil Fuller | b669ccb | 2018-10-04 23:10:27 +0100 | [diff] [blame] | 380 | "bouncycastle", |
| 381 | "conscrypt", |
| 382 | "okhttp", |
Neil Fuller | 05723a5 | 2018-10-19 10:55:05 +0100 | [diff] [blame] | 383 | "apache-xml", |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 384 | // This one is not on device but it's needed when javac compiles code |
| 385 | // containing lambdas. |
Tobias Thierer | e0f8b31 | 2018-10-23 23:12:30 +0100 | [diff] [blame] | 386 | "core-lambda-stubs-for-system-modules", |
Colin Cross | a4d9fc4 | 2017-09-29 18:04:37 -0700 | [diff] [blame] | 387 | ], |
| 388 | } |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 389 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 390 | // Builds libcore test rules |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 391 | java_library_static { |
| 392 | name: "core-test-rules", |
| 393 | hostdex: true, |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 394 | srcs: [ |
| 395 | "dalvik/test-rules/src/main/**/*.java", |
| 396 | "test-rules/src/main/**/*.java", |
| 397 | ], |
| 398 | static_libs: ["junit"], |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 399 | |
| 400 | no_standard_libs: true, |
| 401 | libs: ["core-all"], |
| 402 | system_modules: "core-all-system-modules", |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 403 | } |
| 404 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 405 | // Builds the core-tests-support library used by various tests. |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 406 | java_library_static { |
| 407 | name: "core-tests-support", |
| 408 | hostdex: true, |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 409 | srcs: ["support/src/test/java/**/*.java"], |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 410 | |
Neil Fuller | 4380ab2 | 2018-10-18 19:38:53 +0100 | [diff] [blame] | 411 | no_framework_libs: true, |
| 412 | libs: ["junit"], |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 413 | static_libs: [ |
Neil Fuller | de8b086 | 2018-10-12 21:53:31 +0100 | [diff] [blame] | 414 | "bouncycastle-unbundled", |
| 415 | "bouncycastle-bcpkix-unbundled", |
| 416 | "bouncycastle-ocsp-unbundled", |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 417 | ], |
| 418 | } |
| 419 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 420 | // Builds the jsr166-tests library. |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 421 | java_test { |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 422 | name: "jsr166-tests", |
| 423 | srcs: ["jsr166-tests/src/test/java/**/*.java"], |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 424 | no_standard_libs: true, |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 425 | libs: [ |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 426 | "core-all", |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 427 | "junit", |
| 428 | ], |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 429 | system_modules: "core-all-system-modules", |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 430 | } |
Nan Zhang | 65f27a3 | 2018-01-05 10:41:46 -0800 | [diff] [blame] | 431 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 432 | // Builds a library just containing files from luni/src/test/filesystems |
| 433 | // for use in tests. |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 434 | java_library { |
| 435 | name: "filesystemstest", |
| 436 | compile_dex: true, |
| 437 | srcs: ["luni/src/test/filesystems/src/**/*.java"], |
| 438 | java_resource_dirs: ["luni/src/test/filesystems/resources"], |
| 439 | no_framework_libs: true, |
| 440 | errorprone: { |
| 441 | javacflags: ["-Xep:MissingOverride:OFF"], |
| 442 | }, |
| 443 | } |
| 444 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 445 | // Builds a library just containing files from luni/src/test/parameter_metadata |
| 446 | // for use in tests. |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 447 | java_library { |
| 448 | name: "parameter-metadata-test", |
| 449 | compile_dex: true, |
| 450 | srcs: ["luni/src/test/parameter_metadata/src/**/*.java"], |
| 451 | no_framework_libs: true, |
| 452 | javacflags: ["-parameters"], |
| 453 | errorprone: { |
| 454 | javacflags: ["-Xep:MissingOverride:OFF"], |
| 455 | }, |
| 456 | } |
| 457 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 458 | // Builds the core-tests library. |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 459 | java_test { |
| 460 | name: "core-tests", |
| 461 | defaults: ["libcore_java_defaults"], |
| 462 | hostdex: true, |
| 463 | srcs: [ |
| 464 | "dalvik/src/test/java/**/*.java", |
| 465 | "dalvik/test-rules/src/test/java/**/*.java", |
| 466 | "dom/src/test/java/**/*.java", |
| 467 | "harmony-tests/src/test/java/**/*.java", |
| 468 | "json/src/test/java/**/*.java", |
| 469 | "luni/src/test/java/**/*.java", |
Paul Duffin | 4ba1453 | 2019-03-21 10:32:41 +0000 | [diff] [blame^] | 470 | "test-rules/src/test/java/**/*.java", |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 471 | "xml/src/test/java/**/*.java", |
| 472 | ], |
| 473 | exclude_srcs: [ |
| 474 | "luni/src/test/java/libcore/java/util/zip/Zip64Test.java", |
| 475 | "luni/src/test/java/libcore/java/util/zip/Zip64FileTest.java", |
| 476 | ], |
| 477 | |
| 478 | java_resource_dirs: [ |
| 479 | "*/src/test/java", |
| 480 | "*/src/test/resources", |
| 481 | ], |
| 482 | exclude_java_resource_dirs: [ |
| 483 | "ojluni/src/test/java", |
| 484 | "ojluni/src/test/resources", |
| 485 | ], |
| 486 | |
| 487 | java_resources: [ |
| 488 | ":filesystemstest", |
| 489 | ":parameter-metadata-test", |
| 490 | ], |
| 491 | |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 492 | no_standard_libs: true, |
| 493 | libs: [ |
| 494 | "core-all", |
| 495 | "okhttp", |
| 496 | "bouncycastle", |
| 497 | ], |
| 498 | system_modules: "core-all-system-modules", |
| 499 | |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 500 | static_libs: [ |
| 501 | "archive-patcher", |
| 502 | "core-test-rules", |
| 503 | "core-tests-support", |
| 504 | "junit-params", |
| 505 | "mockftpserver", |
| 506 | "mockito-target", |
| 507 | "mockwebserver", |
| 508 | "nist-pkix-tests", |
| 509 | "slf4j-jdk14", |
| 510 | "sqlite-jdbc", |
| 511 | "tzdata-testing", |
Paul Duffin | a4df237 | 2018-12-10 15:48:01 +0000 | [diff] [blame] | 512 | "truth-prebuilt", |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 513 | ], |
| 514 | |
| 515 | errorprone: { |
| 516 | javacflags: [ |
| 517 | "-Xep:TryFailThrowable:ERROR", |
| 518 | "-Xep:ComparisonOutOfRange:ERROR", |
| 519 | ], |
| 520 | }, |
Simran Basi | 3be01e0 | 2018-08-21 17:53:49 -0700 | [diff] [blame] | 521 | |
| 522 | test_config: "AndroidTest-core-tests.xml", |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 523 | } |
| 524 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 525 | // Builds the core-ojtests library that contains test code from OpenJDK. |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 526 | java_test { |
| 527 | name: "core-ojtests", |
| 528 | defaults: ["libcore_java_defaults"], |
| 529 | hostdex: true, |
| 530 | |
| 531 | srcs: [ |
| 532 | "ojluni/src/test/java/**/*.java", |
| 533 | ], |
| 534 | java_resource_dirs: [ |
| 535 | "ojluni/src/test/java", |
| 536 | "ojluni/src/test/resources", |
| 537 | ], |
Neil Fuller | b669ccb | 2018-10-04 23:10:27 +0100 | [diff] [blame] | 538 | |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 539 | no_standard_libs: true, |
| 540 | libs: [ |
| 541 | "core-all", |
| 542 | "okhttp", |
| 543 | "bouncycastle", |
| 544 | ], |
| 545 | system_modules: "core-all-system-modules", |
| 546 | |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 547 | static_libs: ["testng"], |
| 548 | |
| 549 | // ojluni/src/test/java/util/stream/{bootlib,boottest} |
| 550 | // contains tests that are in packages from java.base; |
| 551 | // By default, OpenJDK 9's javac will only compile such |
| 552 | // code if it's declared to also be in java.base at |
| 553 | // compile time. |
| 554 | // |
| 555 | // For now, we use --patch-module to put all sources |
| 556 | // and dependencies from this make target into java.base; |
| 557 | // other source directories in this make target are in |
| 558 | // packages not from java.base; if this becomes a problem |
| 559 | // in future, this could be addressed eg. by splitting |
| 560 | // boot{lib,test} out into a separate make target, |
| 561 | // deleting those tests or moving them to a different |
| 562 | // package. |
| 563 | patch_module: "java.base", |
| 564 | } |
| 565 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 566 | // Builds the core-ojtests-public library. Excludes any private API tests. |
| 567 | // Like core-ojtests but smaller. |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 568 | java_test { |
| 569 | name: "core-ojtests-public", |
| 570 | defaults: ["libcore_java_defaults"], |
| 571 | srcs: [ |
| 572 | "ojluni/src/test/java/**/*.java", |
| 573 | ], |
| 574 | // Filter out the following: |
| 575 | // 1.) DeserializeMethodTest and SerializedLambdaTest, because they depends on stub classes |
| 576 | // and won't actually run, and |
| 577 | // 2.) util/stream/boot*. Those directories contain classes in the package java.util.stream; |
| 578 | // excluding them means we don't need patch_module: "java.base" |
| 579 | exclude_srcs: [ |
| 580 | "**/DeserializeMethodTest.java", |
| 581 | "**/SerializedLambdaTest.java", |
| 582 | "ojluni/src/test/java/util/stream/boot*/**/*", |
| 583 | ], |
| 584 | java_resource_dirs: [ |
| 585 | "ojluni/src/test/java", |
| 586 | "ojluni/src/test/resources", |
| 587 | // Include source code as part of JAR |
| 588 | "ojluni/src/test/dist", |
| 589 | ], |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 590 | |
| 591 | no_standard_libs: true, |
| 592 | libs: [ |
| 593 | "core-all", |
| 594 | "bouncycastle", |
| 595 | "okhttp", |
| 596 | "testng", |
| 597 | ], |
| 598 | system_modules: "core-all-system-modules", |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 599 | } |
| 600 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 601 | // Exports annotated stubs source files in ojluni/annotations/sdk to make them |
| 602 | // available to metalava. Used for nullability annotations in OpenJDK source. |
Pete Gillin | 7db7faa | 2018-07-31 13:29:35 +0100 | [diff] [blame] | 603 | droiddoc_exported_dir { |
Pete Gillin | 0728b74 | 2018-09-17 15:41:45 +0100 | [diff] [blame] | 604 | name: "ojluni-annotated-sdk-stubs", |
| 605 | path: "ojluni/annotations/sdk", |
Pete Gillin | 7db7faa | 2018-07-31 13:29:35 +0100 | [diff] [blame] | 606 | } |
Pete Gillin | 600c7cf | 2018-08-16 19:28:38 +0100 | [diff] [blame] | 607 | droiddoc_exported_dir { |
| 608 | name: "ojluni-annotated-nullability-stubs", |
| 609 | path: "ojluni/annotations/sdk/nullability", |
| 610 | } |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 611 | |
| 612 | // Exports annotated stubs source files in ojluni/annotations/mmodules to make |
| 613 | // them available to metalava. Used for core platform API and intra-code API |
| 614 | // annotations in OpenJDK source. |
Pete Gillin | c9935b6 | 2018-09-25 14:42:40 +0100 | [diff] [blame] | 615 | droiddoc_exported_dir { |
| 616 | name: "ojluni-annotated-mmodule-stubs", |
| 617 | path: "ojluni/annotations/mmodule", |
| 618 | } |
Pete Gillin | 7db7faa | 2018-07-31 13:29:35 +0100 | [diff] [blame] | 619 | |
Neil Fuller | 6f16b46 | 2018-09-04 15:40:39 +0100 | [diff] [blame] | 620 | // A file containing the list of tags that are "known" to us from the OpenJdk |
| 621 | // source code and so should not cause an error or warning. |
Nan Zhang | d55722b | 2018-02-27 15:08:20 -0800 | [diff] [blame] | 622 | filegroup { |
| 623 | name: "known-oj-tags", |
| 624 | srcs: [ |
| 625 | "known_oj_tags.txt", |
| 626 | ], |
| 627 | } |
Nan Zhang | 602fc0e | 2018-03-22 16:14:22 -0700 | [diff] [blame] | 628 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 629 | // Generates stubs for the parts of the public SDK API provided by the core |
| 630 | // library. |
Paul Duffin | 0ca3cbe | 2019-02-14 15:47:58 +0000 | [diff] [blame] | 631 | // |
| 632 | // Only for use by core.current.stubs target below. |
Nan Zhang | f020760 | 2018-09-10 18:57:38 -0700 | [diff] [blame] | 633 | droidstubs { |
| 634 | name: "core-current-stubs-gen", |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 635 | srcs: [":core_api_files"], |
Tobias Thierer | de99123 | 2018-03-07 15:10:46 +0000 | [diff] [blame] | 636 | java_version: "1.9", |
Nan Zhang | 602fc0e | 2018-03-22 16:14:22 -0700 | [diff] [blame] | 637 | installable: false, |
| 638 | no_framework_libs: true, |
Neil Fuller | be9258e | 2018-09-24 17:11:27 +0100 | [diff] [blame] | 639 | args: " --exclude-annotations " |
| 640 | + "--hide-annotation libcore.api.Hide", |
| 641 | merge_inclusion_annotations_dirs: ["ojluni-annotated-mmodule-stubs"], |
Nan Zhang | 602fc0e | 2018-03-22 16:14:22 -0700 | [diff] [blame] | 642 | } |
| 643 | |
Paul Duffin | 0ca3cbe | 2019-02-14 15:47:58 +0000 | [diff] [blame] | 644 | // A stubs target containing the parts of the public SDK API provided by the |
| 645 | // core library. |
| 646 | // |
| 647 | // Don't use this directly, use "sdk_version: core_current". |
| 648 | java_library { |
| 649 | name: "core.current.stubs", |
| 650 | srcs: [":core-current-stubs-gen"], |
| 651 | errorprone: { |
| 652 | javacflags: [ |
| 653 | "-Xep:MissingOverride:OFF", |
| 654 | ], |
| 655 | }, |
| 656 | openjdk9: { |
| 657 | javacflags: ["--patch-module=java.base=."], |
| 658 | }, |
| 659 | no_standard_libs: true, |
| 660 | system_modules: "none", |
| 661 | } |
| 662 | |
Pete Gillin | 600c7cf | 2018-08-16 19:28:38 +0100 | [diff] [blame] | 663 | // Target for validating nullability annotations for correctness and |
| 664 | // completeness. To check that there are no nullability errors: |
| 665 | // make core-current-stubs-nullability-validation |
| 666 | // To check that there are only the expected nullability warnings: |
| 667 | // make core-current-stubs-nullability-validation-check-nullability-warnings |
| 668 | // To update the the list of known expected nullability warnings: |
| 669 | // make core-current-stubs-nullability-validation-update-nullability-warnings |
| 670 | droidstubs { |
| 671 | name: "core-current-stubs-nullability-validation", |
| 672 | srcs: [":core_api_files"], |
| 673 | installable: false, |
| 674 | no_framework_libs: true, |
| 675 | annotations_enabled: true, |
| 676 | args: "--hide-annotation libcore.api.Hide " + |
| 677 | "--validate-nullability-from-merged-stubs ", |
| 678 | merge_inclusion_annotations_dirs: ["ojluni-annotated-mmodule-stubs"], |
| 679 | merge_annotations_dirs: [ |
| 680 | "metalava-manual", |
| 681 | // N.B. Stubs in this filegroup will be validated: |
| 682 | "ojluni-annotated-nullability-stubs", |
| 683 | ], |
Pete Gillin | c5f179b | 2018-11-14 18:42:19 +0000 | [diff] [blame] | 684 | // The list of classes which have nullability annotations included in the source. |
| 685 | // (This is in addition to those which have annotations in the merged stubs.) |
| 686 | validate_nullability_from_list: "nullability_annotated_classes.txt", |
Pete Gillin | 600c7cf | 2018-08-16 19:28:38 +0100 | [diff] [blame] | 687 | // The expected set of warnings about missing annotations: |
| 688 | check_nullability_warnings: "nullability_warnings.txt", |
| 689 | } |
| 690 | |
Neil Fuller | e784ef2 | 2018-11-16 15:54:30 +0000 | [diff] [blame] | 691 | // A host library containing time zone related classes. Used for |
| 692 | // host-side tools and tests that have to deal with Android |
| 693 | // time zone data. |
| 694 | java_library_host { |
| 695 | name: "timezone-host", |
| 696 | srcs: [":timezone_host_files"], |
| 697 | } |