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