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/ |
Paul Duffin | fb46f73 | 2019-09-25 16:04:21 +0100 | [diff] [blame] | 22 | // directories. |
| 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. |
Tobias Thierer | 79eea26 | 2019-08-01 14:05:11 +0100 | [diff] [blame] | 48 | filegroup { |
| 49 | name: "core-luni-resources", |
| 50 | visibility: [ |
| 51 | "//libcore:__subpackages__", |
| 52 | ], |
| 53 | path: "luni/src/main/java/", |
| 54 | srcs: [ |
Tobias Thierer | 79eea26 | 2019-08-01 14:05:11 +0100 | [diff] [blame] | 55 | "luni/src/main/java/java/util/logging/logging.properties", |
| 56 | "luni/src/main/java/java/security/security.properties", |
| 57 | ], |
| 58 | } |
| 59 | |
| 60 | filegroup { |
| 61 | name: "core-ojluni-resources", |
| 62 | visibility: [ |
| 63 | "//libcore:__subpackages__", |
| 64 | ], |
| 65 | path: "ojluni/src/main/resources/", |
| 66 | srcs: [ |
| 67 | "ojluni/src/main/resources/**/*", |
| 68 | ], |
| 69 | } |
| 70 | |
| 71 | core_resources = [ |
| 72 | ":core-luni-resources", |
| 73 | ":core-ojluni-resources", |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 74 | ] |
| 75 | |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 76 | // The source files that go into core-oj. |
| 77 | filegroup { |
| 78 | name: "core_oj_java_files", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 79 | visibility: [ |
| 80 | "//libcore:__subpackages__", |
| 81 | ], |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 82 | srcs: [":openjdk_java_files"], |
| 83 | } |
| 84 | |
Neil Fuller | e32e2e1 | 2019-02-26 11:48:30 +0000 | [diff] [blame] | 85 | // OpenJDK source is not annotated with @hide so we need this separate |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 86 | // filegroup for just the parts that contribute to the API. |
| 87 | filegroup { |
| 88 | name: "core_oj_api_files", |
| 89 | srcs: [":openjdk_javadoc_files"], |
| 90 | } |
| 91 | |
| 92 | // The source files that go into core-libart. |
| 93 | filegroup { |
| 94 | name: "core_libart_java_files", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 95 | visibility: [ |
| 96 | "//libcore:__subpackages__", |
| 97 | ], |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 98 | srcs: [ |
| 99 | ":non_openjdk_java_files", |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 100 | ], |
| 101 | } |
| 102 | |
Neil Fuller | e32e2e1 | 2019-02-26 11:48:30 +0000 | [diff] [blame] | 103 | // 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] | 104 | // filegroup for just the parts that contribute to the API. |
| 105 | filegroup { |
| 106 | name: "core_libart_api_files", |
| 107 | srcs: [ |
| 108 | ":non_openjdk_javadoc_files", |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 109 | ], |
| 110 | } |
| 111 | |
Neil Fuller | e32e2e1 | 2019-02-26 11:48:30 +0000 | [diff] [blame] | 112 | // The set of files for the core library that have been marked up with @hide |
| 113 | // for the public SDK APIs. Used from frameworks/base/ to indicate the source |
| 114 | // files for inclusion in the public SDK docs. |
Paul Duffin | e59d0aa | 2019-10-04 09:52:59 +0100 | [diff] [blame] | 115 | // |
| 116 | // Deprecated: Will be replaced by core-current-stubs-source. |
Neil Fuller | e32e2e1 | 2019-02-26 11:48:30 +0000 | [diff] [blame] | 117 | filegroup { |
| 118 | name: "core_public_api_files", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 119 | visibility: [ |
| 120 | "//frameworks/base", |
| 121 | ], |
Neil Fuller | e32e2e1 | 2019-02-26 11:48:30 +0000 | [diff] [blame] | 122 | srcs: [ |
Victor Chang | 3719d06 | 2019-10-28 19:05:37 +0000 | [diff] [blame] | 123 | ":android_icu4j_public_api_files", |
Neil Fuller | e32e2e1 | 2019-02-26 11:48:30 +0000 | [diff] [blame] | 124 | ], |
| 125 | } |
| 126 | |
Paul Duffin | e59d0aa | 2019-10-04 09:52:59 +0100 | [diff] [blame] | 127 | // Contains the stubs source for the part of the Android SDK public API which |
| 128 | // is provided by the core libraries. |
| 129 | // |
| 130 | // Currently is only a placeholder that creates an empty srcjar due to issues |
| 131 | // caused by http://b/142113901. |
| 132 | // |
| 133 | // TODO(http://b/142113521) - Add stubs source for the core library modules. |
| 134 | genrule { |
| 135 | name: "core-current-stubs-source", |
| 136 | visibility: [ |
| 137 | "//frameworks/base", |
| 138 | ], |
| 139 | tools: [ |
| 140 | "merge_zips", |
| 141 | ], |
Paul Duffin | bd7f910 | 2019-10-04 09:52:59 +0100 | [diff] [blame] | 142 | srcs: [ |
Paul Duffin | fe5f63c | 2019-10-11 09:53:11 +0100 | [diff] [blame] | 143 | ":art-module-public-api-stubs-source", |
Paul Duffin | bd7f910 | 2019-10-04 09:52:59 +0100 | [diff] [blame] | 144 | ":conscrypt-module-public-api-stubs-source", |
| 145 | ], |
Paul Duffin | e59d0aa | 2019-10-04 09:52:59 +0100 | [diff] [blame] | 146 | out: ["core-current-stubs-source.srcjar"], |
Paul Duffin | bd7f910 | 2019-10-04 09:52:59 +0100 | [diff] [blame] | 147 | cmd: "$(location merge_zips) $(out)" + |
Paul Duffin | fe5f63c | 2019-10-11 09:53:11 +0100 | [diff] [blame] | 148 | " $(location :art-module-public-api-stubs-source)" + |
Paul Duffin | bd7f910 | 2019-10-04 09:52:59 +0100 | [diff] [blame] | 149 | " $(location :conscrypt-module-public-api-stubs-source)", |
Paul Duffin | e59d0aa | 2019-10-04 09:52:59 +0100 | [diff] [blame] | 150 | } |
| 151 | |
Paul Duffin | a38da2d | 2019-10-01 17:49:50 +0100 | [diff] [blame] | 152 | // The set of files for the ART module that contribute to one or more API |
| 153 | // surfaces. This includes files that are in the public API as well as those |
| 154 | // that are not but which have been marked up with @hide plus one or more of |
| 155 | // the API defining annotations. |
| 156 | // |
| 157 | // Some source files in :core_oj_api_files and :openjdk_mmodule_extra_files are |
| 158 | // annotated by applying annotations to the .annotated.java stubs files in |
| 159 | // ojluni/annotated/mmodules and rather than in the original source. See the comments |
| 160 | // in openjdk_java_files.bp for more details. |
| 161 | filegroup { |
| 162 | name: "art_module_api_files", |
| 163 | visibility: [ |
| 164 | "//libcore:__subpackages__", |
| 165 | ], |
| 166 | srcs: [ |
Neil Fuller | d129bc9 | 2018-09-26 11:12:58 +0100 | [diff] [blame] | 167 | ":apache-xml_api_files", |
Neil Fuller | a77f710 | 2018-09-21 19:04:41 +0100 | [diff] [blame] | 168 | ":bouncycastle_java_files", |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 169 | ":core_oj_api_files", |
| 170 | ":core_libart_api_files", |
Neil Fuller | 641d5f9 | 2018-09-24 15:40:39 +0100 | [diff] [blame] | 171 | ":okhttp_api_files", |
Pete Gillin | c9935b6 | 2018-09-25 14:42:40 +0100 | [diff] [blame] | 172 | ":openjdk_mmodule_extra_files", |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 173 | ], |
| 174 | } |
| 175 | |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 176 | java_defaults { |
| 177 | name: "libcore_java_defaults", |
| 178 | javacflags: [ |
| 179 | //"-Xlint:all", |
| 180 | //"-Xlint:-serial,-deprecation,-unchecked", |
| 181 | ], |
| 182 | dxflags: ["--core-library"], |
Andreas Gampe | 66b3173 | 2018-02-20 09:22:16 -0800 | [diff] [blame] | 183 | errorprone: { |
| 184 | javacflags: [ |
Paul Duffin | c31f6bb | 2019-05-15 12:32:44 +0100 | [diff] [blame] | 185 | "-Xep:MissingOverride:OFF", // Ignore missing @Override. |
| 186 | "-Xep:ConstantOverflow:WARN", // Known constant overflow in SplittableRandom |
Andreas Gampe | 66b3173 | 2018-02-20 09:22:16 -0800 | [diff] [blame] | 187 | ], |
| 188 | }, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | // |
| 192 | // Build for the target (device). |
| 193 | // |
| 194 | |
Tobias Thierer | 5233164 | 2019-05-29 12:11:39 +0000 | [diff] [blame] | 195 | // A target used to bootstrap compilation for the core library. |
Paul Duffin | a8173c5 | 2019-09-24 13:04:42 +0100 | [diff] [blame] | 196 | // |
Tobias Thierer | 5233164 | 2019-05-29 12:11:39 +0000 | [diff] [blame] | 197 | // See core-all-system-modules for more details. |
| 198 | java_library { |
| 199 | name: "core-all", |
Tobias Thierer | 5233164 | 2019-05-29 12:11:39 +0000 | [diff] [blame] | 200 | defaults: ["libcore_java_defaults"], |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 201 | |
| 202 | srcs: [ |
Paul Duffin | f975b71 | 2019-10-02 12:37:38 +0100 | [diff] [blame] | 203 | // Use the source code for the I18N module intra core API as using the |
| 204 | // compiled version does not work due to limitations in either soong or the javac |
| 205 | // toolchain. See http://b/142056316 for more details. |
| 206 | ":i18n-module-intra-core-api-stubs-source", |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 207 | ":core_oj_java_files", |
| 208 | ":core_libart_java_files", |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 209 | ":openjdk_lambda_stub_files", |
Pete Gillin | 5403581 | 2019-05-08 15:09:39 +0100 | [diff] [blame] | 210 | ":openjdk_generated_annotation_stub_files", |
atrost | 69474bb | 2019-11-04 17:06:25 +0000 | [diff] [blame] | 211 | ":app-compat-annotations-source", |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 212 | ], |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 213 | |
Paul Duffin | 83c2538 | 2019-06-07 14:10:49 +0100 | [diff] [blame] | 214 | sdk_version: "none", |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 215 | system_modules: "none", |
Paul Duffin | 1d7d4a7 | 2019-10-10 18:15:01 +0100 | [diff] [blame] | 216 | patch_module: "java.base", |
Colin Cross | a4d9fc4 | 2017-09-29 18:04:37 -0700 | [diff] [blame] | 217 | openjdk9: { |
| 218 | srcs: ["luni/src/module/java/module-info.java"], |
Colin Cross | a4d9fc4 | 2017-09-29 18:04:37 -0700 | [diff] [blame] | 219 | }, |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 220 | |
Tobias Thierer | 79eea26 | 2019-08-01 14:05:11 +0100 | [diff] [blame] | 221 | java_resources: core_resources, |
Tobias Thierer | de99123 | 2018-03-07 15:10:46 +0000 | [diff] [blame] | 222 | java_version: "1.9", |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 223 | |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 224 | installable: false, |
atrost | 98ec08d | 2019-08-05 12:23:41 +0100 | [diff] [blame] | 225 | |
Artur Satayev | a09cba0 | 2020-02-19 16:43:32 +0000 | [diff] [blame] | 226 | plugins: [ |
| 227 | "compat-changeid-annotation-processor", |
| 228 | "unsupportedappusage-annotation-processor", |
| 229 | ], |
atrost | 98ec08d | 2019-08-05 12:23:41 +0100 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | platform_compat_config { |
| 233 | name: "libcore-platform-compat-config", |
atrost | 98ec08d | 2019-08-05 12:23:41 +0100 | [diff] [blame] | 234 | src: ":core-all", |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 235 | } |
| 236 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 237 | // A system modules definition for use by core library targets only. It only |
| 238 | // contains the core-all jar, which contains the classes that end up in core-oj, |
| 239 | // core-libart as well as the lambda stubs needed to compile Java lambda code. |
| 240 | // It does not contain other parts of core library like conscrypt, bouncycastle, |
| 241 | // etc. This system_modules definition is used to bootstrap compilation for |
Paul Duffin | 00b174e | 2019-09-26 16:22:17 +0100 | [diff] [blame] | 242 | // other parts of the core library like core-oj, core-libart, conscrypt, |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 243 | // bouncycastle, etc. |
Colin Cross | a4d9fc4 | 2017-09-29 18:04:37 -0700 | [diff] [blame] | 244 | java_system_modules { |
| 245 | name: "core-all-system-modules", |
Paul Duffin | a8173c5 | 2019-09-24 13:04:42 +0100 | [diff] [blame] | 246 | |
| 247 | // Visibility is deliberately restricted to a small set of build modules that |
| 248 | // the core library team control. |
| 249 | visibility: [ |
| 250 | "//external/apache-harmony:__subpackages__", |
| 251 | "//external/apache-xml", |
Paul Duffin | a8173c5 | 2019-09-24 13:04:42 +0100 | [diff] [blame] | 252 | "//external/okhttp", |
| 253 | "//libcore:__subpackages__", |
| 254 | ], |
| 255 | |
Colin Cross | a4d9fc4 | 2017-09-29 18:04:37 -0700 | [diff] [blame] | 256 | libs: ["core-all"], |
| 257 | } |
| 258 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 259 | // Contains the parts of core library associated with OpenJDK. |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 260 | java_library { |
| 261 | name: "core-oj", |
Paul Duffin | 48ac7b6 | 2019-03-28 14:28:06 +0000 | [diff] [blame] | 262 | visibility: [ |
| 263 | "//art/build/apex", |
| 264 | "//external/wycheproof", |
Paul Duffin | 94f7023 | 2019-05-22 16:22:29 +0100 | [diff] [blame] | 265 | "//libcore/benchmarks", |
Paul Duffin | 48ac7b6 | 2019-03-28 14:28:06 +0000 | [diff] [blame] | 266 | ], |
Jiyong Park | b916cac | 2019-12-19 02:12:09 +0000 | [diff] [blame] | 267 | apex_available: [ |
| 268 | "com.android.art.release", |
| 269 | "com.android.art.debug", |
| 270 | ], |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 271 | defaults: ["libcore_java_defaults"], |
Colin Cross | 5b75cdd | 2018-06-27 11:00:13 -0700 | [diff] [blame] | 272 | installable: true, |
Colin Cross | bb180be | 2017-10-09 14:54:53 -0700 | [diff] [blame] | 273 | hostdex: true, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 274 | |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 275 | srcs: [":core_oj_java_files"], |
Tobias Thierer | 79eea26 | 2019-08-01 14:05:11 +0100 | [diff] [blame] | 276 | java_resources: core_resources, |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 277 | |
Paul Duffin | 83c2538 | 2019-06-07 14:10:49 +0100 | [diff] [blame] | 278 | sdk_version: "none", |
Colin Cross | a4d9fc4 | 2017-09-29 18:04:37 -0700 | [diff] [blame] | 279 | system_modules: "core-all-system-modules", |
Paul Duffin | 1d7d4a7 | 2019-10-10 18:15:01 +0100 | [diff] [blame] | 280 | patch_module: "java.base", |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 281 | |
Pete Gillin | 7a7a6d2 | 2017-12-19 14:56:03 +0000 | [diff] [blame] | 282 | jacoco: { |
Pete Gillin | 27ca058 | 2018-01-10 17:04:17 +0000 | [diff] [blame] | 283 | exclude_filter: [ |
Pete Gillin | 3f59bad | 2018-01-30 11:20:29 +0000 | [diff] [blame] | 284 | "java.lang.Class", |
| 285 | "java.lang.Long", |
| 286 | "java.lang.Number", |
| 287 | "java.lang.Object", |
| 288 | "java.lang.String", |
| 289 | "java.lang.invoke.MethodHandle", |
| 290 | "java.lang.ref.Reference", |
| 291 | "java.lang.reflect.Proxy", |
Pete Gillin | b1868ada | 2018-01-17 11:03:10 +0000 | [diff] [blame] | 292 | "java.util.AbstractMap", |
Pete Gillin | 3f59bad | 2018-01-30 11:20:29 +0000 | [diff] [blame] | 293 | "java.util.HashMap", |
| 294 | "java.util.HashMap$Node", |
Pete Gillin | b1868ada | 2018-01-17 11:03:10 +0000 | [diff] [blame] | 295 | "java.util.Map", |
Pete Gillin | 7a7a6d2 | 2017-12-19 14:56:03 +0000 | [diff] [blame] | 296 | ], |
| 297 | }, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 298 | |
| 299 | notice: "ojluni/NOTICE", |
| 300 | |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 301 | } |
| 302 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 303 | // Contains parts of core library not associated with OpenJDK. Contains not |
Victor Chang | cad47af | 2019-08-06 16:33:38 +0100 | [diff] [blame] | 304 | // just java.*, javax.* code but also android.system.* and various internal |
| 305 | // libcore.* packages. |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 306 | java_library { |
| 307 | name: "core-libart", |
Paul Duffin | 48ac7b6 | 2019-03-28 14:28:06 +0000 | [diff] [blame] | 308 | visibility: [ |
| 309 | "//art/build/apex", |
| 310 | "//external/robolectric-shadows", |
| 311 | "//external/wycheproof", |
Paul Duffin | 94f7023 | 2019-05-22 16:22:29 +0100 | [diff] [blame] | 312 | "//libcore/benchmarks", |
Colin Cross | f0ef625 | 2019-05-31 08:26:47 -0700 | [diff] [blame] | 313 | "//frameworks/layoutlib", |
Paul Duffin | 48ac7b6 | 2019-03-28 14:28:06 +0000 | [diff] [blame] | 314 | ], |
Jiyong Park | b916cac | 2019-12-19 02:12:09 +0000 | [diff] [blame] | 315 | apex_available: [ |
| 316 | "com.android.art.release", |
| 317 | "com.android.art.debug", |
| 318 | ], |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 319 | defaults: ["libcore_java_defaults"], |
Colin Cross | 5b75cdd | 2018-06-27 11:00:13 -0700 | [diff] [blame] | 320 | installable: true, |
Colin Cross | bb180be | 2017-10-09 14:54:53 -0700 | [diff] [blame] | 321 | hostdex: true, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 322 | |
Neil Fuller | 866ed4a | 2018-09-06 12:05:46 +0100 | [diff] [blame] | 323 | srcs: [":core_libart_java_files"], |
Tobias Thierer | de99123 | 2018-03-07 15:10:46 +0000 | [diff] [blame] | 324 | java_version: "1.9", |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 325 | |
Paul Duffin | 83c2538 | 2019-06-07 14:10:49 +0100 | [diff] [blame] | 326 | sdk_version: "none", |
Colin Cross | a4d9fc4 | 2017-09-29 18:04:37 -0700 | [diff] [blame] | 327 | system_modules: "core-all-system-modules", |
Paul Duffin | 1d7d4a7 | 2019-10-10 18:15:01 +0100 | [diff] [blame] | 328 | patch_module: "java.base", |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 329 | |
Pete Gillin | 80ebe87 | 2018-02-13 15:21:20 +0000 | [diff] [blame] | 330 | jacoco: { |
| 331 | exclude_filter: [ |
| 332 | "java.lang.DexCache", |
| 333 | "dalvik.system.ClassExt", |
| 334 | ], |
| 335 | }, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 336 | |
Andreas Gampe | 9a1ba89 | 2019-04-24 12:35:40 -0700 | [diff] [blame] | 337 | target: { |
| 338 | hostdex: { |
| 339 | required: [ |
Neil Fuller | 53c5f03 | 2019-06-05 13:47:39 +0100 | [diff] [blame] | 340 | // Files used to simulate the /system, runtime APEX and tzdata |
| 341 | // APEX dir structure on host. |
| 342 | "icu_tzdata.dat_host_tzdata_apex", |
Andreas Gampe | 9a1ba89 | 2019-04-24 12:35:40 -0700 | [diff] [blame] | 343 | "tzdata_host", |
Neil Fuller | 53c5f03 | 2019-06-05 13:47:39 +0100 | [diff] [blame] | 344 | "tzdata_host_tzdata_apex", |
Neil Fuller | 53c5f03 | 2019-06-05 13:47:39 +0100 | [diff] [blame] | 345 | "tzlookup.xml_host_tzdata_apex", |
Andreas Gampe | 9a1ba89 | 2019-04-24 12:35:40 -0700 | [diff] [blame] | 346 | "tz_version_host", |
Neil Fuller | 53c5f03 | 2019-06-05 13:47:39 +0100 | [diff] [blame] | 347 | "tz_version_host_tzdata_apex", |
Andreas Gampe | 9a1ba89 | 2019-04-24 12:35:40 -0700 | [diff] [blame] | 348 | ], |
| 349 | }, |
| 350 | }, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 351 | } |
| 352 | |
Paul Duffin | 7bb8d23 | 2018-10-23 11:48:38 +0100 | [diff] [blame] | 353 | // Provided solely to contribute information about which hidden parts of the |
| 354 | // core-oj API are used by apps. |
Paul Duffin | c6bf27b | 2019-05-15 14:41:00 +0100 | [diff] [blame] | 355 | // |
| 356 | // The build system determines that this library provides hiddenapi information |
| 357 | // for the core-oj bootjar because its name is of the form <x>-hiddenapi, where |
| 358 | // <x> is the name of a boot jar. That triggers the generation of a flags.csv |
| 359 | // file which encapsulates information extracted from the UnsupportedAppUsage |
| 360 | // annotations in the dex. The information from that file is then encoded into |
| 361 | // the core-oj file. |
| 362 | // |
| 363 | // Usually, e.g. for core-libart, the UnsupportedAppUsage annotations are |
| 364 | // added to the source that is compiled directly into the bootjar and the build |
| 365 | // system extracts the information about UnsupportedAppUsage directly from |
| 366 | // there. |
| 367 | // |
| 368 | // This approach of having separate annotated source and a separate build |
| 369 | // target was taken for ojluni to avoid having to maintain local patches in the |
| 370 | // ojluni source for UnsupportedAppUsage annotations as that would make it more |
| 371 | // difficult to pull down changes from upstream. |
| 372 | // |
Paul Duffin | 7bb8d23 | 2018-10-23 11:48:38 +0100 | [diff] [blame] | 373 | java_library { |
| 374 | name: "core-oj-hiddenapi", |
Paul Duffin | 48ac7b6 | 2019-03-28 14:28:06 +0000 | [diff] [blame] | 375 | // Do not allow this to be accessed from outside this directory. |
| 376 | visibility: ["//visibility:private"], |
Paul Duffin | 7bb8d23 | 2018-10-23 11:48:38 +0100 | [diff] [blame] | 377 | defaults: ["libcore_java_defaults"], |
| 378 | compile_dex: true, |
| 379 | |
| 380 | srcs: [":openjdk_hiddenapi_javadoc_files"], |
| 381 | |
Paul Duffin | 83c2538 | 2019-06-07 14:10:49 +0100 | [diff] [blame] | 382 | sdk_version: "none", |
Paul Duffin | 7bb8d23 | 2018-10-23 11:48:38 +0100 | [diff] [blame] | 383 | system_modules: "core-all-system-modules", |
Paul Duffin | 1d7d4a7 | 2019-10-10 18:15:01 +0100 | [diff] [blame] | 384 | patch_module: "java.base", |
Artur Satayev | a09cba0 | 2020-02-19 16:43:32 +0000 | [diff] [blame] | 385 | plugins: ["unsupportedappusage-annotation-processor"], |
Paul Duffin | 7bb8d23 | 2018-10-23 11:48:38 +0100 | [diff] [blame] | 386 | } |
| 387 | |
Tobias Thierer | e0f8b31 | 2018-10-23 23:12:30 +0100 | [diff] [blame] | 388 | java_defaults { |
| 389 | name: "core_lambda_stubs_defaults", |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 390 | defaults: ["libcore_java_defaults"], |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 391 | hostdex: true, |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 392 | |
Paul Duffin | 83c2538 | 2019-06-07 14:10:49 +0100 | [diff] [blame] | 393 | sdk_version: "none", |
Colin Cross | a4d9fc4 | 2017-09-29 18:04:37 -0700 | [diff] [blame] | 394 | system_modules: "core-all-system-modules", |
Paul Duffin | 1d7d4a7 | 2019-10-10 18:15:01 +0100 | [diff] [blame] | 395 | patch_module: "java.base", |
Colin Cross | af0b54c | 2017-09-27 17:22:32 -0700 | [diff] [blame] | 396 | |
| 397 | notice: "ojluni/NOTICE", |
| 398 | |
| 399 | installable: false, |
| 400 | include_srcs: true, |
| 401 | } |
Colin Cross | a4d9fc4 | 2017-09-29 18:04:37 -0700 | [diff] [blame] | 402 | |
Tobias Thierer | e0f8b31 | 2018-10-23 23:12:30 +0100 | [diff] [blame] | 403 | // Creates a jar that exists to satisfy javac when compiling source code that |
| 404 | // contains lambdas. This contains all classes / methods required by javac |
| 405 | // when generating invoke-dynamic lambda implementation code, even those that |
| 406 | // are also in the public SDK API from API level 26 onwards. |
| 407 | java_library { |
| 408 | name: "core-lambda-stubs", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 409 | visibility: ["//visibility:public"], |
Tobias Thierer | e0f8b31 | 2018-10-23 23:12:30 +0100 | [diff] [blame] | 410 | defaults: ["core_lambda_stubs_defaults"], |
| 411 | srcs: [ |
| 412 | ":openjdk_lambda_stub_files", |
| 413 | ":openjdk_lambda_duplicate_stub_files", |
| 414 | ], |
| 415 | } |
| 416 | |
| 417 | // An alternative to core-lambda-stubs that omits openjdk_lambda_duplicate_stub_files |
| 418 | // because those classes are also part of the core library public SDK API |
| 419 | // (since API level 26). |
| 420 | java_library { |
| 421 | name: "core-lambda-stubs-for-system-modules", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 422 | visibility: [ |
| 423 | "//libcore/mmodules/core_platform_api", |
| 424 | ], |
Tobias Thierer | e0f8b31 | 2018-10-23 23:12:30 +0100 | [diff] [blame] | 425 | defaults: ["core_lambda_stubs_defaults"], |
| 426 | srcs: [ |
| 427 | ":openjdk_lambda_stub_files", |
| 428 | ], |
| 429 | } |
| 430 | |
Pete Gillin | 5403581 | 2019-05-08 15:09:39 +0100 | [diff] [blame] | 431 | // Creates a jar that exists to satisfy javac when compiling source code that |
| 432 | // contains @Generated annotations, which are produced by some code generation |
| 433 | // tools (notably dagger) but aren't part of the Android API. |
| 434 | // See http://b/123891440. |
| 435 | java_library { |
| 436 | name: "core-generated-annotation-stubs", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 437 | visibility: [ |
| 438 | "//libcore/mmodules/core_platform_api", |
| 439 | ], |
Pete Gillin | 5403581 | 2019-05-08 15:09:39 +0100 | [diff] [blame] | 440 | defaults: ["libcore_java_defaults"], |
| 441 | srcs: [ |
| 442 | ":openjdk_generated_annotation_stub_files", |
| 443 | ], |
| 444 | hostdex: true, |
Paul Duffin | 83c2538 | 2019-06-07 14:10:49 +0100 | [diff] [blame] | 445 | sdk_version: "none", |
Pete Gillin | 5403581 | 2019-05-08 15:09:39 +0100 | [diff] [blame] | 446 | system_modules: "core-all-system-modules", |
Paul Duffin | 1d7d4a7 | 2019-10-10 18:15:01 +0100 | [diff] [blame] | 447 | patch_module: "java.base", |
Pete Gillin | 5403581 | 2019-05-08 15:09:39 +0100 | [diff] [blame] | 448 | notice: "ojluni/NOTICE", |
| 449 | installable: false, |
| 450 | include_srcs: true, |
| 451 | } |
| 452 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 453 | // Builds libcore test rules |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 454 | java_library_static { |
| 455 | name: "core-test-rules", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 456 | visibility: [ |
Paul Duffin | 86abe9e | 2020-01-16 16:55:36 +0000 | [diff] [blame] | 457 | "//art/build/sdk", |
Paul Duffin | 01f6c02 | 2019-09-24 14:44:15 +0100 | [diff] [blame] | 458 | "//external/conscrypt", |
Daulet Zhanguzin | c6789a3 | 2020-03-19 20:30:59 +0000 | [diff] [blame] | 459 | "//external/conscrypt/apex/tests", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 460 | "//frameworks/base/location/tests/locationtests", |
David Su | 76713fc | 2019-12-06 16:33:09 -0800 | [diff] [blame] | 461 | "//frameworks/base/core/tests/coretests", |
David Su | 5355a77 | 2019-12-18 16:11:17 -0800 | [diff] [blame] | 462 | "//frameworks/base/wifi/tests", |
David Su | b97eda8 | 2020-03-05 17:24:05 -0800 | [diff] [blame] | 463 | "//cts/tests/tests/util", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 464 | ], |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 465 | hostdex: true, |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 466 | srcs: [ |
| 467 | "dalvik/test-rules/src/main/**/*.java", |
| 468 | "test-rules/src/main/**/*.java", |
| 469 | ], |
| 470 | static_libs: ["junit"], |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 471 | |
Paul Duffin | 83c2538 | 2019-06-07 14:10:49 +0100 | [diff] [blame] | 472 | sdk_version: "none", |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 473 | system_modules: "core-all-system-modules", |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 474 | } |
| 475 | |
Andrei Onea | e439225 | 2019-09-03 11:54:14 +0100 | [diff] [blame] | 476 | // Builds platform_compat test rules |
| 477 | java_library_static { |
Andrei Onea | 2829b54 | 2019-11-18 14:24:53 +0000 | [diff] [blame] | 478 | name: "core-compat-test-rules", |
| 479 | visibility: [ |
Paul Duffin | 86abe9e | 2020-01-16 16:55:36 +0000 | [diff] [blame] | 480 | "//art/build/sdk", |
Andrei Onea | 2829b54 | 2019-11-18 14:24:53 +0000 | [diff] [blame] | 481 | "//frameworks/base/tests/PlatformCompatGating/test-rules", |
| 482 | ], |
Andrei Onea | e439225 | 2019-09-03 11:54:14 +0100 | [diff] [blame] | 483 | srcs: [ |
| 484 | "luni/src/main/java/android/compat/**/*.java", |
| 485 | "test-rules/src/platform_compat/**/*.java", |
| 486 | "luni/src/main/java/libcore/api/CorePlatformApi.java", |
| 487 | "luni/src/main/java/libcore/api/IntraCoreApi.java", |
Andrei Onea | e439225 | 2019-09-03 11:54:14 +0100 | [diff] [blame] | 488 | ], |
| 489 | static_libs: [ |
| 490 | "junit", |
| 491 | "guava", |
Andrei Onea | e439225 | 2019-09-03 11:54:14 +0100 | [diff] [blame] | 492 | ], |
Andrei Onea | 2829b54 | 2019-11-18 14:24:53 +0000 | [diff] [blame] | 493 | sdk_version: "none", |
| 494 | system_modules: "core-all-system-modules", |
Pete Gillin | 7fb42bb | 2019-10-14 11:36:45 +0100 | [diff] [blame] | 495 | // This builds classes that are in the java.base Java module: |
| 496 | patch_module: "java.base", |
Andrei Onea | 2829b54 | 2019-11-18 14:24:53 +0000 | [diff] [blame] | 497 | hostdex: true, |
Andrei Onea | e439225 | 2019-09-03 11:54:14 +0100 | [diff] [blame] | 498 | } |
| 499 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 500 | // Builds the core-tests-support library used by various tests. |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 501 | java_library_static { |
| 502 | name: "core-tests-support", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 503 | visibility: [ |
Paul Duffin | 86abe9e | 2020-01-16 16:55:36 +0000 | [diff] [blame] | 504 | "//art/build/sdk", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 505 | "//cts/apps/CtsVerifier", |
| 506 | "//cts/tests/tests/keystore", |
| 507 | "//cts/tests/tests/net", |
| 508 | "//cts/tests/tests/net/api23Test", |
| 509 | "//external/apache-harmony", |
| 510 | "//frameworks/base/core/tests/coretests", |
| 511 | "//libcore/benchmarks", |
| 512 | "//packages/apps/KeyChain/tests", |
| 513 | "//system/timezone/distro/core", |
| 514 | ], |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 515 | hostdex: true, |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 516 | srcs: ["support/src/test/java/**/*.java"], |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 517 | |
Paul Duffin | 53c491f | 2019-06-12 13:48:14 +0100 | [diff] [blame] | 518 | sdk_version: "core_platform", |
Neil Fuller | 4380ab2 | 2018-10-18 19:38:53 +0100 | [diff] [blame] | 519 | libs: ["junit"], |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 520 | static_libs: [ |
Neil Fuller | de8b086 | 2018-10-12 21:53:31 +0100 | [diff] [blame] | 521 | "bouncycastle-unbundled", |
| 522 | "bouncycastle-bcpkix-unbundled", |
| 523 | "bouncycastle-ocsp-unbundled", |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 524 | ], |
| 525 | } |
| 526 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 527 | // Builds the jsr166-tests library. |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 528 | java_test { |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 529 | name: "jsr166-tests", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 530 | visibility: [ |
| 531 | "//cts/tests/libcore/jsr166", |
| 532 | ], |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 533 | srcs: ["jsr166-tests/src/test/java/**/*.java"], |
Paul Duffin | 83c2538 | 2019-06-07 14:10:49 +0100 | [diff] [blame] | 534 | sdk_version: "none", |
Paul Duffin | 0e0f8c4 | 2019-09-20 14:49:55 +0100 | [diff] [blame] | 535 | system_modules: "core-all-system-modules", |
Colin Cross | 3c6c2e2 | 2017-10-18 13:24:52 -0700 | [diff] [blame] | 536 | libs: [ |
| 537 | "junit", |
| 538 | ], |
| 539 | } |
Nan Zhang | 65f27a3 | 2018-01-05 10:41:46 -0800 | [diff] [blame] | 540 | |
Pete Gillin | ec902b8 | 2019-06-26 17:23:00 +0100 | [diff] [blame] | 541 | // A filegroup that provides access to a source file for a toolchain test that |
| 542 | // checks Java 9 language features are handled properly by JarJar. |
| 543 | filegroup { |
| 544 | name: "core-java-9-language-features-source", |
| 545 | srcs: ["luni/src/main/java/libcore/internal/Java9LanguageFeatures.java"], |
| 546 | visibility: ["//libcore/luni/src/test/java9language"], |
| 547 | } |
| 548 | |
Dan Zimmerman | c2bd7fd | 2019-12-17 08:15:44 -0800 | [diff] [blame] | 549 | genrule { |
| 550 | name: "core-tests-smali-dex", |
| 551 | srcs: ["luni/src/test/java/**/*.smali"], |
| 552 | cmd: "$(location smali) ass --api 28 -o $(out) $(in)", |
| 553 | out: ["core-tests-smali.dex"], |
| 554 | tools: ["smali"], |
| 555 | } |
| 556 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 557 | // Builds the core-tests library. |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 558 | java_test { |
| 559 | name: "core-tests", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 560 | visibility: [ |
| 561 | "//cts/tests/libcore/luni", |
| 562 | ], |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 563 | defaults: ["libcore_java_defaults"], |
| 564 | hostdex: true, |
| 565 | srcs: [ |
| 566 | "dalvik/src/test/java/**/*.java", |
| 567 | "dalvik/test-rules/src/test/java/**/*.java", |
| 568 | "dom/src/test/java/**/*.java", |
| 569 | "harmony-tests/src/test/java/**/*.java", |
| 570 | "json/src/test/java/**/*.java", |
| 571 | "luni/src/test/java/**/*.java", |
Paul Duffin | 4ba1453 | 2019-03-21 10:32:41 +0000 | [diff] [blame] | 572 | "test-rules/src/test/java/**/*.java", |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 573 | "xml/src/test/java/**/*.java", |
| 574 | ], |
| 575 | exclude_srcs: [ |
| 576 | "luni/src/test/java/libcore/java/util/zip/Zip64Test.java", |
| 577 | "luni/src/test/java/libcore/java/util/zip/Zip64FileTest.java", |
| 578 | ], |
| 579 | |
| 580 | java_resource_dirs: [ |
| 581 | "*/src/test/java", |
| 582 | "*/src/test/resources", |
| 583 | ], |
| 584 | exclude_java_resource_dirs: [ |
| 585 | "ojluni/src/test/java", |
| 586 | "ojluni/src/test/resources", |
| 587 | ], |
| 588 | |
| 589 | java_resources: [ |
Paul Duffin | 16a057f | 2019-05-13 12:20:55 +0100 | [diff] [blame] | 590 | ":annotations-test", |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 591 | ":filesystemstest", |
| 592 | ":parameter-metadata-test", |
Dan Zimmerman | c2bd7fd | 2019-12-17 08:15:44 -0800 | [diff] [blame] | 593 | ":core-tests-smali-dex", |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 594 | ], |
| 595 | |
Paul Duffin | 83c2538 | 2019-06-07 14:10:49 +0100 | [diff] [blame] | 596 | sdk_version: "none", |
Paul Duffin | 0e0f8c4 | 2019-09-20 14:49:55 +0100 | [diff] [blame] | 597 | system_modules: "core-all-system-modules", |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 598 | libs: [ |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 599 | "okhttp", |
| 600 | "bouncycastle", |
| 601 | ], |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 602 | |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 603 | static_libs: [ |
Andrei Onea | 2829b54 | 2019-11-18 14:24:53 +0000 | [diff] [blame] | 604 | "core-compat-test-rules", |
Pete Gillin | 05a4320 | 2019-06-27 14:41:21 +0100 | [diff] [blame] | 605 | "core-java-9-language-tests", |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 606 | "core-test-rules", |
| 607 | "core-tests-support", |
| 608 | "junit-params", |
| 609 | "mockftpserver", |
| 610 | "mockito-target", |
| 611 | "mockwebserver", |
| 612 | "nist-pkix-tests", |
| 613 | "slf4j-jdk14", |
| 614 | "sqlite-jdbc", |
| 615 | "tzdata-testing", |
Nicolas Geoffray | a08954d | 2019-12-28 13:26:18 +0000 | [diff] [blame] | 616 | "truth-prebuilt-jar", |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 617 | ], |
| 618 | |
| 619 | errorprone: { |
| 620 | javacflags: [ |
| 621 | "-Xep:TryFailThrowable:ERROR", |
| 622 | "-Xep:ComparisonOutOfRange:ERROR", |
| 623 | ], |
| 624 | }, |
Simran Basi | 3be01e0 | 2018-08-21 17:53:49 -0700 | [diff] [blame] | 625 | |
| 626 | test_config: "AndroidTest-core-tests.xml", |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 627 | } |
| 628 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 629 | // Builds the core-ojtests library that contains test code from OpenJDK. |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 630 | java_test { |
| 631 | name: "core-ojtests", |
| 632 | defaults: ["libcore_java_defaults"], |
| 633 | hostdex: true, |
| 634 | |
| 635 | srcs: [ |
| 636 | "ojluni/src/test/java/**/*.java", |
| 637 | ], |
| 638 | java_resource_dirs: [ |
| 639 | "ojluni/src/test/java", |
| 640 | "ojluni/src/test/resources", |
| 641 | ], |
Neil Fuller | b669ccb | 2018-10-04 23:10:27 +0100 | [diff] [blame] | 642 | |
Paul Duffin | 83c2538 | 2019-06-07 14:10:49 +0100 | [diff] [blame] | 643 | sdk_version: "none", |
Paul Duffin | 0e0f8c4 | 2019-09-20 14:49:55 +0100 | [diff] [blame] | 644 | system_modules: "core-all-system-modules", |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 645 | libs: [ |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 646 | "okhttp", |
| 647 | "bouncycastle", |
| 648 | ], |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 649 | |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 650 | static_libs: ["testng"], |
| 651 | |
| 652 | // ojluni/src/test/java/util/stream/{bootlib,boottest} |
| 653 | // contains tests that are in packages from java.base; |
| 654 | // By default, OpenJDK 9's javac will only compile such |
| 655 | // code if it's declared to also be in java.base at |
| 656 | // compile time. |
| 657 | // |
Paul Duffin | 1d7d4a7 | 2019-10-10 18:15:01 +0100 | [diff] [blame] | 658 | // For now, we use patch_module to put all sources |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 659 | // and dependencies from this make target into java.base; |
| 660 | // other source directories in this make target are in |
| 661 | // packages not from java.base; if this becomes a problem |
| 662 | // in future, this could be addressed eg. by splitting |
| 663 | // boot{lib,test} out into a separate make target, |
| 664 | // deleting those tests or moving them to a different |
| 665 | // package. |
| 666 | patch_module: "java.base", |
| 667 | } |
| 668 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 669 | // Builds the core-ojtests-public library. Excludes any private API tests. |
| 670 | // Like core-ojtests but smaller. |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 671 | java_test { |
| 672 | name: "core-ojtests-public", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 673 | visibility: [ |
| 674 | "//cts/tests/libcore/ojluni", |
| 675 | ], |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 676 | defaults: ["libcore_java_defaults"], |
| 677 | srcs: [ |
| 678 | "ojluni/src/test/java/**/*.java", |
| 679 | ], |
| 680 | // Filter out the following: |
| 681 | // 1.) DeserializeMethodTest and SerializedLambdaTest, because they depends on stub classes |
| 682 | // and won't actually run, and |
| 683 | // 2.) util/stream/boot*. Those directories contain classes in the package java.util.stream; |
| 684 | // excluding them means we don't need patch_module: "java.base" |
| 685 | exclude_srcs: [ |
| 686 | "**/DeserializeMethodTest.java", |
| 687 | "**/SerializedLambdaTest.java", |
| 688 | "ojluni/src/test/java/util/stream/boot*/**/*", |
| 689 | ], |
| 690 | java_resource_dirs: [ |
| 691 | "ojluni/src/test/java", |
| 692 | "ojluni/src/test/resources", |
| 693 | // Include source code as part of JAR |
| 694 | "ojluni/src/test/dist", |
| 695 | ], |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 696 | |
Paul Duffin | 83c2538 | 2019-06-07 14:10:49 +0100 | [diff] [blame] | 697 | sdk_version: "none", |
Paul Duffin | 0e0f8c4 | 2019-09-20 14:49:55 +0100 | [diff] [blame] | 698 | system_modules: "core-all-system-modules", |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 699 | libs: [ |
Neil Fuller | 4207c7f | 2018-10-10 14:01:40 +0100 | [diff] [blame] | 700 | "bouncycastle", |
| 701 | "okhttp", |
| 702 | "testng", |
| 703 | ], |
Colin Cross | ec80f4f | 2018-08-15 21:17:11 -0700 | [diff] [blame] | 704 | } |
| 705 | |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 706 | // Exports annotated stubs source files in ojluni/annotations/sdk to make them |
| 707 | // available to metalava. Used for nullability annotations in OpenJDK source. |
Pete Gillin | 7db7faa | 2018-07-31 13:29:35 +0100 | [diff] [blame] | 708 | droiddoc_exported_dir { |
Pete Gillin | 0728b74 | 2018-09-17 15:41:45 +0100 | [diff] [blame] | 709 | name: "ojluni-annotated-sdk-stubs", |
| 710 | path: "ojluni/annotations/sdk", |
Pete Gillin | 7db7faa | 2018-07-31 13:29:35 +0100 | [diff] [blame] | 711 | } |
Paul Duffin | 48ac7b6 | 2019-03-28 14:28:06 +0000 | [diff] [blame] | 712 | |
Pete Gillin | 600c7cf | 2018-08-16 19:28:38 +0100 | [diff] [blame] | 713 | droiddoc_exported_dir { |
| 714 | name: "ojluni-annotated-nullability-stubs", |
| 715 | path: "ojluni/annotations/sdk/nullability", |
| 716 | } |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 717 | |
| 718 | // Exports annotated stubs source files in ojluni/annotations/mmodules to make |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 719 | // them available to metalava. Used for core platform API and intra-core API |
Neil Fuller | 77e3f3b | 2018-10-19 10:22:32 +0100 | [diff] [blame] | 720 | // annotations in OpenJDK source. |
Pete Gillin | c9935b6 | 2018-09-25 14:42:40 +0100 | [diff] [blame] | 721 | droiddoc_exported_dir { |
| 722 | name: "ojluni-annotated-mmodule-stubs", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 723 | visibility: [ |
| 724 | "//libcore/mmodules/core_platform_api", |
| 725 | "//libcore/mmodules/intracoreapi", |
| 726 | ], |
Pete Gillin | c9935b6 | 2018-09-25 14:42:40 +0100 | [diff] [blame] | 727 | path: "ojluni/annotations/mmodule", |
| 728 | } |
Pete Gillin | 7db7faa | 2018-07-31 13:29:35 +0100 | [diff] [blame] | 729 | |
Neil Fuller | 6f16b46 | 2018-09-04 15:40:39 +0100 | [diff] [blame] | 730 | // A file containing the list of tags that are "known" to us from the OpenJdk |
| 731 | // source code and so should not cause an error or warning. |
Nan Zhang | d55722b | 2018-02-27 15:08:20 -0800 | [diff] [blame] | 732 | filegroup { |
| 733 | name: "known-oj-tags", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 734 | visibility: [ |
| 735 | "//frameworks/base", |
| 736 | ], |
Nan Zhang | d55722b | 2018-02-27 15:08:20 -0800 | [diff] [blame] | 737 | srcs: [ |
| 738 | "known_oj_tags.txt", |
| 739 | ], |
| 740 | } |
Nan Zhang | 602fc0e | 2018-03-22 16:14:22 -0700 | [diff] [blame] | 741 | |
Paul Duffin | 5cd69e4 | 2019-10-11 17:12:23 +0100 | [diff] [blame] | 742 | // A special set of stubs containing the minimal set of self consistent |
| 743 | // classes for which a system module can be created. Every system module must |
| 744 | // contain the java.lang classes so the set was constructed by starting with |
| 745 | // the java.lang classes and then adding their transitive dependencies without |
| 746 | // splitting packages. So, if one class from a package is used then all classes |
| 747 | // in that package were added to the set. |
| 748 | // |
| 749 | // Needed for java-current-stubs-system-modules. |
| 750 | droidstubs { |
| 751 | name: "java-current-stubs-source", |
| 752 | srcs: [ |
| 753 | ":core_oj_api_files", |
| 754 | ":core_libart_api_files", |
| 755 | ], |
| 756 | java_version: "1.9", |
| 757 | installable: false, |
| 758 | sdk_version: "none", |
| 759 | system_modules: "none", |
| 760 | |
| 761 | args: "--stub-packages java.*:javax.*:org.w3c.dom.*:org.xml.sax.*", |
| 762 | } |
| 763 | |
| 764 | java_library { |
| 765 | name: "java.current.stubs", |
| 766 | srcs: [":java-current-stubs-source"], |
| 767 | errorprone: { |
| 768 | javacflags: [ |
| 769 | "-Xep:MissingOverride:OFF", |
| 770 | ], |
| 771 | }, |
| 772 | patch_module: "java.base", |
| 773 | sdk_version: "none", |
| 774 | system_modules: "none", |
| 775 | } |
| 776 | |
| 777 | // A special set of system modules needed to build art.module.public.api.stubs |
| 778 | // that contain nullability annotations when targeting java language level 1.9 |
| 779 | // and above. |
| 780 | java_system_modules { |
| 781 | name: "java-current-stubs-system-modules", |
| 782 | libs: [ |
| 783 | // Minimal set of classes required for a system module. |
| 784 | "java.current.stubs", |
| 785 | |
| 786 | // The nullability annotations used by the generated stubs. |
| 787 | "stub-annotations", |
| 788 | ], |
| 789 | } |
| 790 | |
Paul Duffin | 3f028ca | 2019-11-11 20:17:28 +0000 | [diff] [blame] | 791 | // http://b/129765390 Rewrite links to "platform" or "technotes" folders |
| 792 | // which are siblings (and thus outside of) {@docRoot}. |
| 793 | // |
| 794 | // We have to escape \ as \\ and $ as $$ here because they get resolved by |
| 795 | // different layers of the build tooling. The arguments are wrapped in '' so |
| 796 | // that the shell doesn't add yet another level of escaping. |
| 797 | rewrite_openjdk_doc_args = "--replace-documentation " + |
| 798 | // packages whose descendants to apply replacement to (all packages from |
| 799 | // libcore/ojluni/src/main/java that contribute to documentation). |
| 800 | "com.sun:java:javax:jdk.net:sun " + |
| 801 | // regex of the string to replace |
| 802 | "'(<a\\s+href\\s?=[\\*\\s]*\")(?:(?:\\{@docRoot\\}/\\.\\./)|(?:(?:\\.\\./)+))((?:platform|technotes).+)\">' " + |
| 803 | // replacement (with $1, $2 backreferences to the regex groups) |
| 804 | "'$$1https://docs.oracle.com/javase/8/docs/$$2\">' " |
| 805 | |
Paul Duffin | a8bb606 | 2019-09-25 15:50:13 +0100 | [diff] [blame] | 806 | // Generates stubs for the parts of the public SDK API provided by the ART module. |
Paul Duffin | 0ca3cbe | 2019-02-14 15:47:58 +0000 | [diff] [blame] | 807 | // |
Paul Duffin | a8bb606 | 2019-09-25 15:50:13 +0100 | [diff] [blame] | 808 | // Only for use by art.module.public.api.stubs target below. |
Nan Zhang | f020760 | 2018-09-10 18:57:38 -0700 | [diff] [blame] | 809 | droidstubs { |
Paul Duffin | 3514982 | 2019-10-11 10:38:51 +0100 | [diff] [blame] | 810 | name: "art-module-public-api-stubs-source", |
Paul Duffin | 53690cb | 2019-09-19 15:11:28 +0100 | [diff] [blame] | 811 | srcs: [ |
Paul Duffin | a8bb606 | 2019-09-25 15:50:13 +0100 | [diff] [blame] | 812 | ":core_oj_api_files", |
| 813 | ":core_libart_api_files", |
Paul Duffin | 53690cb | 2019-09-19 15:11:28 +0100 | [diff] [blame] | 814 | ], |
Tobias Thierer | de99123 | 2018-03-07 15:10:46 +0000 | [diff] [blame] | 815 | java_version: "1.9", |
Nan Zhang | 602fc0e | 2018-03-22 16:14:22 -0700 | [diff] [blame] | 816 | installable: false, |
Paul Duffin | 419b242 | 2019-06-25 15:42:05 +0100 | [diff] [blame] | 817 | sdk_version: "none", |
Paul Duffin | 5cd69e4 | 2019-10-11 17:12:23 +0100 | [diff] [blame] | 818 | system_modules: "java-current-stubs-system-modules", |
Paul Duffin | fe5f63c | 2019-10-11 09:53:11 +0100 | [diff] [blame] | 819 | libs: [ |
| 820 | // Provide access to I18N constants that are used to initialize |
| 821 | // constants in the public API. i.e. to allow the value of the |
| 822 | // java.text.CollectionElementIterator.NULLORDER to be initialized from |
| 823 | // android.icu.text.CollationElementIterator.NULLORDER. |
| 824 | "i18n.module.intra.core.api.stubs", |
| 825 | ], |
Paul Duffin | 5cd69e4 | 2019-10-11 17:12:23 +0100 | [diff] [blame] | 826 | |
Paul Duffin | 3f028ca | 2019-11-11 20:17:28 +0000 | [diff] [blame] | 827 | args: rewrite_openjdk_doc_args, |
| 828 | |
Paul Duffin | 5cd69e4 | 2019-10-11 17:12:23 +0100 | [diff] [blame] | 829 | create_doc_stubs: true, |
| 830 | |
| 831 | // Emit nullability annotations from the source to the stub files. |
Paul Duffin | c3e1c0a | 2019-11-01 20:29:36 +0000 | [diff] [blame] | 832 | annotations_enabled: true, |
| 833 | |
| 834 | merge_annotations_dirs: [ |
Paul Duffin | c3e1c0a | 2019-11-01 20:29:36 +0000 | [diff] [blame] | 835 | "ojluni-annotated-sdk-stubs", |
| 836 | ], |
Nan Zhang | 602fc0e | 2018-03-22 16:14:22 -0700 | [diff] [blame] | 837 | } |
| 838 | |
Paul Duffin | a8bb606 | 2019-09-25 15:50:13 +0100 | [diff] [blame] | 839 | // A stubs target containing the parts of the public SDK API provided by the ART module. |
| 840 | java_library { |
| 841 | name: "art.module.public.api.stubs", |
Paul Duffin | 3514982 | 2019-10-11 10:38:51 +0100 | [diff] [blame] | 842 | srcs: [":art-module-public-api-stubs-source"], |
Paul Duffin | a8bb606 | 2019-09-25 15:50:13 +0100 | [diff] [blame] | 843 | errorprone: { |
| 844 | javacflags: [ |
| 845 | "-Xep:MissingOverride:OFF", |
| 846 | ], |
| 847 | }, |
Paul Duffin | 1d7d4a7 | 2019-10-10 18:15:01 +0100 | [diff] [blame] | 848 | patch_module: "java.base", |
Paul Duffin | a8bb606 | 2019-09-25 15:50:13 +0100 | [diff] [blame] | 849 | sdk_version: "none", |
Paul Duffin | 5cd69e4 | 2019-10-11 17:12:23 +0100 | [diff] [blame] | 850 | system_modules: "java-current-stubs-system-modules", |
Paul Duffin | a8bb606 | 2019-09-25 15:50:13 +0100 | [diff] [blame] | 851 | } |
| 852 | |
| 853 | // Used when compiling higher-level code against art.module.public.api.stubs. |
Paul Duffin | f545bc7 | 2019-10-02 14:07:04 +0100 | [diff] [blame] | 854 | // |
| 855 | // This is only intended for use within core libraries and must not be used |
| 856 | // from outside. |
Paul Duffin | a8bb606 | 2019-09-25 15:50:13 +0100 | [diff] [blame] | 857 | java_system_modules { |
| 858 | name: "art-module-public-api-stubs-system-modules", |
| 859 | visibility: [ |
Paul Duffin | 5db4b03 | 2020-02-07 14:54:34 +0000 | [diff] [blame] | 860 | "//art/build/sdk", |
Paul Duffin | ba71f83 | 2019-09-27 14:54:23 +0100 | [diff] [blame] | 861 | "//external/conscrypt", |
Paul Duffin | 00b174e | 2019-09-26 16:22:17 +0100 | [diff] [blame] | 862 | "//external/icu/android_icu4j", |
Paul Duffin | a8bb606 | 2019-09-25 15:50:13 +0100 | [diff] [blame] | 863 | "//external/wycheproof", |
| 864 | ], |
| 865 | libs: [ |
| 866 | "art.module.public.api.stubs", |
| 867 | // This one is not on device but it's needed when javac compiles code |
| 868 | // containing lambdas. |
| 869 | "core-lambda-stubs-for-system-modules", |
| 870 | // This one is not on device but it's needed when javac compiles code |
| 871 | // containing @Generated annotations produced by some code generation |
| 872 | // tools. |
| 873 | // See http://b/123891440. |
| 874 | "core-generated-annotation-stubs", |
Paul Duffin | f545bc7 | 2019-10-02 14:07:04 +0100 | [diff] [blame] | 875 | |
| 876 | // Ensure that core libraries that depend on the public API can access |
| 877 | // the UnsupportedAppUsage, CorePlatformApi and IntraCoreApi |
| 878 | // annotations. |
Paul Duffin | 81dd1df | 2019-10-10 15:44:53 +0100 | [diff] [blame] | 879 | "art.module.api.annotations.for.system.modules", |
Paul Duffin | 5cd69e4 | 2019-10-11 17:12:23 +0100 | [diff] [blame] | 880 | |
| 881 | // Make nullability annotations available when compiling public stubs. |
| 882 | // They are provided as a separate library because while the |
| 883 | // annotations are not themselves part of the public API provided by |
| 884 | // this module they are used in the stubs. |
| 885 | "stub-annotations", |
Paul Duffin | a8bb606 | 2019-09-25 15:50:13 +0100 | [diff] [blame] | 886 | ], |
| 887 | } |
| 888 | |
Paul Duffin | 0ca3cbe | 2019-02-14 15:47:58 +0000 | [diff] [blame] | 889 | // A stubs target containing the parts of the public SDK API provided by the |
| 890 | // core library. |
| 891 | // |
| 892 | // Don't use this directly, use "sdk_version: core_current". |
| 893 | java_library { |
| 894 | name: "core.current.stubs", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 895 | visibility: ["//visibility:public"], |
Paul Duffin | a8bb606 | 2019-09-25 15:50:13 +0100 | [diff] [blame] | 896 | static_libs: [ |
| 897 | "art.module.public.api.stubs", |
| 898 | "conscrypt.module.public.api.stubs", |
| 899 | "i18n.module.public.api.stubs", |
| 900 | ], |
Paul Duffin | 83c2538 | 2019-06-07 14:10:49 +0100 | [diff] [blame] | 901 | sdk_version: "none", |
Paul Duffin | 0ca3cbe | 2019-02-14 15:47:58 +0000 | [diff] [blame] | 902 | system_modules: "none", |
Paul Duffin | 6564118 | 2019-04-08 10:24:23 +0100 | [diff] [blame] | 903 | |
| 904 | dist: { |
| 905 | targets: [ |
| 906 | "sdk", |
| 907 | "win_sdk", |
| 908 | ], |
| 909 | }, |
Paul Duffin | 0ca3cbe | 2019-02-14 15:47:58 +0000 | [diff] [blame] | 910 | } |
| 911 | |
Neil Fuller | 61dabbf | 2018-10-21 22:53:18 +0100 | [diff] [blame] | 912 | // Used when compiling higher-level code against core.current.stubs. |
| 913 | java_system_modules { |
| 914 | name: "core-current-stubs-system-modules", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 915 | visibility: ["//visibility:public"], |
Neil Fuller | 61dabbf | 2018-10-21 22:53:18 +0100 | [diff] [blame] | 916 | libs: [ |
| 917 | "core.current.stubs", |
| 918 | // This one is not on device but it's needed when javac compiles code |
| 919 | // containing lambdas. |
| 920 | "core-lambda-stubs-for-system-modules", |
| 921 | // This one is not on device but it's needed when javac compiles code |
| 922 | // containing @Generated annotations produced by some code generation |
| 923 | // tools. |
| 924 | // See http://b/123891440. |
| 925 | "core-generated-annotation-stubs", |
| 926 | ], |
| 927 | } |
| 928 | |
Pete Gillin | 600c7cf | 2018-08-16 19:28:38 +0100 | [diff] [blame] | 929 | // Target for validating nullability annotations for correctness and |
| 930 | // completeness. To check that there are no nullability errors: |
Paul Duffin | bfbfb67 | 2019-10-03 17:53:32 +0100 | [diff] [blame] | 931 | // m art-module-public-api-stubs-nullability-validation |
Pete Gillin | 600c7cf | 2018-08-16 19:28:38 +0100 | [diff] [blame] | 932 | // To check that there are only the expected nullability warnings: |
Paul Duffin | bfbfb67 | 2019-10-03 17:53:32 +0100 | [diff] [blame] | 933 | // m art-module-public-api-stubs-nullability-validation-check-nullability-warnings |
Pete Gillin | cdca7f8 | 2019-10-04 13:28:57 +0100 | [diff] [blame] | 934 | // (If that check fails, it will provide instructions on how to proceed, |
| 935 | // including the command to run to update the expected warnings file.) |
Pete Gillin | 600c7cf | 2018-08-16 19:28:38 +0100 | [diff] [blame] | 936 | droidstubs { |
Paul Duffin | bfbfb67 | 2019-10-03 17:53:32 +0100 | [diff] [blame] | 937 | name: "art-module-public-api-stubs-nullability-validation", |
| 938 | srcs: [":art_module_api_files"], |
Pete Gillin | 600c7cf | 2018-08-16 19:28:38 +0100 | [diff] [blame] | 939 | installable: false, |
Paul Duffin | 419b242 | 2019-06-25 15:42:05 +0100 | [diff] [blame] | 940 | sdk_version: "none", |
Paul Duffin | c799a7c | 2019-10-11 14:19:36 +0100 | [diff] [blame] | 941 | system_modules: "none", |
Pete Gillin | 600c7cf | 2018-08-16 19:28:38 +0100 | [diff] [blame] | 942 | annotations_enabled: true, |
| 943 | args: "--hide-annotation libcore.api.Hide " + |
| 944 | "--validate-nullability-from-merged-stubs ", |
| 945 | merge_inclusion_annotations_dirs: ["ojluni-annotated-mmodule-stubs"], |
| 946 | merge_annotations_dirs: [ |
Pete Gillin | 600c7cf | 2018-08-16 19:28:38 +0100 | [diff] [blame] | 947 | // N.B. Stubs in this filegroup will be validated: |
| 948 | "ojluni-annotated-nullability-stubs", |
| 949 | ], |
Pete Gillin | c5f179b | 2018-11-14 18:42:19 +0000 | [diff] [blame] | 950 | // The list of classes which have nullability annotations included in the source. |
| 951 | // (This is in addition to those which have annotations in the merged stubs.) |
| 952 | validate_nullability_from_list: "nullability_annotated_classes.txt", |
Pete Gillin | 600c7cf | 2018-08-16 19:28:38 +0100 | [diff] [blame] | 953 | // The expected set of warnings about missing annotations: |
| 954 | check_nullability_warnings: "nullability_warnings.txt", |
| 955 | } |
| 956 | |
Neil Fuller | e784ef2 | 2018-11-16 15:54:30 +0000 | [diff] [blame] | 957 | // A host library containing time zone related classes. Used for |
| 958 | // host-side tools and tests that have to deal with Android |
| 959 | // time zone data. |
| 960 | java_library_host { |
| 961 | name: "timezone-host", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 962 | visibility: [ |
Paul Duffin | 86abe9e | 2020-01-16 16:55:36 +0000 | [diff] [blame] | 963 | "//art/build/sdk", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 964 | "//system/timezone/distro/core", |
| 965 | ], |
Neil Fuller | e784ef2 | 2018-11-16 15:54:30 +0000 | [diff] [blame] | 966 | srcs: [":timezone_host_files"], |
| 967 | } |
Andrei Onea | 24892e2 | 2019-04-16 16:48:37 +0100 | [diff] [blame] | 968 | |
Paul Duffin | f48513e | 2019-10-07 14:04:04 +0100 | [diff] [blame] | 969 | // A special set of system modules for building the following library for use |
| 970 | // in the art-module-public-api-system-modules. |
| 971 | java_system_modules { |
| 972 | name: "api-annotations-system-modules", |
| 973 | libs: [ |
| 974 | "art.module.public.api.stubs", |
| 975 | ], |
| 976 | } |
| 977 | |
Paul Duffin | 81dd1df | 2019-10-10 15:44:53 +0100 | [diff] [blame] | 978 | // A library that contains annotations that define API surfaces (core |
| 979 | // platform, intra core and the hidden API) along with some supporting |
| 980 | // constants. The annotations are source only and do not introduce any runtime |
| 981 | // dependencies. Specially built for use in system modules definitions to |
| 982 | // avoid introducing compile time cycles. |
Victor Chang | b28d3f8 | 2019-08-09 16:24:46 +0100 | [diff] [blame] | 983 | java_library { |
Paul Duffin | 81dd1df | 2019-10-10 15:44:53 +0100 | [diff] [blame] | 984 | name: "art.module.api.annotations.for.system.modules", |
Victor Chang | b28d3f8 | 2019-08-09 16:24:46 +0100 | [diff] [blame] | 985 | srcs: [ |
Paul Duffin | 81dd1df | 2019-10-10 15:44:53 +0100 | [diff] [blame] | 986 | ":api_surface_annotation_files", |
Victor Chang | b28d3f8 | 2019-08-09 16:24:46 +0100 | [diff] [blame] | 987 | ], |
| 988 | |
| 989 | installable: false, |
Paul Duffin | f545bc7 | 2019-10-02 14:07:04 +0100 | [diff] [blame] | 990 | sdk_version: "none", |
Paul Duffin | f48513e | 2019-10-07 14:04:04 +0100 | [diff] [blame] | 991 | system_modules: "api-annotations-system-modules", |
| 992 | patch_module: "java.base", |
Victor Chang | b28d3f8 | 2019-08-09 16:24:46 +0100 | [diff] [blame] | 993 | } |
| 994 | |
Paul Duffin | 81dd1df | 2019-10-10 15:44:53 +0100 | [diff] [blame] | 995 | // Create a library containing the api surface annotations, built against |
| 996 | // core_current for use by the annotation processor in frameworks/base. |
| 997 | java_library { |
| 998 | name: "art.module.api.annotations", |
Paul Duffin | c241d6a | 2019-06-25 15:40:29 +0100 | [diff] [blame] | 999 | visibility: [ |
| 1000 | "//frameworks/base", |
| 1001 | ], |
Paul Duffin | 81dd1df | 2019-10-10 15:44:53 +0100 | [diff] [blame] | 1002 | host_supported: true, |
Andrei Onea | 24892e2 | 2019-04-16 16:48:37 +0100 | [diff] [blame] | 1003 | srcs: [ |
Paul Duffin | 81dd1df | 2019-10-10 15:44:53 +0100 | [diff] [blame] | 1004 | ":api_surface_annotation_files", |
Andrei Onea | 24892e2 | 2019-04-16 16:48:37 +0100 | [diff] [blame] | 1005 | ], |
Pete Gillin | 40abce8 | 2019-10-18 17:58:52 +0100 | [diff] [blame] | 1006 | java_version: "1.9", |
Paul Duffin | 81dd1df | 2019-10-10 15:44:53 +0100 | [diff] [blame] | 1007 | sdk_version: "core_current", |
Neil Fuller | 86345d7 | 2019-04-25 09:15:32 +0100 | [diff] [blame] | 1008 | } |