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