Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1 | // Copyright 2015 Google Inc. All rights reserved. |
| 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 | package java |
| 16 | |
| 17 | // This file contains the module types for compiling Java for Android, and converts the properties |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 18 | // into the flags and filenames necessary to pass to the Module. The final creation of the rules |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 19 | // is handled in builder.go |
| 20 | |
| 21 | import ( |
Colin Cross | f19b9bb | 2018-03-26 14:42:44 -0700 | [diff] [blame^] | 22 | "fmt" |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 23 | "path/filepath" |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 24 | "strconv" |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 25 | "strings" |
| 26 | |
| 27 | "github.com/google/blueprint" |
Colin Cross | 76b5f0c | 2017-08-29 16:02:06 -0700 | [diff] [blame] | 28 | "github.com/google/blueprint/proptools" |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 29 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 30 | "android/soong/android" |
Colin Cross | 3e3e72d | 2017-06-22 17:20:19 -0700 | [diff] [blame] | 31 | "android/soong/java/config" |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 32 | ) |
| 33 | |
Colin Cross | 463a90e | 2015-06-17 14:20:06 -0700 | [diff] [blame] | 34 | func init() { |
Colin Cross | 89536d4 | 2017-07-07 14:35:50 -0700 | [diff] [blame] | 35 | android.RegisterModuleType("java_defaults", defaultsFactory) |
| 36 | |
Colin Cross | a60ead8 | 2017-10-02 18:10:21 -0700 | [diff] [blame] | 37 | android.RegisterModuleType("java_library", LibraryFactory(true)) |
| 38 | android.RegisterModuleType("java_library_static", LibraryFactory(false)) |
Colin Cross | f506d87 | 2017-07-19 15:53:04 -0700 | [diff] [blame] | 39 | android.RegisterModuleType("java_library_host", LibraryHostFactory) |
| 40 | android.RegisterModuleType("java_binary", BinaryFactory) |
| 41 | android.RegisterModuleType("java_binary_host", BinaryHostFactory) |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 42 | android.RegisterModuleType("java_import", ImportFactory) |
| 43 | android.RegisterModuleType("java_import_host", ImportFactoryHost) |
Colin Cross | 463a90e | 2015-06-17 14:20:06 -0700 | [diff] [blame] | 44 | |
Colin Cross | 798bfce | 2016-10-12 14:28:16 -0700 | [diff] [blame] | 45 | android.RegisterSingletonType("logtags", LogtagsSingleton) |
Colin Cross | 463a90e | 2015-06-17 14:20:06 -0700 | [diff] [blame] | 46 | } |
| 47 | |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 48 | // TODO: |
| 49 | // Autogenerated files: |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 50 | // Renderscript |
| 51 | // Post-jar passes: |
| 52 | // Proguard |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 53 | // Rmtypedefs |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 54 | // DroidDoc |
| 55 | // Findbugs |
| 56 | |
Colin Cross | 89536d4 | 2017-07-07 14:35:50 -0700 | [diff] [blame] | 57 | type CompilerProperties struct { |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 58 | // list of source files used to compile the Java module. May be .java, .logtags, .proto, |
| 59 | // or .aidl files. |
Dan Willemsen | 2ef08f4 | 2015-06-30 18:15:24 -0700 | [diff] [blame] | 60 | Srcs []string `android:"arch_variant"` |
| 61 | |
| 62 | // list of source files that should not be used to build the Java module. |
| 63 | // This is most useful in the arch/multilib variants to remove non-common files |
| 64 | Exclude_srcs []string `android:"arch_variant"` |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 65 | |
| 66 | // list of directories containing Java resources |
Colin Cross | 86a63ff | 2017-09-27 17:33:10 -0700 | [diff] [blame] | 67 | Java_resource_dirs []string `android:"arch_variant"` |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 68 | |
Colin Cross | 86a63ff | 2017-09-27 17:33:10 -0700 | [diff] [blame] | 69 | // list of directories that should be excluded from java_resource_dirs |
| 70 | Exclude_java_resource_dirs []string `android:"arch_variant"` |
Dan Willemsen | 2ef08f4 | 2015-06-30 18:15:24 -0700 | [diff] [blame] | 71 | |
Colin Cross | 0f37af0 | 2017-09-27 17:42:05 -0700 | [diff] [blame] | 72 | // list of files to use as Java resources |
| 73 | Java_resources []string `android:"arch_variant"` |
| 74 | |
| 75 | // list of files that should be excluded from java_resources |
| 76 | Exclude_java_resources []string `android:"arch_variant"` |
| 77 | |
Colin Cross | fa5eb23 | 2017-10-01 20:33:03 -0700 | [diff] [blame] | 78 | // don't build against the default libraries (bootclasspath, legacy-test, core-junit, |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 79 | // ext, and framework for device targets) |
Colin Cross | 76b5f0c | 2017-08-29 16:02:06 -0700 | [diff] [blame] | 80 | No_standard_libs *bool |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 81 | |
Colin Cross | fa5eb23 | 2017-10-01 20:33:03 -0700 | [diff] [blame] | 82 | // don't build against the framework libraries (legacy-test, core-junit, |
| 83 | // ext, and framework for device targets) |
| 84 | No_framework_libs *bool |
| 85 | |
Przemyslaw Szczepaniak | 66c0c40 | 2018-03-08 13:21:55 +0000 | [diff] [blame] | 86 | // Use renamed kotlin stdlib (com.android.kotlin.*). This allows kotlin usage without colliding |
| 87 | // with app-provided kotlin stdlib. |
| 88 | Renamed_kotlin_stdlib *bool |
| 89 | |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 90 | // list of module-specific flags that will be used for javac compiles |
| 91 | Javacflags []string `android:"arch_variant"` |
| 92 | |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 93 | // list of of java libraries that will be in the classpath |
Colin Cross | e8dc34a | 2017-07-19 11:22:16 -0700 | [diff] [blame] | 94 | Libs []string `android:"arch_variant"` |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 95 | |
| 96 | // list of java libraries that will be compiled into the resulting jar |
Colin Cross | e8dc34a | 2017-07-19 11:22:16 -0700 | [diff] [blame] | 97 | Static_libs []string `android:"arch_variant"` |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 98 | |
| 99 | // manifest file to be included in resulting jar |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 100 | Manifest *string |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 101 | |
Colin Cross | 540eff8 | 2017-06-22 17:01:52 -0700 | [diff] [blame] | 102 | // if not blank, run jarjar using the specified rules file |
Colin Cross | 975f9f7 | 2017-10-17 13:55:55 -0700 | [diff] [blame] | 103 | Jarjar_rules *string `android:"arch_variant"` |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 104 | |
| 105 | // If not blank, set the java version passed to javac as -source and -target |
| 106 | Java_version *string |
Colin Cross | 2c429dc | 2017-08-31 16:45:16 -0700 | [diff] [blame] | 107 | |
| 108 | // If set to false, don't allow this module to be installed. Defaults to true. |
| 109 | Installable *bool |
Colin Cross | 32f676a | 2017-09-06 13:41:06 -0700 | [diff] [blame] | 110 | |
Colin Cross | 0f37af0 | 2017-09-27 17:42:05 -0700 | [diff] [blame] | 111 | // If set to true, include sources used to compile the module in to the final jar |
| 112 | Include_srcs *bool |
| 113 | |
Colin Cross | 32f676a | 2017-09-06 13:41:06 -0700 | [diff] [blame] | 114 | // List of modules to use as annotation processors |
| 115 | Annotation_processors []string |
| 116 | |
| 117 | // List of classes to pass to javac to use as annotation processors |
| 118 | Annotation_processor_classes []string |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 119 | |
Nan Zhang | 61eaedb | 2017-11-02 13:28:15 -0700 | [diff] [blame] | 120 | // The number of Java source entries each Javac instance can process |
| 121 | Javac_shard_size *int64 |
| 122 | |
Nan Zhang | 5f8cb42 | 2018-02-06 10:34:32 -0800 | [diff] [blame] | 123 | // Add host jdk tools.jar to bootclasspath |
| 124 | Use_tools_jar *bool |
| 125 | |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 126 | Openjdk9 struct { |
| 127 | // List of source files that should only be used when passing -source 1.9 |
| 128 | Srcs []string |
| 129 | |
| 130 | // List of javac flags that should only be used when passing -source 1.9 |
| 131 | Javacflags []string |
| 132 | } |
Colin Cross | cb93359 | 2017-11-22 13:49:43 -0800 | [diff] [blame] | 133 | |
| 134 | Jacoco struct { |
| 135 | // List of classes to include for instrumentation with jacoco to collect coverage |
| 136 | // information at runtime when building with coverage enabled. If unset defaults to all |
| 137 | // classes. |
| 138 | // Supports '*' as the last character of an entry in the list as a wildcard match. |
| 139 | // If preceded by '.' it matches all classes in the package and subpackages, otherwise |
| 140 | // it matches classes in the package that have the class name as a prefix. |
| 141 | Include_filter []string |
| 142 | |
| 143 | // List of classes to exclude from instrumentation with jacoco to collect coverage |
| 144 | // information at runtime when building with coverage enabled. Overrides classes selected |
| 145 | // by the include_filter property. |
| 146 | // Supports '*' as the last character of an entry in the list as a wildcard match. |
| 147 | // If preceded by '.' it matches all classes in the package and subpackages, otherwise |
| 148 | // it matches classes in the package that have the class name as a prefix. |
| 149 | Exclude_filter []string |
| 150 | } |
| 151 | |
Andreas Gampe | f3e5b55 | 2018-01-22 21:27:21 -0800 | [diff] [blame] | 152 | Errorprone struct { |
| 153 | // List of javac flags that should only be used when running errorprone. |
| 154 | Javacflags []string |
| 155 | } |
| 156 | |
Colin Cross | 0f2ee15 | 2017-12-14 15:22:43 -0800 | [diff] [blame] | 157 | Proto struct { |
| 158 | // List of extra options that will be passed to the proto generator. |
| 159 | Output_params []string |
| 160 | } |
| 161 | |
Colin Cross | cb93359 | 2017-11-22 13:49:43 -0800 | [diff] [blame] | 162 | Instrument bool `blueprint:"mutated"` |
Colin Cross | 540eff8 | 2017-06-22 17:01:52 -0700 | [diff] [blame] | 163 | } |
| 164 | |
Colin Cross | 89536d4 | 2017-07-07 14:35:50 -0700 | [diff] [blame] | 165 | type CompilerDeviceProperties struct { |
Colin Cross | 540eff8 | 2017-06-22 17:01:52 -0700 | [diff] [blame] | 166 | // list of module-specific flags that will be used for dex compiles |
| 167 | Dxflags []string `android:"arch_variant"` |
| 168 | |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 169 | // if not blank, set to the version of the sdk to compile against |
Nan Zhang | ea568a4 | 2017-11-08 21:20:04 -0800 | [diff] [blame] | 170 | Sdk_version *string |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 171 | |
Colin Cross | ebe1a51 | 2017-11-14 13:12:14 -0800 | [diff] [blame] | 172 | Aidl struct { |
| 173 | // Top level directories to pass to aidl tool |
| 174 | Include_dirs []string |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 175 | |
Colin Cross | ebe1a51 | 2017-11-14 13:12:14 -0800 | [diff] [blame] | 176 | // Directories rooted at the Android.bp file to pass to aidl tool |
| 177 | Local_include_dirs []string |
| 178 | |
| 179 | // directories that should be added as include directories for any aidl sources of modules |
| 180 | // that depend on this module, as well as to aidl for this module. |
| 181 | Export_include_dirs []string |
Martijn Coenen | eab1564 | 2018-03-09 09:29:59 +0100 | [diff] [blame] | 182 | |
| 183 | // whether to generate traces (for systrace) for this interface |
| 184 | Generate_traces *bool |
Colin Cross | ebe1a51 | 2017-11-14 13:12:14 -0800 | [diff] [blame] | 185 | } |
Colin Cross | 9243010 | 2017-10-09 14:59:32 -0700 | [diff] [blame] | 186 | |
| 187 | // If true, export a copy of the module as a -hostdex module for host testing. |
| 188 | Hostdex *bool |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 189 | |
Colin Cross | 1bd8780 | 2017-12-05 15:31:19 -0800 | [diff] [blame] | 190 | Dex_preopt struct { |
| 191 | // If false, prevent dexpreopting and stripping the dex file from the final jar. Defaults to |
| 192 | // true. |
| 193 | Enabled *bool |
| 194 | |
| 195 | // If true, generate an app image (.art file) for this module. |
| 196 | App_image *bool |
| 197 | |
| 198 | // If true, use a checked-in profile to guide optimization. Defaults to false unless |
| 199 | // a matching profile is set or a profile is found in PRODUCT_DEX_PREOPT_PROFILE_DIR |
| 200 | // that matches the name of this module, in which case it is defaulted to true. |
| 201 | Profile_guided *bool |
| 202 | |
| 203 | // If set, provides the path to profile relative to the Android.bp file. If not set, |
| 204 | // defaults to searching for a file that matches the name of this module in the default |
| 205 | // profile location set by PRODUCT_DEX_PREOPT_PROFILE_DIR, or empty if not found. |
| 206 | Profile *string |
| 207 | } |
Colin Cross | a22116e | 2017-10-19 14:18:58 -0700 | [diff] [blame] | 208 | |
Colin Cross | 66dbc0b | 2017-12-28 12:23:20 -0800 | [diff] [blame] | 209 | Optimize struct { |
| 210 | // If false, disable all optimization. Defaults to true for apps, false for |
| 211 | // libraries and tests. |
| 212 | Enabled *bool |
| 213 | |
| 214 | // If true, optimize for size by removing unused code. Defaults to true for apps, |
| 215 | // false for libraries and tests. |
| 216 | Shrink *bool |
| 217 | |
| 218 | // If true, optimize bytecode. Defaults to false. |
| 219 | Optimize *bool |
| 220 | |
| 221 | // If true, obfuscate bytecode. Defaults to false. |
| 222 | Obfuscate *bool |
| 223 | |
| 224 | // If true, do not use the flag files generated by aapt that automatically keep |
| 225 | // classes referenced by the app manifest. Defaults to false. |
| 226 | No_aapt_flags *bool |
| 227 | |
| 228 | // Flags to pass to proguard. |
| 229 | Proguard_flags []string |
| 230 | |
| 231 | // Specifies the locations of files containing proguard flags. |
| 232 | Proguard_flags_files []string |
| 233 | } |
| 234 | |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 235 | // When targeting 1.9, override the modules to use with --system |
| 236 | System_modules *string |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 237 | } |
| 238 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 239 | // Module contains the properties and members used by all java module types |
| 240 | type Module struct { |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 241 | android.ModuleBase |
Colin Cross | 89536d4 | 2017-07-07 14:35:50 -0700 | [diff] [blame] | 242 | android.DefaultableModuleBase |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 243 | |
Colin Cross | 89536d4 | 2017-07-07 14:35:50 -0700 | [diff] [blame] | 244 | properties CompilerProperties |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 245 | protoProperties android.ProtoProperties |
Colin Cross | 89536d4 | 2017-07-07 14:35:50 -0700 | [diff] [blame] | 246 | deviceProperties CompilerDeviceProperties |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 247 | |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 248 | // header jar file suitable for inserting into the bootclasspath/classpath of another compile |
| 249 | headerJarFile android.Path |
| 250 | |
| 251 | // full implementation jar file suitable for static dependency of another module compile |
| 252 | implementationJarFile android.Path |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 253 | |
Colin Cross | 6ade34f | 2017-09-15 13:00:47 -0700 | [diff] [blame] | 254 | // output file containing classes.dex |
| 255 | dexJarFile android.Path |
| 256 | |
Colin Cross | cb93359 | 2017-11-22 13:49:43 -0800 | [diff] [blame] | 257 | // output file containing uninstrumented classes that will be instrumented by jacoco |
| 258 | jacocoReportClassesFile android.Path |
| 259 | |
Colin Cross | 66dbc0b | 2017-12-28 12:23:20 -0800 | [diff] [blame] | 260 | // output file containing mapping of obfuscated names |
| 261 | proguardDictionary android.Path |
| 262 | |
Colin Cross | b7a6324 | 2015-04-16 14:09:14 -0700 | [diff] [blame] | 263 | // output file suitable for installing or running |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 264 | outputFile android.Path |
Colin Cross | b7a6324 | 2015-04-16 14:09:14 -0700 | [diff] [blame] | 265 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 266 | exportAidlIncludeDirs android.Paths |
Colin Cross | c0b06f1 | 2015-04-08 13:03:43 -0700 | [diff] [blame] | 267 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 268 | logtagsSrcs android.Paths |
Colin Cross | f05fe97 | 2015-04-10 17:45:20 -0700 | [diff] [blame] | 269 | |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 270 | // installed file for binary dependency |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 271 | installFile android.Path |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 272 | |
| 273 | // list of .java files and srcjars that was passed to javac |
| 274 | compiledJavaSrcs android.Paths |
| 275 | compiledSrcJars android.Paths |
Colin Cross | 66dbc0b | 2017-12-28 12:23:20 -0800 | [diff] [blame] | 276 | |
| 277 | // list of extra progurad flag files |
| 278 | extraProguardFlagFiles android.Paths |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 279 | } |
| 280 | |
Colin Cross | 5425090 | 2017-12-05 09:28:08 -0800 | [diff] [blame] | 281 | func (j *Module) Srcs() android.Paths { |
| 282 | return android.Paths{j.implementationJarFile} |
| 283 | } |
| 284 | |
| 285 | var _ android.SourceFileProducer = (*Module)(nil) |
| 286 | |
Colin Cross | f506d87 | 2017-07-19 15:53:04 -0700 | [diff] [blame] | 287 | type Dependency interface { |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 288 | HeaderJars() android.Paths |
| 289 | ImplementationJars() android.Paths |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 290 | AidlIncludeDirs() android.Paths |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 291 | } |
| 292 | |
Nan Zhang | b2b33de | 2018-02-23 11:18:47 -0800 | [diff] [blame] | 293 | type SrcDependency interface { |
| 294 | CompiledSrcs() android.Paths |
| 295 | CompiledSrcJars() android.Paths |
| 296 | } |
| 297 | |
| 298 | func (j *Module) CompiledSrcs() android.Paths { |
| 299 | return j.compiledJavaSrcs |
| 300 | } |
| 301 | |
| 302 | func (j *Module) CompiledSrcJars() android.Paths { |
| 303 | return j.compiledSrcJars |
| 304 | } |
| 305 | |
| 306 | var _ SrcDependency = (*Module)(nil) |
| 307 | |
Colin Cross | 89536d4 | 2017-07-07 14:35:50 -0700 | [diff] [blame] | 308 | func InitJavaModule(module android.DefaultableModule, hod android.HostOrDeviceSupported) { |
| 309 | android.InitAndroidArchModule(module, hod, android.MultilibCommon) |
| 310 | android.InitDefaultableModule(module) |
| 311 | } |
| 312 | |
Colin Cross | be1da47 | 2017-07-07 15:59:46 -0700 | [diff] [blame] | 313 | type dependencyTag struct { |
| 314 | blueprint.BaseDependencyTag |
| 315 | name string |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 316 | } |
| 317 | |
Colin Cross | be1da47 | 2017-07-07 15:59:46 -0700 | [diff] [blame] | 318 | var ( |
Colin Cross | 6ade34f | 2017-09-15 13:00:47 -0700 | [diff] [blame] | 319 | staticLibTag = dependencyTag{name: "staticlib"} |
| 320 | libTag = dependencyTag{name: "javalib"} |
| 321 | bootClasspathTag = dependencyTag{name: "bootclasspath"} |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 322 | systemModulesTag = dependencyTag{name: "system modules"} |
Colin Cross | 6ade34f | 2017-09-15 13:00:47 -0700 | [diff] [blame] | 323 | frameworkResTag = dependencyTag{name: "framework-res"} |
Nan Zhang | b2b33de | 2018-02-23 11:18:47 -0800 | [diff] [blame] | 324 | frameworkApkTag = dependencyTag{name: "framework-apk"} |
Colin Cross | 93e8595 | 2017-08-15 13:34:18 -0700 | [diff] [blame] | 325 | kotlinStdlibTag = dependencyTag{name: "kotlin-stdlib"} |
Colin Cross | 66dbc0b | 2017-12-28 12:23:20 -0800 | [diff] [blame] | 326 | proguardRaiseTag = dependencyTag{name: "proguard-raise"} |
Colin Cross | be1da47 | 2017-07-07 15:59:46 -0700 | [diff] [blame] | 327 | ) |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 328 | |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 329 | type sdkDep struct { |
Colin Cross | 47ff252 | 2017-10-02 14:22:08 -0700 | [diff] [blame] | 330 | useModule, useFiles, useDefaultLibs, invalidVersion bool |
| 331 | |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 332 | module string |
| 333 | systemModules string |
| 334 | |
| 335 | jar android.Path |
| 336 | aidl android.Path |
| 337 | } |
| 338 | |
| 339 | func sdkStringToNumber(ctx android.BaseContext, v string) int { |
| 340 | switch v { |
Jiyong Park | 750e557 | 2018-01-31 00:20:13 +0900 | [diff] [blame] | 341 | case "", "current", "system_current", "test_current", "core_current": |
Jiyong Park | 1a5d7b1 | 2018-01-15 15:05:10 +0900 | [diff] [blame] | 342 | return android.FutureApiLevel |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 343 | default: |
Sundong Ahn | 0926fae | 2017-10-17 16:34:51 +0900 | [diff] [blame] | 344 | if i, err := strconv.Atoi(android.GetNumericSdkVersion(v)); err != nil { |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 345 | ctx.PropertyErrorf("sdk_version", "invalid sdk version") |
| 346 | return -1 |
| 347 | } else { |
| 348 | return i |
| 349 | } |
| 350 | } |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 351 | } |
| 352 | |
Colin Cross | 3144dfc | 2018-01-03 15:06:47 -0800 | [diff] [blame] | 353 | func (j *Module) shouldInstrument(ctx android.BaseContext) bool { |
| 354 | return j.properties.Instrument && ctx.Config().IsEnvTrue("EMMA_INSTRUMENT") |
| 355 | } |
| 356 | |
| 357 | func (j *Module) shouldInstrumentStatic(ctx android.BaseContext) bool { |
| 358 | return j.shouldInstrument(ctx) && |
| 359 | (ctx.Config().IsEnvTrue("EMMA_INSTRUMENT_STATIC") || |
| 360 | ctx.Config().UnbundledBuild()) |
| 361 | } |
| 362 | |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 363 | func decodeSdkDep(ctx android.BaseContext, v string) sdkDep { |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 364 | i := sdkStringToNumber(ctx, v) |
| 365 | if i == -1 { |
| 366 | // Invalid sdk version, error handled by sdkStringToNumber. |
| 367 | return sdkDep{} |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 368 | } |
| 369 | |
Jiyong Park | 1a5d7b1 | 2018-01-15 15:05:10 +0900 | [diff] [blame] | 370 | // Ensures that the specificed system SDK version is one of BOARD_SYSTEMSDK_VERSIONS (for vendor apks) |
| 371 | // or PRODUCT_SYSTEMSDK_VERSIONS (for other apks or when BOARD_SYSTEMSDK_VERSIONS is not set) |
| 372 | if strings.HasPrefix(v, "system_") && i != android.FutureApiLevel { |
| 373 | allowed_versions := ctx.DeviceConfig().PlatformSystemSdkVersions() |
| 374 | if ctx.DeviceSpecific() || ctx.SocSpecific() { |
| 375 | if len(ctx.DeviceConfig().SystemSdkVersions()) > 0 { |
| 376 | allowed_versions = ctx.DeviceConfig().SystemSdkVersions() |
| 377 | } |
| 378 | } |
| 379 | version := strings.TrimPrefix(v, "system_") |
| 380 | if len(allowed_versions) > 0 && !android.InList(version, allowed_versions) { |
| 381 | ctx.PropertyErrorf("sdk_version", "incompatible sdk version %q. System SDK version should be one of %q", |
| 382 | v, allowed_versions) |
| 383 | } |
| 384 | } |
| 385 | |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 386 | toFile := func(v string) sdkDep { |
Jiyong Park | 750e557 | 2018-01-31 00:20:13 +0900 | [diff] [blame] | 387 | isCore := strings.HasPrefix(v, "core_") |
| 388 | if isCore { |
| 389 | v = strings.TrimPrefix(v, "core_") |
| 390 | } |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 391 | dir := filepath.Join("prebuilts/sdk", v) |
| 392 | jar := filepath.Join(dir, "android.jar") |
Jiyong Park | 750e557 | 2018-01-31 00:20:13 +0900 | [diff] [blame] | 393 | if isCore { |
| 394 | jar = filepath.Join(dir, "core.jar") |
| 395 | } |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 396 | aidl := filepath.Join(dir, "framework.aidl") |
Colin Cross | 32f3898 | 2018-02-22 11:47:25 -0800 | [diff] [blame] | 397 | jarPath := android.ExistentPathForSource(ctx, jar) |
| 398 | aidlPath := android.ExistentPathForSource(ctx, aidl) |
Colin Cross | 47ff252 | 2017-10-02 14:22:08 -0700 | [diff] [blame] | 399 | |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 400 | if (!jarPath.Valid() || !aidlPath.Valid()) && ctx.Config().AllowMissingDependencies() { |
Colin Cross | 47ff252 | 2017-10-02 14:22:08 -0700 | [diff] [blame] | 401 | return sdkDep{ |
| 402 | invalidVersion: true, |
| 403 | module: "sdk_v" + v, |
| 404 | } |
| 405 | } |
| 406 | |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 407 | if !jarPath.Valid() { |
| 408 | ctx.PropertyErrorf("sdk_version", "invalid sdk version %q, %q does not exist", v, jar) |
| 409 | return sdkDep{} |
| 410 | } |
Colin Cross | 47ff252 | 2017-10-02 14:22:08 -0700 | [diff] [blame] | 411 | |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 412 | if !aidlPath.Valid() { |
| 413 | ctx.PropertyErrorf("sdk_version", "invalid sdk version %q, %q does not exist", v, aidl) |
| 414 | return sdkDep{} |
| 415 | } |
Colin Cross | 47ff252 | 2017-10-02 14:22:08 -0700 | [diff] [blame] | 416 | |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 417 | return sdkDep{ |
| 418 | useFiles: true, |
| 419 | jar: jarPath.Path(), |
| 420 | aidl: aidlPath.Path(), |
| 421 | } |
| 422 | } |
| 423 | |
Colin Cross | f19b9bb | 2018-03-26 14:42:44 -0700 | [diff] [blame^] | 424 | toModule := func(m string) sdkDep { |
| 425 | ret := sdkDep{ |
| 426 | useModule: true, |
| 427 | module: m, |
| 428 | systemModules: m + "_system_modules", |
| 429 | } |
| 430 | if m == "core.current.stubs" { |
| 431 | ret.systemModules = "core-system-modules" |
| 432 | } |
| 433 | return ret |
| 434 | } |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 435 | |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 436 | if ctx.Config().UnbundledBuild() && v != "" { |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 437 | return toFile(v) |
| 438 | } |
| 439 | |
| 440 | switch v { |
| 441 | case "": |
| 442 | return sdkDep{ |
| 443 | useDefaultLibs: true, |
| 444 | } |
Colin Cross | f19b9bb | 2018-03-26 14:42:44 -0700 | [diff] [blame^] | 445 | case "current": |
| 446 | return toModule("android_stubs_current") |
| 447 | case "system_current": |
| 448 | return toModule("android_system_stubs_current") |
| 449 | case "test_current": |
| 450 | return toModule("android_test_stubs_current") |
| 451 | case "core_current": |
| 452 | return toModule("core.current.stubs") |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 453 | default: |
| 454 | return toFile(v) |
| 455 | } |
| 456 | } |
| 457 | |
Colin Cross | be1da47 | 2017-07-07 15:59:46 -0700 | [diff] [blame] | 458 | func (j *Module) deps(ctx android.BottomUpMutatorContext) { |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 459 | if ctx.Device() { |
| 460 | if !proptools.Bool(j.properties.No_standard_libs) { |
Nan Zhang | ea568a4 | 2017-11-08 21:20:04 -0800 | [diff] [blame] | 461 | sdkDep := decodeSdkDep(ctx, String(j.deviceProperties.Sdk_version)) |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 462 | if sdkDep.useDefaultLibs { |
Colin Cross | cb2c929 | 2017-09-23 19:57:16 -0700 | [diff] [blame] | 463 | ctx.AddDependency(ctx.Module(), bootClasspathTag, config.DefaultBootclasspathLibraries...) |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 464 | if ctx.Config().TargetOpenJDK9() { |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 465 | ctx.AddDependency(ctx.Module(), systemModulesTag, config.DefaultSystemModules) |
| 466 | } |
Colin Cross | fa5eb23 | 2017-10-01 20:33:03 -0700 | [diff] [blame] | 467 | if !proptools.Bool(j.properties.No_framework_libs) { |
| 468 | ctx.AddDependency(ctx.Module(), libTag, config.DefaultLibraries...) |
| 469 | } |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 470 | } else if sdkDep.useModule { |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 471 | if ctx.Config().TargetOpenJDK9() { |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 472 | ctx.AddDependency(ctx.Module(), systemModulesTag, sdkDep.systemModules) |
| 473 | } |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 474 | ctx.AddDependency(ctx.Module(), bootClasspathTag, sdkDep.module) |
Colin Cross | 66dbc0b | 2017-12-28 12:23:20 -0800 | [diff] [blame] | 475 | if Bool(j.deviceProperties.Optimize.Enabled) { |
| 476 | ctx.AddDependency(ctx.Module(), proguardRaiseTag, config.DefaultBootclasspathLibraries...) |
| 477 | ctx.AddDependency(ctx.Module(), proguardRaiseTag, config.DefaultLibraries...) |
| 478 | } |
Colin Cross | be1da47 | 2017-07-07 15:59:46 -0700 | [diff] [blame] | 479 | } |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 480 | } else if j.deviceProperties.System_modules == nil { |
| 481 | ctx.PropertyErrorf("no_standard_libs", |
| 482 | "system_modules is required to be set when no_standard_libs is true, did you mean no_framework_libs?") |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 483 | } else if *j.deviceProperties.System_modules != "none" && ctx.Config().TargetOpenJDK9() { |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 484 | ctx.AddDependency(ctx.Module(), systemModulesTag, *j.deviceProperties.System_modules) |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 485 | } |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 486 | if ctx.ModuleName() == "framework" { |
| 487 | ctx.AddDependency(ctx.Module(), frameworkResTag, "framework-res") |
| 488 | } |
Nan Zhang | b2b33de | 2018-02-23 11:18:47 -0800 | [diff] [blame] | 489 | if ctx.ModuleName() == "android_stubs_current" || |
| 490 | ctx.ModuleName() == "android_system_stubs_current" || |
| 491 | ctx.ModuleName() == "android_test_stubs_current" { |
| 492 | ctx.AddDependency(ctx.Module(), frameworkApkTag, "framework-res") |
| 493 | } |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 494 | } |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 495 | |
Colin Cross | f506d87 | 2017-07-19 15:53:04 -0700 | [diff] [blame] | 496 | ctx.AddDependency(ctx.Module(), libTag, j.properties.Libs...) |
| 497 | ctx.AddDependency(ctx.Module(), staticLibTag, j.properties.Static_libs...) |
Colin Cross | 6ade34f | 2017-09-15 13:00:47 -0700 | [diff] [blame] | 498 | ctx.AddDependency(ctx.Module(), libTag, j.properties.Annotation_processors...) |
Colin Cross | 7f9036c | 2017-08-30 13:27:57 -0700 | [diff] [blame] | 499 | |
| 500 | android.ExtractSourcesDeps(ctx, j.properties.Srcs) |
Nan Zhang | 27e284d | 2018-02-09 21:03:53 +0000 | [diff] [blame] | 501 | android.ExtractSourcesDeps(ctx, j.properties.Exclude_srcs) |
Colin Cross | 0f37af0 | 2017-09-27 17:42:05 -0700 | [diff] [blame] | 502 | android.ExtractSourcesDeps(ctx, j.properties.Java_resources) |
Colin Cross | 366938f | 2017-12-11 16:29:02 -0800 | [diff] [blame] | 503 | android.ExtractSourceDeps(ctx, j.properties.Manifest) |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 504 | |
| 505 | if j.hasSrcExt(".proto") { |
| 506 | protoDeps(ctx, &j.protoProperties) |
| 507 | } |
Colin Cross | 93e8595 | 2017-08-15 13:34:18 -0700 | [diff] [blame] | 508 | |
| 509 | if j.hasSrcExt(".kt") { |
| 510 | // TODO(ccross): move this to a mutator pass that can tell if generated sources contain |
| 511 | // Kotlin files |
| 512 | ctx.AddDependency(ctx.Module(), kotlinStdlibTag, "kotlin-stdlib") |
| 513 | } |
Colin Cross | 3144dfc | 2018-01-03 15:06:47 -0800 | [diff] [blame] | 514 | |
| 515 | if j.shouldInstrumentStatic(ctx) { |
| 516 | ctx.AddDependency(ctx.Module(), staticLibTag, "jacocoagent") |
| 517 | } |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 518 | } |
| 519 | |
| 520 | func hasSrcExt(srcs []string, ext string) bool { |
| 521 | for _, src := range srcs { |
| 522 | if filepath.Ext(src) == ext { |
| 523 | return true |
| 524 | } |
| 525 | } |
| 526 | |
| 527 | return false |
| 528 | } |
| 529 | |
Nan Zhang | 61eaedb | 2017-11-02 13:28:15 -0700 | [diff] [blame] | 530 | func shardPaths(paths android.Paths, shardSize int) []android.Paths { |
| 531 | ret := make([]android.Paths, 0, (len(paths)+shardSize-1)/shardSize) |
| 532 | for len(paths) > shardSize { |
| 533 | ret = append(ret, paths[0:shardSize]) |
| 534 | paths = paths[shardSize:] |
| 535 | } |
| 536 | if len(paths) > 0 { |
| 537 | ret = append(ret, paths) |
| 538 | } |
| 539 | return ret |
| 540 | } |
| 541 | |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 542 | func (j *Module) hasSrcExt(ext string) bool { |
| 543 | return hasSrcExt(j.properties.Srcs, ext) |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 544 | } |
| 545 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 546 | func (j *Module) aidlFlags(ctx android.ModuleContext, aidlPreprocess android.OptionalPath, |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 547 | aidlIncludeDirs android.Paths) []string { |
Colin Cross | c0b06f1 | 2015-04-08 13:03:43 -0700 | [diff] [blame] | 548 | |
Colin Cross | ebe1a51 | 2017-11-14 13:12:14 -0800 | [diff] [blame] | 549 | aidlIncludes := android.PathsForModuleSrc(ctx, j.deviceProperties.Aidl.Local_include_dirs) |
| 550 | aidlIncludes = append(aidlIncludes, |
| 551 | android.PathsForModuleSrc(ctx, j.deviceProperties.Aidl.Export_include_dirs)...) |
| 552 | aidlIncludes = append(aidlIncludes, |
| 553 | android.PathsForSource(ctx, j.deviceProperties.Aidl.Include_dirs)...) |
Colin Cross | c0b06f1 | 2015-04-08 13:03:43 -0700 | [diff] [blame] | 554 | |
| 555 | var flags []string |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 556 | if aidlPreprocess.Valid() { |
| 557 | flags = append(flags, "-p"+aidlPreprocess.String()) |
Colin Cross | c0b06f1 | 2015-04-08 13:03:43 -0700 | [diff] [blame] | 558 | } else { |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 559 | flags = append(flags, android.JoinWithPrefix(aidlIncludeDirs.Strings(), "-I")) |
Colin Cross | c0b06f1 | 2015-04-08 13:03:43 -0700 | [diff] [blame] | 560 | } |
| 561 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 562 | flags = append(flags, android.JoinWithPrefix(j.exportAidlIncludeDirs.Strings(), "-I")) |
Colin Cross | ebe1a51 | 2017-11-14 13:12:14 -0800 | [diff] [blame] | 563 | flags = append(flags, android.JoinWithPrefix(aidlIncludes.Strings(), "-I")) |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 564 | flags = append(flags, "-I"+android.PathForModuleSrc(ctx).String()) |
Colin Cross | 32f3898 | 2018-02-22 11:47:25 -0800 | [diff] [blame] | 565 | if src := android.ExistentPathForSource(ctx, ctx.ModuleDir(), "src"); src.Valid() { |
Colin Cross | d48633a | 2017-07-13 14:41:17 -0700 | [diff] [blame] | 566 | flags = append(flags, "-I"+src.String()) |
| 567 | } |
Colin Cross | c0b06f1 | 2015-04-08 13:03:43 -0700 | [diff] [blame] | 568 | |
Martijn Coenen | eab1564 | 2018-03-09 09:29:59 +0100 | [diff] [blame] | 569 | if Bool(j.deviceProperties.Aidl.Generate_traces) { |
| 570 | flags = append(flags, "-t") |
| 571 | } |
| 572 | |
Colin Cross | f03c82b | 2015-04-13 13:53:40 -0700 | [diff] [blame] | 573 | return flags |
Colin Cross | c0b06f1 | 2015-04-08 13:03:43 -0700 | [diff] [blame] | 574 | } |
| 575 | |
Colin Cross | 32f676a | 2017-09-06 13:41:06 -0700 | [diff] [blame] | 576 | type deps struct { |
Nan Zhang | 581fd21 | 2018-01-10 16:06:12 -0800 | [diff] [blame] | 577 | classpath classpath |
| 578 | bootClasspath classpath |
Colin Cross | 6ade34f | 2017-09-15 13:00:47 -0700 | [diff] [blame] | 579 | staticJars android.Paths |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 580 | staticHeaderJars android.Paths |
Colin Cross | 6ade34f | 2017-09-15 13:00:47 -0700 | [diff] [blame] | 581 | staticJarResources android.Paths |
| 582 | aidlIncludeDirs android.Paths |
Nan Zhang | b2b33de | 2018-02-23 11:18:47 -0800 | [diff] [blame] | 583 | srcs android.Paths |
Colin Cross | 59149b6 | 2017-10-16 18:07:29 -0700 | [diff] [blame] | 584 | srcJars android.Paths |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 585 | systemModules android.Path |
Colin Cross | 6ade34f | 2017-09-15 13:00:47 -0700 | [diff] [blame] | 586 | aidlPreprocess android.OptionalPath |
Colin Cross | 93e8595 | 2017-08-15 13:34:18 -0700 | [diff] [blame] | 587 | kotlinStdlib android.Paths |
Colin Cross | 32f676a | 2017-09-06 13:41:06 -0700 | [diff] [blame] | 588 | } |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 589 | |
Colin Cross | 5425090 | 2017-12-05 09:28:08 -0800 | [diff] [blame] | 590 | func checkProducesJars(ctx android.ModuleContext, dep android.SourceFileProducer) { |
| 591 | for _, f := range dep.Srcs() { |
| 592 | if f.Ext() != ".jar" { |
| 593 | ctx.ModuleErrorf("genrule %q must generate files ending with .jar to be used as a libs or static_libs dependency", |
| 594 | ctx.OtherModuleName(dep.(blueprint.Module))) |
| 595 | } |
| 596 | } |
| 597 | } |
| 598 | |
Jiyong Park | 2d49294 | 2018-03-05 17:44:10 +0900 | [diff] [blame] | 599 | type linkType int |
| 600 | |
| 601 | const ( |
| 602 | javaCore linkType = iota |
| 603 | javaSdk |
| 604 | javaSystem |
| 605 | javaPlatform |
| 606 | ) |
| 607 | |
Colin Cross | f19b9bb | 2018-03-26 14:42:44 -0700 | [diff] [blame^] | 608 | func getLinkType(m *Module, name string) linkType { |
Jiyong Park | 2d49294 | 2018-03-05 17:44:10 +0900 | [diff] [blame] | 609 | ver := String(m.deviceProperties.Sdk_version) |
Colin Cross | f19b9bb | 2018-03-26 14:42:44 -0700 | [diff] [blame^] | 610 | switch { |
| 611 | case name == "core.current.stubs" || ver == "core_current": |
Jiyong Park | 2d49294 | 2018-03-05 17:44:10 +0900 | [diff] [blame] | 612 | return javaCore |
Colin Cross | f19b9bb | 2018-03-26 14:42:44 -0700 | [diff] [blame^] | 613 | case name == "android_system_stubs_current" || strings.HasPrefix(ver, "system_"): |
Jiyong Park | 2d49294 | 2018-03-05 17:44:10 +0900 | [diff] [blame] | 614 | return javaSystem |
Colin Cross | f19b9bb | 2018-03-26 14:42:44 -0700 | [diff] [blame^] | 615 | case name == "android_test_stubs_current" || strings.HasPrefix(ver, "test_"): |
Jiyong Park | 2d49294 | 2018-03-05 17:44:10 +0900 | [diff] [blame] | 616 | return javaPlatform |
Colin Cross | f19b9bb | 2018-03-26 14:42:44 -0700 | [diff] [blame^] | 617 | case name == "android_stubs_current" || ver == "current": |
| 618 | return javaSdk |
| 619 | case ver == "": |
| 620 | return javaPlatform |
| 621 | default: |
| 622 | if _, err := strconv.Atoi(ver); err != nil { |
| 623 | panic(fmt.Errorf("expected sdk_version to be a number, got %q", ver)) |
| 624 | } |
| 625 | return javaSdk |
Jiyong Park | 2d49294 | 2018-03-05 17:44:10 +0900 | [diff] [blame] | 626 | } |
| 627 | } |
| 628 | |
Jiyong Park | 750e557 | 2018-01-31 00:20:13 +0900 | [diff] [blame] | 629 | func checkLinkType(ctx android.ModuleContext, from *Module, to *Library, tag dependencyTag) { |
Colin Cross | f19b9bb | 2018-03-26 14:42:44 -0700 | [diff] [blame^] | 630 | if ctx.Host() { |
| 631 | return |
| 632 | } |
| 633 | |
| 634 | myLinkType := getLinkType(from, ctx.ModuleName()) |
| 635 | otherLinkType := getLinkType(&to.Module, ctx.OtherModuleName(to)) |
Jiyong Park | 2d49294 | 2018-03-05 17:44:10 +0900 | [diff] [blame] | 636 | commonMessage := "Adjust sdk_version: property of the source or target module so that target module is built with the same or smaller API set than the source." |
| 637 | |
| 638 | switch myLinkType { |
| 639 | case javaCore: |
| 640 | if otherLinkType != javaCore { |
| 641 | ctx.ModuleErrorf("compiles against core Java API, but dependency %q is compiling against non-core Java APIs."+commonMessage, |
Jiyong Park | 750e557 | 2018-01-31 00:20:13 +0900 | [diff] [blame] | 642 | ctx.OtherModuleName(to)) |
| 643 | } |
Jiyong Park | 2d49294 | 2018-03-05 17:44:10 +0900 | [diff] [blame] | 644 | break |
| 645 | case javaSdk: |
| 646 | if otherLinkType != javaCore && otherLinkType != javaSdk { |
| 647 | ctx.ModuleErrorf("compiles against Android API, but dependency %q is compiling against non-public Android API."+commonMessage, |
| 648 | ctx.OtherModuleName(to)) |
| 649 | } |
| 650 | break |
| 651 | case javaSystem: |
| 652 | if otherLinkType == javaPlatform { |
| 653 | ctx.ModuleErrorf("compiles against system API, but dependency %q is compiling against private API."+commonMessage, |
| 654 | ctx.OtherModuleName(to)) |
| 655 | } |
| 656 | break |
| 657 | case javaPlatform: |
| 658 | // no restriction on link-type |
| 659 | break |
Jiyong Park | 750e557 | 2018-01-31 00:20:13 +0900 | [diff] [blame] | 660 | } |
| 661 | } |
| 662 | |
Colin Cross | 32f676a | 2017-09-06 13:41:06 -0700 | [diff] [blame] | 663 | func (j *Module) collectDeps(ctx android.ModuleContext) deps { |
| 664 | var deps deps |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 665 | |
Colin Cross | 300f038 | 2018-03-06 13:11:51 -0800 | [diff] [blame] | 666 | if ctx.Device() { |
| 667 | sdkDep := decodeSdkDep(ctx, String(j.deviceProperties.Sdk_version)) |
| 668 | if sdkDep.invalidVersion { |
| 669 | ctx.AddMissingDependencies([]string{sdkDep.module}) |
| 670 | } else if sdkDep.useFiles { |
| 671 | // sdkDep.jar is actually equivalent to turbine header.jar. |
| 672 | deps.classpath = append(deps.classpath, sdkDep.jar) |
| 673 | deps.aidlIncludeDirs = append(deps.aidlIncludeDirs, sdkDep.aidl) |
| 674 | } |
Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 675 | } |
| 676 | |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 677 | ctx.VisitDirectDeps(func(module android.Module) { |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 678 | otherName := ctx.OtherModuleName(module) |
Colin Cross | ec7a042 | 2017-07-07 14:47:12 -0700 | [diff] [blame] | 679 | tag := ctx.OtherModuleDependencyTag(module) |
| 680 | |
Jiyong Park | 750e557 | 2018-01-31 00:20:13 +0900 | [diff] [blame] | 681 | if to, ok := module.(*Library); ok { |
| 682 | checkLinkType(ctx, j, to, tag.(dependencyTag)) |
| 683 | } |
Colin Cross | 5425090 | 2017-12-05 09:28:08 -0800 | [diff] [blame] | 684 | switch dep := module.(type) { |
| 685 | case Dependency: |
| 686 | switch tag { |
| 687 | case bootClasspathTag: |
| 688 | deps.bootClasspath = append(deps.bootClasspath, dep.HeaderJars()...) |
| 689 | case libTag: |
| 690 | deps.classpath = append(deps.classpath, dep.HeaderJars()...) |
| 691 | case staticLibTag: |
| 692 | deps.classpath = append(deps.classpath, dep.HeaderJars()...) |
| 693 | deps.staticJars = append(deps.staticJars, dep.ImplementationJars()...) |
| 694 | deps.staticHeaderJars = append(deps.staticHeaderJars, dep.HeaderJars()...) |
| 695 | case frameworkResTag: |
| 696 | if ctx.ModuleName() == "framework" { |
| 697 | // framework.jar has a one-off dependency on the R.java and Manifest.java files |
| 698 | // generated by framework-res.apk |
| 699 | deps.srcJars = append(deps.srcJars, dep.(*AndroidApp).aaptSrcJar) |
| 700 | } |
Nan Zhang | b2b33de | 2018-02-23 11:18:47 -0800 | [diff] [blame] | 701 | case frameworkApkTag: |
| 702 | if ctx.ModuleName() == "android_stubs_current" || |
| 703 | ctx.ModuleName() == "android_system_stubs_current" || |
| 704 | ctx.ModuleName() == "android_test_stubs_current" { |
| 705 | // framework stubs.jar need to depend on framework-res.apk, in order to pull the |
| 706 | // resource files out of there for aapt. |
| 707 | // |
| 708 | // Normally the package rule runs aapt, which includes the resource, |
| 709 | // but we're not running that in our package rule so just copy in the |
| 710 | // resource files here. |
| 711 | deps.staticJarResources = append(deps.staticJarResources, dep.(*AndroidApp).exportPackage) |
| 712 | } |
Colin Cross | 5425090 | 2017-12-05 09:28:08 -0800 | [diff] [blame] | 713 | case kotlinStdlibTag: |
| 714 | deps.kotlinStdlib = dep.HeaderJars() |
Colin Cross | 5425090 | 2017-12-05 09:28:08 -0800 | [diff] [blame] | 715 | } |
| 716 | |
| 717 | deps.aidlIncludeDirs = append(deps.aidlIncludeDirs, dep.AidlIncludeDirs()...) |
| 718 | case android.SourceFileProducer: |
| 719 | switch tag { |
| 720 | case libTag: |
| 721 | checkProducesJars(ctx, dep) |
| 722 | deps.classpath = append(deps.classpath, dep.Srcs()...) |
| 723 | case staticLibTag: |
| 724 | checkProducesJars(ctx, dep) |
| 725 | deps.classpath = append(deps.classpath, dep.Srcs()...) |
| 726 | deps.staticJars = append(deps.staticJars, dep.Srcs()...) |
| 727 | deps.staticHeaderJars = append(deps.staticHeaderJars, dep.Srcs()...) |
| 728 | case android.DefaultsDepTag, android.SourceDepTag: |
| 729 | // Nothing to do |
| 730 | default: |
| 731 | ctx.ModuleErrorf("dependency on genrule %q may only be in srcs, libs, or static_libs", otherName) |
| 732 | } |
| 733 | default: |
Colin Cross | ec7a042 | 2017-07-07 14:47:12 -0700 | [diff] [blame] | 734 | switch tag { |
| 735 | case android.DefaultsDepTag, android.SourceDepTag: |
Dan Willemsen | d6ba0d5 | 2017-09-13 15:46:47 -0700 | [diff] [blame] | 736 | // Nothing to do |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 737 | case systemModulesTag: |
| 738 | if deps.systemModules != nil { |
| 739 | panic("Found two system module dependencies") |
| 740 | } |
| 741 | sm := module.(*SystemModules) |
| 742 | if sm.outputFile == nil { |
| 743 | panic("Missing directory for system module dependency") |
| 744 | } |
| 745 | deps.systemModules = sm.outputFile |
Colin Cross | ec7a042 | 2017-07-07 14:47:12 -0700 | [diff] [blame] | 746 | default: |
| 747 | ctx.ModuleErrorf("depends on non-java module %q", otherName) |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 748 | } |
Colin Cross | ec7a042 | 2017-07-07 14:47:12 -0700 | [diff] [blame] | 749 | } |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 750 | }) |
| 751 | |
Colin Cross | 32f676a | 2017-09-06 13:41:06 -0700 | [diff] [blame] | 752 | return deps |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 753 | } |
| 754 | |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 755 | func (j *Module) collectBuilderFlags(ctx android.ModuleContext, deps deps) javaBuilderFlags { |
Colin Cross | c0b06f1 | 2015-04-08 13:03:43 -0700 | [diff] [blame] | 756 | |
Colin Cross | f03c82b | 2015-04-13 13:53:40 -0700 | [diff] [blame] | 757 | var flags javaBuilderFlags |
| 758 | |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 759 | // javac flags. |
Colin Cross | f03c82b | 2015-04-13 13:53:40 -0700 | [diff] [blame] | 760 | javacFlags := j.properties.Javacflags |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 761 | if ctx.Config().TargetOpenJDK9() { |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 762 | javacFlags = append(javacFlags, j.properties.Openjdk9.Javacflags...) |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 763 | } |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 764 | if ctx.Config().MinimizeJavaDebugInfo() { |
Colin Cross | 126a25c | 2017-10-31 13:55:34 -0700 | [diff] [blame] | 765 | // Override the -g flag passed globally to remove local variable debug info to reduce |
| 766 | // disk and memory usage. |
| 767 | javacFlags = append(javacFlags, "-g:source,lines") |
| 768 | } |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 769 | if len(javacFlags) > 0 { |
| 770 | // optimization. |
| 771 | ctx.Variable(pctx, "javacFlags", strings.Join(javacFlags, " ")) |
| 772 | flags.javacFlags = "$javacFlags" |
Colin Cross | 4f26bc0 | 2017-09-06 12:52:16 -0700 | [diff] [blame] | 773 | } |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 774 | |
Andreas Gampe | f3e5b55 | 2018-01-22 21:27:21 -0800 | [diff] [blame] | 775 | if len(j.properties.Errorprone.Javacflags) > 0 { |
| 776 | flags.errorProneExtraJavacFlags = strings.Join(j.properties.Errorprone.Javacflags, " ") |
| 777 | } |
| 778 | |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 779 | // javaVersion flag. |
Nan Zhang | ea568a4 | 2017-11-08 21:20:04 -0800 | [diff] [blame] | 780 | sdk := sdkStringToNumber(ctx, String(j.deviceProperties.Sdk_version)) |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 781 | if j.properties.Java_version != nil { |
| 782 | flags.javaVersion = *j.properties.Java_version |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 783 | } else if ctx.Device() && sdk <= 23 { |
| 784 | flags.javaVersion = "1.7" |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 785 | } else if ctx.Device() && sdk <= 26 || !ctx.Config().TargetOpenJDK9() { |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 786 | flags.javaVersion = "1.8" |
Jiyong Park | 1a5d7b1 | 2018-01-15 15:05:10 +0900 | [diff] [blame] | 787 | } else if ctx.Device() && String(j.deviceProperties.Sdk_version) != "" && sdk == android.FutureApiLevel { |
Colin Cross | 2ebc476 | 2017-10-20 14:00:31 -0700 | [diff] [blame] | 788 | // TODO(ccross): once we generate stubs we should be able to use 1.9 for sdk_version: "current" |
| 789 | flags.javaVersion = "1.8" |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 790 | } else { |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 791 | flags.javaVersion = "1.9" |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 792 | } |
| 793 | |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 794 | // classpath |
Nan Zhang | 581fd21 | 2018-01-10 16:06:12 -0800 | [diff] [blame] | 795 | flags.bootClasspath = append(flags.bootClasspath, deps.bootClasspath...) |
| 796 | flags.classpath = append(flags.classpath, deps.classpath...) |
Colin Cross | 7fdd2b7 | 2018-01-02 18:14:25 -0800 | [diff] [blame] | 797 | |
| 798 | if len(flags.bootClasspath) == 0 && ctx.Host() && !ctx.Config().TargetOpenJDK9() && |
| 799 | !Bool(j.properties.No_standard_libs) && |
| 800 | inList(flags.javaVersion, []string{"1.6", "1.7", "1.8"}) { |
| 801 | // Give host-side tools a version of OpenJDK's standard libraries |
| 802 | // close to what they're targeting. As of Dec 2017, AOSP is only |
| 803 | // bundling OpenJDK 8 and 9, so nothing < 8 is available. |
| 804 | // |
| 805 | // When building with OpenJDK 8, the following should have no |
| 806 | // effect since those jars would be available by default. |
| 807 | // |
| 808 | // When building with OpenJDK 9 but targeting a version < 1.8, |
| 809 | // putting them on the bootclasspath means that: |
| 810 | // a) code can't (accidentally) refer to OpenJDK 9 specific APIs |
| 811 | // b) references to existing APIs are not reinterpreted in an |
| 812 | // OpenJDK 9-specific way, eg. calls to subclasses of |
| 813 | // java.nio.Buffer as in http://b/70862583 |
| 814 | java8Home := ctx.Config().Getenv("ANDROID_JAVA8_HOME") |
| 815 | flags.bootClasspath = append(flags.bootClasspath, |
| 816 | android.PathForSource(ctx, java8Home, "jre/lib/jce.jar"), |
| 817 | android.PathForSource(ctx, java8Home, "jre/lib/rt.jar")) |
Nan Zhang | 5f8cb42 | 2018-02-06 10:34:32 -0800 | [diff] [blame] | 818 | if Bool(j.properties.Use_tools_jar) { |
| 819 | flags.bootClasspath = append(flags.bootClasspath, |
| 820 | android.PathForSource(ctx, java8Home, "lib/tools.jar")) |
| 821 | } |
Colin Cross | 7fdd2b7 | 2018-01-02 18:14:25 -0800 | [diff] [blame] | 822 | } |
| 823 | |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 824 | // systemModules |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 825 | if deps.systemModules != nil { |
| 826 | flags.systemModules = append(flags.systemModules, deps.systemModules) |
| 827 | } |
| 828 | |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 829 | // aidl flags. |
Colin Cross | 32f676a | 2017-09-06 13:41:06 -0700 | [diff] [blame] | 830 | aidlFlags := j.aidlFlags(ctx, deps.aidlPreprocess, deps.aidlIncludeDirs) |
Colin Cross | f03c82b | 2015-04-13 13:53:40 -0700 | [diff] [blame] | 831 | if len(aidlFlags) > 0 { |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 832 | // optimization. |
Colin Cross | f03c82b | 2015-04-13 13:53:40 -0700 | [diff] [blame] | 833 | ctx.Variable(pctx, "aidlFlags", strings.Join(aidlFlags, " ")) |
| 834 | flags.aidlFlags = "$aidlFlags" |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 835 | } |
| 836 | |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 837 | return flags |
| 838 | } |
Colin Cross | c0b06f1 | 2015-04-08 13:03:43 -0700 | [diff] [blame] | 839 | |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 840 | func (j *Module) compile(ctx android.ModuleContext, extraSrcJars ...android.Path) { |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 841 | |
Colin Cross | ebe1a51 | 2017-11-14 13:12:14 -0800 | [diff] [blame] | 842 | j.exportAidlIncludeDirs = android.PathsForModuleSrc(ctx, j.deviceProperties.Aidl.Export_include_dirs) |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 843 | |
| 844 | deps := j.collectDeps(ctx) |
| 845 | flags := j.collectBuilderFlags(ctx, deps) |
| 846 | |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 847 | if ctx.Config().TargetOpenJDK9() { |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 848 | j.properties.Srcs = append(j.properties.Srcs, j.properties.Openjdk9.Srcs...) |
| 849 | } |
| 850 | srcFiles := ctx.ExpandSources(j.properties.Srcs, j.properties.Exclude_srcs) |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 851 | if hasSrcExt(srcFiles.Strings(), ".proto") { |
Colin Cross | 0f2ee15 | 2017-12-14 15:22:43 -0800 | [diff] [blame] | 852 | flags = protoFlags(ctx, &j.properties, &j.protoProperties, flags) |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 853 | } |
| 854 | |
Colin Cross | af05017 | 2017-11-15 23:01:59 -0800 | [diff] [blame] | 855 | srcFiles = j.genSources(ctx, srcFiles, flags) |
| 856 | |
| 857 | srcJars := srcFiles.FilterByExt(".srcjar") |
Colin Cross | 59149b6 | 2017-10-16 18:07:29 -0700 | [diff] [blame] | 858 | srcJars = append(srcJars, deps.srcJars...) |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 859 | srcJars = append(srcJars, extraSrcJars...) |
Colin Cross | b7a6324 | 2015-04-16 14:09:14 -0700 | [diff] [blame] | 860 | |
Colin Cross | 0a6e007 | 2017-08-30 14:24:55 -0700 | [diff] [blame] | 861 | var jars android.Paths |
| 862 | |
Colin Cross | 1ee2317 | 2017-10-18 14:44:18 -0700 | [diff] [blame] | 863 | jarName := ctx.ModuleName() + ".jar" |
| 864 | |
Przemyslaw Szczepaniak | 4b5fe9d | 2018-02-13 14:32:54 +0000 | [diff] [blame] | 865 | javaSrcFiles := srcFiles.FilterByExt(".java") |
| 866 | var uniqueSrcFiles android.Paths |
| 867 | set := make(map[string]bool) |
| 868 | for _, v := range javaSrcFiles { |
| 869 | if _, found := set[v.String()]; !found { |
| 870 | set[v.String()] = true |
| 871 | uniqueSrcFiles = append(uniqueSrcFiles, v) |
| 872 | } |
| 873 | } |
| 874 | |
Colin Cross | 93e8595 | 2017-08-15 13:34:18 -0700 | [diff] [blame] | 875 | if srcFiles.HasExt(".kt") { |
| 876 | // If there are kotlin files, compile them first but pass all the kotlin and java files |
| 877 | // kotlinc will use the java files to resolve types referenced by the kotlin files, but |
| 878 | // won't emit any classes for them. |
| 879 | |
| 880 | flags.kotlincFlags = "-no-stdlib" |
Przemyslaw Szczepaniak | 66c0c40 | 2018-03-08 13:21:55 +0000 | [diff] [blame] | 881 | |
Colin Cross | 93e8595 | 2017-08-15 13:34:18 -0700 | [diff] [blame] | 882 | if ctx.Device() { |
| 883 | flags.kotlincFlags += " -no-jdk" |
| 884 | } |
| 885 | |
Przemyslaw Szczepaniak | 4b5fe9d | 2018-02-13 14:32:54 +0000 | [diff] [blame] | 886 | var kotlinSrcFiles android.Paths |
| 887 | kotlinSrcFiles = append(kotlinSrcFiles, uniqueSrcFiles...) |
| 888 | kotlinSrcFiles = append(kotlinSrcFiles, srcFiles.FilterByExt(".kt")...) |
| 889 | |
Przemyslaw Szczepaniak | e3d26bf | 2018-03-05 16:06:42 +0000 | [diff] [blame] | 890 | flags.kotlincClasspath = append(flags.kotlincClasspath, deps.bootClasspath...) |
Colin Cross | 93e8595 | 2017-08-15 13:34:18 -0700 | [diff] [blame] | 891 | flags.kotlincClasspath = append(flags.kotlincClasspath, deps.kotlinStdlib...) |
| 892 | flags.kotlincClasspath = append(flags.kotlincClasspath, deps.classpath...) |
| 893 | |
Colin Cross | 1ee2317 | 2017-10-18 14:44:18 -0700 | [diff] [blame] | 894 | kotlinJar := android.PathForModuleOut(ctx, "kotlin", jarName) |
Przemyslaw Szczepaniak | 4b5fe9d | 2018-02-13 14:32:54 +0000 | [diff] [blame] | 895 | TransformKotlinToClasses(ctx, kotlinJar, kotlinSrcFiles, srcJars, flags) |
Colin Cross | 93e8595 | 2017-08-15 13:34:18 -0700 | [diff] [blame] | 896 | if ctx.Failed() { |
| 897 | return |
| 898 | } |
| 899 | |
| 900 | // Make javac rule depend on the kotlinc rule |
| 901 | flags.classpath = append(flags.classpath, kotlinJar) |
Przemyslaw Szczepaniak | 66c0c40 | 2018-03-08 13:21:55 +0000 | [diff] [blame] | 902 | |
Colin Cross | 93e8595 | 2017-08-15 13:34:18 -0700 | [diff] [blame] | 903 | // Jar kotlin classes into the final jar after javac |
| 904 | jars = append(jars, kotlinJar) |
Przemyslaw Szczepaniak | 66c0c40 | 2018-03-08 13:21:55 +0000 | [diff] [blame] | 905 | |
| 906 | // Don't add kotlin-stdlib if using (on-device) renamed stdlib |
| 907 | // (it's expected to be on device bootclasspath) |
| 908 | if !proptools.Bool(j.properties.Renamed_kotlin_stdlib) { |
| 909 | jars = append(jars, deps.kotlinStdlib...) |
| 910 | } |
Colin Cross | 93e8595 | 2017-08-15 13:34:18 -0700 | [diff] [blame] | 911 | } |
| 912 | |
Colin Cross | 5ab4e6d | 2017-11-22 16:20:45 -0800 | [diff] [blame] | 913 | // Store the list of .java files that was passed to javac |
| 914 | j.compiledJavaSrcs = uniqueSrcFiles |
| 915 | j.compiledSrcJars = srcJars |
| 916 | |
Nan Zhang | 61eaedb | 2017-11-02 13:28:15 -0700 | [diff] [blame] | 917 | enable_sharding := false |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 918 | if ctx.Device() && !ctx.Config().IsEnvFalse("TURBINE_ENABLED") { |
Nan Zhang | 61eaedb | 2017-11-02 13:28:15 -0700 | [diff] [blame] | 919 | if j.properties.Javac_shard_size != nil && *(j.properties.Javac_shard_size) > 0 { |
| 920 | enable_sharding = true |
| 921 | if len(j.properties.Annotation_processors) != 0 || |
| 922 | len(j.properties.Annotation_processor_classes) != 0 { |
| 923 | ctx.PropertyErrorf("javac_shard_size", |
| 924 | "%q cannot be set when annotation processors are enabled.", |
| 925 | j.properties.Javac_shard_size) |
| 926 | } |
| 927 | } |
Colin Cross | f19b9bb | 2018-03-26 14:42:44 -0700 | [diff] [blame^] | 928 | j.headerJarFile = j.compileJavaHeader(ctx, uniqueSrcFiles, srcJars, deps, flags, jarName) |
| 929 | if ctx.Failed() { |
| 930 | return |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 931 | } |
| 932 | } |
Colin Cross | 8eadbf0 | 2017-10-24 17:46:00 -0700 | [diff] [blame] | 933 | if len(uniqueSrcFiles) > 0 || len(srcJars) > 0 { |
Colin Cross | d689143 | 2017-09-27 17:39:56 -0700 | [diff] [blame] | 934 | var extraJarDeps android.Paths |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 935 | if ctx.Config().IsEnvTrue("RUN_ERROR_PRONE") { |
Colin Cross | c6bbef3 | 2017-08-14 14:16:06 -0700 | [diff] [blame] | 936 | // If error-prone is enabled, add an additional rule to compile the java files into |
| 937 | // a separate set of classes (so that they don't overwrite the normal ones and require |
Colin Cross | d689143 | 2017-09-27 17:39:56 -0700 | [diff] [blame] | 938 | // a rebuild when error-prone is turned off). |
Colin Cross | c6bbef3 | 2017-08-14 14:16:06 -0700 | [diff] [blame] | 939 | // TODO(ccross): Once we always compile with javac9 we may be able to conditionally |
| 940 | // enable error-prone without affecting the output class files. |
Colin Cross | 1ee2317 | 2017-10-18 14:44:18 -0700 | [diff] [blame] | 941 | errorprone := android.PathForModuleOut(ctx, "errorprone", jarName) |
Nan Zhang | 61eaedb | 2017-11-02 13:28:15 -0700 | [diff] [blame] | 942 | RunErrorProne(ctx, errorprone, uniqueSrcFiles, srcJars, flags) |
Colin Cross | c6bbef3 | 2017-08-14 14:16:06 -0700 | [diff] [blame] | 943 | extraJarDeps = append(extraJarDeps, errorprone) |
| 944 | } |
| 945 | |
Nan Zhang | 61eaedb | 2017-11-02 13:28:15 -0700 | [diff] [blame] | 946 | if enable_sharding { |
Nan Zhang | 581fd21 | 2018-01-10 16:06:12 -0800 | [diff] [blame] | 947 | flags.classpath = append(flags.classpath, j.headerJarFile) |
Nan Zhang | 61eaedb | 2017-11-02 13:28:15 -0700 | [diff] [blame] | 948 | shardSize := int(*(j.properties.Javac_shard_size)) |
| 949 | var shardSrcs []android.Paths |
| 950 | if len(uniqueSrcFiles) > 0 { |
| 951 | shardSrcs = shardPaths(uniqueSrcFiles, shardSize) |
| 952 | for idx, shardSrc := range shardSrcs { |
| 953 | classes := android.PathForModuleOut(ctx, "javac", jarName+strconv.Itoa(idx)) |
| 954 | TransformJavaToClasses(ctx, classes, idx, shardSrc, nil, flags, extraJarDeps) |
| 955 | jars = append(jars, classes) |
| 956 | } |
| 957 | } |
| 958 | if len(srcJars) > 0 { |
| 959 | classes := android.PathForModuleOut(ctx, "javac", jarName+strconv.Itoa(len(shardSrcs))) |
| 960 | TransformJavaToClasses(ctx, classes, len(shardSrcs), nil, srcJars, flags, extraJarDeps) |
| 961 | jars = append(jars, classes) |
| 962 | } |
| 963 | } else { |
| 964 | classes := android.PathForModuleOut(ctx, "javac", jarName) |
| 965 | TransformJavaToClasses(ctx, classes, -1, uniqueSrcFiles, srcJars, flags, extraJarDeps) |
| 966 | jars = append(jars, classes) |
| 967 | } |
Colin Cross | d689143 | 2017-09-27 17:39:56 -0700 | [diff] [blame] | 968 | if ctx.Failed() { |
| 969 | return |
| 970 | } |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 971 | } |
| 972 | |
Colin Cross | 0f37af0 | 2017-09-27 17:42:05 -0700 | [diff] [blame] | 973 | dirArgs, dirDeps := ResourceDirsToJarArgs(ctx, j.properties.Java_resource_dirs, j.properties.Exclude_java_resource_dirs) |
| 974 | fileArgs, fileDeps := ResourceFilesToJarArgs(ctx, j.properties.Java_resources, j.properties.Exclude_java_resources) |
| 975 | |
| 976 | var resArgs []string |
| 977 | var resDeps android.Paths |
| 978 | |
| 979 | resArgs = append(resArgs, dirArgs...) |
| 980 | resDeps = append(resDeps, dirDeps...) |
| 981 | |
| 982 | resArgs = append(resArgs, fileArgs...) |
| 983 | resDeps = append(resDeps, fileDeps...) |
| 984 | |
| 985 | if proptools.Bool(j.properties.Include_srcs) { |
Colin Cross | 2372923 | 2017-10-03 13:14:07 -0700 | [diff] [blame] | 986 | srcArgs, srcDeps := SourceFilesToJarArgs(ctx, j.properties.Srcs, j.properties.Exclude_srcs) |
Colin Cross | 0f37af0 | 2017-09-27 17:42:05 -0700 | [diff] [blame] | 987 | resArgs = append(resArgs, srcArgs...) |
| 988 | resDeps = append(resDeps, srcDeps...) |
| 989 | } |
Colin Cross | 40a3671 | 2017-09-27 17:41:35 -0700 | [diff] [blame] | 990 | |
| 991 | if len(resArgs) > 0 { |
Colin Cross | 1ee2317 | 2017-10-18 14:44:18 -0700 | [diff] [blame] | 992 | resourceJar := android.PathForModuleOut(ctx, "res", jarName) |
Colin Cross | e9a275b | 2017-10-16 17:09:48 -0700 | [diff] [blame] | 993 | TransformResourcesToJar(ctx, resourceJar, resArgs, resDeps) |
Colin Cross | 65bf4f2 | 2015-04-03 16:54:17 -0700 | [diff] [blame] | 994 | if ctx.Failed() { |
| 995 | return |
| 996 | } |
Colin Cross | 2097830 | 2015-04-10 17:05:07 -0700 | [diff] [blame] | 997 | |
Colin Cross | 0a6e007 | 2017-08-30 14:24:55 -0700 | [diff] [blame] | 998 | jars = append(jars, resourceJar) |
Colin Cross | 65bf4f2 | 2015-04-03 16:54:17 -0700 | [diff] [blame] | 999 | } |
| 1000 | |
Colin Cross | 6ade34f | 2017-09-15 13:00:47 -0700 | [diff] [blame] | 1001 | // static classpath jars have the resources in them, so the resource jars aren't necessary here |
Colin Cross | 32f676a | 2017-09-06 13:41:06 -0700 | [diff] [blame] | 1002 | jars = append(jars, deps.staticJars...) |
Nan Zhang | b2b33de | 2018-02-23 11:18:47 -0800 | [diff] [blame] | 1003 | jars = append(jars, deps.staticJarResources...) |
Colin Cross | 0a6e007 | 2017-08-30 14:24:55 -0700 | [diff] [blame] | 1004 | |
Colin Cross | 366938f | 2017-12-11 16:29:02 -0800 | [diff] [blame] | 1005 | var manifest android.OptionalPath |
| 1006 | if j.properties.Manifest != nil { |
| 1007 | manifest = android.OptionalPathForPath(ctx.ExpandSource(*j.properties.Manifest, "manifest")) |
| 1008 | } |
Colin Cross | 635acc9 | 2017-09-12 22:50:46 -0700 | [diff] [blame] | 1009 | |
Colin Cross | 0a6e007 | 2017-08-30 14:24:55 -0700 | [diff] [blame] | 1010 | // Combine the classes built from sources, any manifests, and any static libraries into |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 1011 | // classes.jar. If there is only one input jar this step will be skipped. |
Colin Cross | e9a275b | 2017-10-16 17:09:48 -0700 | [diff] [blame] | 1012 | var outputFile android.Path |
| 1013 | |
| 1014 | if len(jars) == 1 && !manifest.Valid() { |
| 1015 | // Optimization: skip the combine step if there is nothing to do |
Colin Cross | 7b60cdd | 2017-12-21 13:52:58 -0800 | [diff] [blame] | 1016 | // TODO(ccross): this leaves any module-info.class files, but those should only come from |
| 1017 | // prebuilt dependencies until we support modules in the platform build, so there shouldn't be |
| 1018 | // any if len(jars) == 1. |
Colin Cross | e9a275b | 2017-10-16 17:09:48 -0700 | [diff] [blame] | 1019 | outputFile = jars[0] |
| 1020 | } else { |
Colin Cross | 1ee2317 | 2017-10-18 14:44:18 -0700 | [diff] [blame] | 1021 | combinedJar := android.PathForModuleOut(ctx, "combined", jarName) |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 1022 | TransformJarsToJar(ctx, combinedJar, "for javac", jars, manifest, false, nil) |
Colin Cross | e9a275b | 2017-10-16 17:09:48 -0700 | [diff] [blame] | 1023 | outputFile = combinedJar |
| 1024 | } |
Colin Cross | 0a6e007 | 2017-08-30 14:24:55 -0700 | [diff] [blame] | 1025 | |
Przemyslaw Szczepaniak | 66c0c40 | 2018-03-08 13:21:55 +0000 | [diff] [blame] | 1026 | // Use renamed kotlin standard library? |
| 1027 | if srcFiles.HasExt(".kt") && proptools.Bool(j.properties.Renamed_kotlin_stdlib) { |
| 1028 | jarjarFile := android.PathForModuleOut(ctx, "kotlin-renamed", jarName) |
| 1029 | TransformJarJar(ctx, jarjarFile, outputFile, |
| 1030 | android.PathForSource(ctx, "external/kotlinc/jarjar-rules.txt")) |
| 1031 | outputFile = jarjarFile |
| 1032 | if ctx.Failed() { |
| 1033 | return |
| 1034 | } |
| 1035 | } |
| 1036 | |
Colin Cross | 0a6e007 | 2017-08-30 14:24:55 -0700 | [diff] [blame] | 1037 | if j.properties.Jarjar_rules != nil { |
| 1038 | jarjar_rules := android.PathForModuleSrc(ctx, *j.properties.Jarjar_rules) |
Colin Cross | 8649b26 | 2017-09-27 18:03:17 -0700 | [diff] [blame] | 1039 | // Transform classes.jar into classes-jarjar.jar |
Colin Cross | 1ee2317 | 2017-10-18 14:44:18 -0700 | [diff] [blame] | 1040 | jarjarFile := android.PathForModuleOut(ctx, "jarjar", jarName) |
Colin Cross | e9a275b | 2017-10-16 17:09:48 -0700 | [diff] [blame] | 1041 | TransformJarJar(ctx, jarjarFile, outputFile, jarjar_rules) |
| 1042 | outputFile = jarjarFile |
Colin Cross | 0a6e007 | 2017-08-30 14:24:55 -0700 | [diff] [blame] | 1043 | if ctx.Failed() { |
| 1044 | return |
| 1045 | } |
| 1046 | } |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 1047 | j.implementationJarFile = outputFile |
| 1048 | if j.headerJarFile == nil { |
| 1049 | j.headerJarFile = j.implementationJarFile |
| 1050 | } |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1051 | |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 1052 | if ctx.Config().IsEnvTrue("EMMA_INSTRUMENT_FRAMEWORK") { |
Colin Cross | cb93359 | 2017-11-22 13:49:43 -0800 | [diff] [blame] | 1053 | if inList(ctx.ModuleName(), config.InstrumentFrameworkModules) { |
| 1054 | j.properties.Instrument = true |
| 1055 | } |
| 1056 | } |
| 1057 | |
Colin Cross | 3144dfc | 2018-01-03 15:06:47 -0800 | [diff] [blame] | 1058 | if j.shouldInstrument(ctx) { |
Colin Cross | cb93359 | 2017-11-22 13:49:43 -0800 | [diff] [blame] | 1059 | outputFile = j.instrument(ctx, flags, outputFile, jarName) |
| 1060 | } |
| 1061 | |
| 1062 | if ctx.Device() && j.installable() { |
Colin Cross | f0056cb | 2017-12-22 15:56:08 -0800 | [diff] [blame] | 1063 | outputFile = j.compileDex(ctx, flags, outputFile, jarName) |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1064 | if ctx.Failed() { |
| 1065 | return |
| 1066 | } |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1067 | } |
Colin Cross | b7a6324 | 2015-04-16 14:09:14 -0700 | [diff] [blame] | 1068 | ctx.CheckbuildFile(outputFile) |
| 1069 | j.outputFile = outputFile |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1070 | } |
| 1071 | |
Colin Cross | 8eadbf0 | 2017-10-24 17:46:00 -0700 | [diff] [blame] | 1072 | func (j *Module) compileJavaHeader(ctx android.ModuleContext, srcFiles, srcJars android.Paths, |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 1073 | deps deps, flags javaBuilderFlags, jarName string) android.Path { |
| 1074 | |
| 1075 | var jars android.Paths |
Colin Cross | 8eadbf0 | 2017-10-24 17:46:00 -0700 | [diff] [blame] | 1076 | if len(srcFiles) > 0 || len(srcJars) > 0 { |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 1077 | // Compile java sources into turbine.jar. |
| 1078 | turbineJar := android.PathForModuleOut(ctx, "turbine", jarName) |
| 1079 | TransformJavaToHeaderClasses(ctx, turbineJar, srcFiles, srcJars, flags) |
| 1080 | if ctx.Failed() { |
| 1081 | return nil |
| 1082 | } |
| 1083 | jars = append(jars, turbineJar) |
| 1084 | } |
| 1085 | |
| 1086 | // Combine any static header libraries into classes-header.jar. If there is only |
| 1087 | // one input jar this step will be skipped. |
| 1088 | var headerJar android.Path |
| 1089 | jars = append(jars, deps.staticHeaderJars...) |
| 1090 | |
Colin Cross | 5c6ecc1 | 2017-10-23 18:12:27 -0700 | [diff] [blame] | 1091 | // we cannot skip the combine step for now if there is only one jar |
| 1092 | // since we have to strip META-INF/TRANSITIVE dir from turbine.jar |
| 1093 | combinedJar := android.PathForModuleOut(ctx, "turbine-combined", jarName) |
| 1094 | TransformJarsToJar(ctx, combinedJar, "for turbine", jars, android.OptionalPath{}, false, []string{"META-INF"}) |
| 1095 | headerJar = combinedJar |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 1096 | |
| 1097 | if j.properties.Jarjar_rules != nil { |
| 1098 | jarjar_rules := android.PathForModuleSrc(ctx, *j.properties.Jarjar_rules) |
| 1099 | // Transform classes.jar into classes-jarjar.jar |
| 1100 | jarjarFile := android.PathForModuleOut(ctx, "turbine-jarjar", jarName) |
| 1101 | TransformJarJar(ctx, jarjarFile, headerJar, jarjar_rules) |
| 1102 | headerJar = jarjarFile |
| 1103 | if ctx.Failed() { |
| 1104 | return nil |
| 1105 | } |
| 1106 | } |
| 1107 | |
| 1108 | return headerJar |
| 1109 | } |
| 1110 | |
Colin Cross | cb93359 | 2017-11-22 13:49:43 -0800 | [diff] [blame] | 1111 | func (j *Module) instrument(ctx android.ModuleContext, flags javaBuilderFlags, |
| 1112 | classesJar android.Path, jarName string) android.Path { |
| 1113 | |
Colin Cross | 7a3139e | 2017-12-19 13:57:50 -0800 | [diff] [blame] | 1114 | specs := j.jacocoModuleToZipCommand(ctx) |
Colin Cross | cb93359 | 2017-11-22 13:49:43 -0800 | [diff] [blame] | 1115 | |
Colin Cross | 84c3882 | 2018-01-03 15:59:46 -0800 | [diff] [blame] | 1116 | jacocoReportClassesFile := android.PathForModuleOut(ctx, "jacoco-report-classes", jarName) |
Colin Cross | cb93359 | 2017-11-22 13:49:43 -0800 | [diff] [blame] | 1117 | instrumentedJar := android.PathForModuleOut(ctx, "jacoco", jarName) |
| 1118 | |
| 1119 | jacocoInstrumentJar(ctx, instrumentedJar, jacocoReportClassesFile, classesJar, specs) |
| 1120 | |
| 1121 | j.jacocoReportClassesFile = jacocoReportClassesFile |
| 1122 | |
| 1123 | return instrumentedJar |
| 1124 | } |
| 1125 | |
Colin Cross | cb93359 | 2017-11-22 13:49:43 -0800 | [diff] [blame] | 1126 | // Returns a sdk version as a string that is guaranteed to be a parseable as a number. For |
| 1127 | // modules targeting an unreleased SDK (meaning it does not yet have a number) it returns "10000". |
| 1128 | func (j *Module) minSdkVersionNumber(ctx android.ModuleContext) string { |
| 1129 | switch String(j.deviceProperties.Sdk_version) { |
Jiyong Park | 750e557 | 2018-01-31 00:20:13 +0900 | [diff] [blame] | 1130 | case "", "current", "test_current", "system_current", "core_current": |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 1131 | return strconv.Itoa(ctx.Config().DefaultAppTargetSdkInt()) |
Colin Cross | cb93359 | 2017-11-22 13:49:43 -0800 | [diff] [blame] | 1132 | default: |
Sundong Ahn | 0926fae | 2017-10-17 16:34:51 +0900 | [diff] [blame] | 1133 | return android.GetNumericSdkVersion(String(j.deviceProperties.Sdk_version)) |
Colin Cross | cb93359 | 2017-11-22 13:49:43 -0800 | [diff] [blame] | 1134 | } |
| 1135 | } |
| 1136 | |
Colin Cross | 59f1bb6 | 2017-09-27 17:59:10 -0700 | [diff] [blame] | 1137 | func (j *Module) installable() bool { |
| 1138 | return j.properties.Installable == nil || *j.properties.Installable |
| 1139 | } |
| 1140 | |
Colin Cross | f506d87 | 2017-07-19 15:53:04 -0700 | [diff] [blame] | 1141 | var _ Dependency = (*Library)(nil) |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1142 | |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 1143 | func (j *Module) HeaderJars() android.Paths { |
| 1144 | return android.Paths{j.headerJarFile} |
| 1145 | } |
| 1146 | |
| 1147 | func (j *Module) ImplementationJars() android.Paths { |
| 1148 | return android.Paths{j.implementationJarFile} |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1149 | } |
| 1150 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 1151 | func (j *Module) AidlIncludeDirs() android.Paths { |
Colin Cross | c0b06f1 | 2015-04-08 13:03:43 -0700 | [diff] [blame] | 1152 | return j.exportAidlIncludeDirs |
| 1153 | } |
| 1154 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 1155 | var _ logtagsProducer = (*Module)(nil) |
Colin Cross | f05fe97 | 2015-04-10 17:45:20 -0700 | [diff] [blame] | 1156 | |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 1157 | func (j *Module) logtags() android.Paths { |
Colin Cross | f05fe97 | 2015-04-10 17:45:20 -0700 | [diff] [blame] | 1158 | return j.logtagsSrcs |
| 1159 | } |
| 1160 | |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1161 | // |
| 1162 | // Java libraries (.jar file) |
| 1163 | // |
| 1164 | |
Colin Cross | f506d87 | 2017-07-19 15:53:04 -0700 | [diff] [blame] | 1165 | type Library struct { |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 1166 | Module |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1167 | } |
| 1168 | |
Colin Cross | f506d87 | 2017-07-19 15:53:04 -0700 | [diff] [blame] | 1169 | func (j *Library) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 1170 | j.compile(ctx) |
Colin Cross | b7a6324 | 2015-04-16 14:09:14 -0700 | [diff] [blame] | 1171 | |
Colin Cross | 59f1bb6 | 2017-09-27 17:59:10 -0700 | [diff] [blame] | 1172 | if j.installable() { |
Colin Cross | 2c429dc | 2017-08-31 16:45:16 -0700 | [diff] [blame] | 1173 | j.installFile = ctx.InstallFile(android.PathForModuleInstall(ctx, "framework"), |
| 1174 | ctx.ModuleName()+".jar", j.outputFile) |
| 1175 | } |
Colin Cross | b7a6324 | 2015-04-16 14:09:14 -0700 | [diff] [blame] | 1176 | } |
| 1177 | |
Colin Cross | f506d87 | 2017-07-19 15:53:04 -0700 | [diff] [blame] | 1178 | func (j *Library) DepsMutator(ctx android.BottomUpMutatorContext) { |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 1179 | j.deps(ctx) |
| 1180 | } |
| 1181 | |
Colin Cross | a60ead8 | 2017-10-02 18:10:21 -0700 | [diff] [blame] | 1182 | func LibraryFactory(installable bool) func() android.Module { |
| 1183 | return func() android.Module { |
| 1184 | module := &Library{} |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1185 | |
Colin Cross | a60ead8 | 2017-10-02 18:10:21 -0700 | [diff] [blame] | 1186 | if !installable { |
| 1187 | module.properties.Installable = proptools.BoolPtr(false) |
| 1188 | } |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1189 | |
Colin Cross | a60ead8 | 2017-10-02 18:10:21 -0700 | [diff] [blame] | 1190 | module.AddProperties( |
| 1191 | &module.Module.properties, |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 1192 | &module.Module.deviceProperties, |
| 1193 | &module.Module.protoProperties) |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 1194 | |
Colin Cross | a60ead8 | 2017-10-02 18:10:21 -0700 | [diff] [blame] | 1195 | InitJavaModule(module, android.HostAndDeviceSupported) |
| 1196 | return module |
| 1197 | } |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1198 | } |
| 1199 | |
Colin Cross | f506d87 | 2017-07-19 15:53:04 -0700 | [diff] [blame] | 1200 | func LibraryHostFactory() android.Module { |
| 1201 | module := &Library{} |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1202 | |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 1203 | module.AddProperties( |
| 1204 | &module.Module.properties, |
| 1205 | &module.Module.protoProperties) |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 1206 | |
Colin Cross | 89536d4 | 2017-07-07 14:35:50 -0700 | [diff] [blame] | 1207 | InitJavaModule(module, android.HostSupported) |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 1208 | return module |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1209 | } |
| 1210 | |
| 1211 | // |
| 1212 | // Java Binaries (.jar file plus wrapper script) |
| 1213 | // |
| 1214 | |
Colin Cross | f506d87 | 2017-07-19 15:53:04 -0700 | [diff] [blame] | 1215 | type binaryProperties struct { |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 1216 | // installable script to execute the resulting jar |
Nan Zhang | ea568a4 | 2017-11-08 21:20:04 -0800 | [diff] [blame] | 1217 | Wrapper *string |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 1218 | } |
| 1219 | |
Colin Cross | f506d87 | 2017-07-19 15:53:04 -0700 | [diff] [blame] | 1220 | type Binary struct { |
| 1221 | Library |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1222 | |
Colin Cross | f506d87 | 2017-07-19 15:53:04 -0700 | [diff] [blame] | 1223 | binaryProperties binaryProperties |
Colin Cross | 10a0349 | 2017-08-10 17:09:43 -0700 | [diff] [blame] | 1224 | |
Colin Cross | 6b4a32d | 2017-12-05 13:42:45 -0800 | [diff] [blame] | 1225 | isWrapperVariant bool |
| 1226 | |
Colin Cross | c331599 | 2017-12-08 19:12:36 -0800 | [diff] [blame] | 1227 | wrapperFile android.Path |
Colin Cross | 10a0349 | 2017-08-10 17:09:43 -0700 | [diff] [blame] | 1228 | binaryFile android.OutputPath |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1229 | } |
| 1230 | |
Alex Light | 2423717 | 2017-10-26 09:46:21 -0700 | [diff] [blame] | 1231 | func (j *Binary) HostToolPath() android.OptionalPath { |
| 1232 | return android.OptionalPathForPath(j.binaryFile) |
| 1233 | } |
| 1234 | |
Colin Cross | f506d87 | 2017-07-19 15:53:04 -0700 | [diff] [blame] | 1235 | func (j *Binary) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Colin Cross | 6b4a32d | 2017-12-05 13:42:45 -0800 | [diff] [blame] | 1236 | if ctx.Arch().ArchType == android.Common { |
| 1237 | // Compile the jar |
| 1238 | j.Library.GenerateAndroidBuildActions(ctx) |
Nan Zhang | 3c807db | 2017-11-03 14:53:31 -0700 | [diff] [blame] | 1239 | } else { |
Colin Cross | 6b4a32d | 2017-12-05 13:42:45 -0800 | [diff] [blame] | 1240 | // Handle the binary wrapper |
| 1241 | j.isWrapperVariant = true |
| 1242 | |
Colin Cross | 366938f | 2017-12-11 16:29:02 -0800 | [diff] [blame] | 1243 | if j.binaryProperties.Wrapper != nil { |
| 1244 | j.wrapperFile = ctx.ExpandSource(*j.binaryProperties.Wrapper, "wrapper") |
Colin Cross | 6b4a32d | 2017-12-05 13:42:45 -0800 | [diff] [blame] | 1245 | } else { |
| 1246 | j.wrapperFile = android.PathForSource(ctx, "build/soong/scripts/jar-wrapper.sh") |
| 1247 | } |
| 1248 | |
| 1249 | // Depend on the installed jar so that the wrapper doesn't get executed by |
| 1250 | // another build rule before the jar has been installed. |
| 1251 | jarFile := ctx.PrimaryModule().(*Binary).installFile |
| 1252 | |
| 1253 | j.binaryFile = ctx.InstallExecutable(android.PathForModuleInstall(ctx, "bin"), |
| 1254 | ctx.ModuleName(), j.wrapperFile, jarFile) |
Nan Zhang | 3c807db | 2017-11-03 14:53:31 -0700 | [diff] [blame] | 1255 | } |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1256 | } |
| 1257 | |
Colin Cross | f506d87 | 2017-07-19 15:53:04 -0700 | [diff] [blame] | 1258 | func (j *Binary) DepsMutator(ctx android.BottomUpMutatorContext) { |
Colin Cross | 6b4a32d | 2017-12-05 13:42:45 -0800 | [diff] [blame] | 1259 | if ctx.Arch().ArchType == android.Common { |
| 1260 | j.deps(ctx) |
Colin Cross | c331599 | 2017-12-08 19:12:36 -0800 | [diff] [blame] | 1261 | } else { |
Colin Cross | 366938f | 2017-12-11 16:29:02 -0800 | [diff] [blame] | 1262 | android.ExtractSourceDeps(ctx, j.binaryProperties.Wrapper) |
Colin Cross | 6b4a32d | 2017-12-05 13:42:45 -0800 | [diff] [blame] | 1263 | } |
Colin Cross | 46c9b8b | 2017-06-22 16:51:17 -0700 | [diff] [blame] | 1264 | } |
| 1265 | |
Colin Cross | f506d87 | 2017-07-19 15:53:04 -0700 | [diff] [blame] | 1266 | func BinaryFactory() android.Module { |
| 1267 | module := &Binary{} |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1268 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 1269 | module.AddProperties( |
Colin Cross | 540eff8 | 2017-06-22 17:01:52 -0700 | [diff] [blame] | 1270 | &module.Module.properties, |
| 1271 | &module.Module.deviceProperties, |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 1272 | &module.Module.protoProperties, |
Colin Cross | 540eff8 | 2017-06-22 17:01:52 -0700 | [diff] [blame] | 1273 | &module.binaryProperties) |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 1274 | |
Colin Cross | 6b4a32d | 2017-12-05 13:42:45 -0800 | [diff] [blame] | 1275 | android.InitAndroidArchModule(module, android.HostAndDeviceSupported, android.MultilibCommonFirst) |
| 1276 | android.InitDefaultableModule(module) |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 1277 | return module |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1278 | } |
| 1279 | |
Colin Cross | f506d87 | 2017-07-19 15:53:04 -0700 | [diff] [blame] | 1280 | func BinaryHostFactory() android.Module { |
| 1281 | module := &Binary{} |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1282 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 1283 | module.AddProperties( |
Colin Cross | 540eff8 | 2017-06-22 17:01:52 -0700 | [diff] [blame] | 1284 | &module.Module.properties, |
Colin Cross | 6af17aa | 2017-09-20 12:59:05 -0700 | [diff] [blame] | 1285 | &module.Module.protoProperties, |
Colin Cross | 540eff8 | 2017-06-22 17:01:52 -0700 | [diff] [blame] | 1286 | &module.binaryProperties) |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 1287 | |
Colin Cross | 6b4a32d | 2017-12-05 13:42:45 -0800 | [diff] [blame] | 1288 | android.InitAndroidArchModule(module, android.HostSupported, android.MultilibCommonFirst) |
| 1289 | android.InitDefaultableModule(module) |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 1290 | return module |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1291 | } |
| 1292 | |
| 1293 | // |
| 1294 | // Java prebuilts |
| 1295 | // |
| 1296 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 1297 | type ImportProperties struct { |
| 1298 | Jars []string |
Colin Cross | 461bd1a | 2017-10-20 13:59:18 -0700 | [diff] [blame] | 1299 | |
Nan Zhang | ea568a4 | 2017-11-08 21:20:04 -0800 | [diff] [blame] | 1300 | Sdk_version *string |
Colin Cross | 535e2cf | 2017-10-20 17:57:49 -0700 | [diff] [blame] | 1301 | |
| 1302 | Installable *bool |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 1303 | } |
| 1304 | |
| 1305 | type Import struct { |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 1306 | android.ModuleBase |
Colin Cross | ec7a042 | 2017-07-07 14:47:12 -0700 | [diff] [blame] | 1307 | prebuilt android.Prebuilt |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1308 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 1309 | properties ImportProperties |
| 1310 | |
Colin Cross | 0a6e007 | 2017-08-30 14:24:55 -0700 | [diff] [blame] | 1311 | classpathFiles android.Paths |
| 1312 | combinedClasspathFile android.Path |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1313 | } |
| 1314 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 1315 | func (j *Import) Prebuilt() *android.Prebuilt { |
Colin Cross | ec7a042 | 2017-07-07 14:47:12 -0700 | [diff] [blame] | 1316 | return &j.prebuilt |
| 1317 | } |
| 1318 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 1319 | func (j *Import) PrebuiltSrcs() []string { |
| 1320 | return j.properties.Jars |
| 1321 | } |
| 1322 | |
| 1323 | func (j *Import) Name() string { |
Colin Cross | 5ea9bcc | 2017-07-27 15:41:32 -0700 | [diff] [blame] | 1324 | return j.prebuilt.Name(j.ModuleBase.Name()) |
| 1325 | } |
| 1326 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 1327 | func (j *Import) DepsMutator(ctx android.BottomUpMutatorContext) { |
Colin Cross | 1e676be | 2016-10-12 14:38:15 -0700 | [diff] [blame] | 1328 | } |
| 1329 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 1330 | func (j *Import) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
| 1331 | j.classpathFiles = android.PathsForModuleSrc(ctx, j.properties.Jars) |
Colin Cross | e1d62a8 | 2015-04-03 16:53:05 -0700 | [diff] [blame] | 1332 | |
Colin Cross | e9a275b | 2017-10-16 17:09:48 -0700 | [diff] [blame] | 1333 | outputFile := android.PathForModuleOut(ctx, "classes.jar") |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 1334 | TransformJarsToJar(ctx, outputFile, "for prebuilts", j.classpathFiles, android.OptionalPath{}, false, nil) |
Colin Cross | e9a275b | 2017-10-16 17:09:48 -0700 | [diff] [blame] | 1335 | j.combinedClasspathFile = outputFile |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1336 | } |
| 1337 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 1338 | var _ Dependency = (*Import)(nil) |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1339 | |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 1340 | func (j *Import) HeaderJars() android.Paths { |
| 1341 | return j.classpathFiles |
| 1342 | } |
| 1343 | |
| 1344 | func (j *Import) ImplementationJars() android.Paths { |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 1345 | return j.classpathFiles |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1346 | } |
| 1347 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 1348 | func (j *Import) AidlIncludeDirs() android.Paths { |
Colin Cross | c0b06f1 | 2015-04-08 13:03:43 -0700 | [diff] [blame] | 1349 | return nil |
| 1350 | } |
| 1351 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 1352 | var _ android.PrebuiltInterface = (*Import)(nil) |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1353 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 1354 | func ImportFactory() android.Module { |
| 1355 | module := &Import{} |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 1356 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 1357 | module.AddProperties(&module.properties) |
| 1358 | |
| 1359 | android.InitPrebuiltModule(module, &module.properties.Jars) |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 1360 | android.InitAndroidArchModule(module, android.HostAndDeviceSupported, android.MultilibCommon) |
| 1361 | return module |
Colin Cross | 2fe6687 | 2015-03-30 17:20:39 -0700 | [diff] [blame] | 1362 | } |
| 1363 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 1364 | func ImportFactoryHost() android.Module { |
| 1365 | module := &Import{} |
| 1366 | |
| 1367 | module.AddProperties(&module.properties) |
| 1368 | |
| 1369 | android.InitPrebuiltModule(module, &module.properties.Jars) |
| 1370 | android.InitAndroidArchModule(module, android.HostSupported, android.MultilibCommon) |
| 1371 | return module |
| 1372 | } |
| 1373 | |
Colin Cross | 89536d4 | 2017-07-07 14:35:50 -0700 | [diff] [blame] | 1374 | // |
| 1375 | // Defaults |
| 1376 | // |
| 1377 | type Defaults struct { |
| 1378 | android.ModuleBase |
| 1379 | android.DefaultsModuleBase |
| 1380 | } |
| 1381 | |
| 1382 | func (*Defaults) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
| 1383 | } |
| 1384 | |
| 1385 | func (d *Defaults) DepsMutator(ctx android.BottomUpMutatorContext) { |
| 1386 | } |
| 1387 | |
| 1388 | func defaultsFactory() android.Module { |
| 1389 | return DefaultsFactory() |
| 1390 | } |
| 1391 | |
| 1392 | func DefaultsFactory(props ...interface{}) android.Module { |
| 1393 | module := &Defaults{} |
| 1394 | |
| 1395 | module.AddProperties(props...) |
| 1396 | module.AddProperties( |
| 1397 | &CompilerProperties{}, |
| 1398 | &CompilerDeviceProperties{}, |
Dan Willemsen | 6424d17 | 2018-03-08 13:27:59 -0800 | [diff] [blame] | 1399 | &android.ProtoProperties{}, |
Colin Cross | 89536d4 | 2017-07-07 14:35:50 -0700 | [diff] [blame] | 1400 | ) |
| 1401 | |
| 1402 | android.InitDefaultsModule(module) |
| 1403 | |
| 1404 | return module |
| 1405 | } |
Nan Zhang | ea568a4 | 2017-11-08 21:20:04 -0800 | [diff] [blame] | 1406 | |
| 1407 | var Bool = proptools.Bool |
| 1408 | var String = proptools.String |
Colin Cross | 0d0ba59 | 2018-02-20 13:33:42 -0800 | [diff] [blame] | 1409 | var inList = android.InList |