blob: b9e34f075f66bf09cf66368004577faebbb9a5fe [file] [log] [blame]
Colin Cross2fe66872015-03-30 17:20:39 -07001// 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
15package java
16
17// This file contains the module types for compiling Java for Android, and converts the properties
Colin Cross46c9b8b2017-06-22 16:51:17 -070018// into the flags and filenames necessary to pass to the Module. The final creation of the rules
Colin Cross2fe66872015-03-30 17:20:39 -070019// is handled in builder.go
20
21import (
Colin Crossf19b9bb2018-03-26 14:42:44 -070022 "fmt"
Colin Crossfc3674a2017-09-18 17:41:52 -070023 "path/filepath"
Colin Cross74d73e22017-08-02 11:05:49 -070024 "strconv"
Colin Cross2fe66872015-03-30 17:20:39 -070025 "strings"
26
27 "github.com/google/blueprint"
Colin Cross3b706fd2019-09-05 16:44:18 -070028 "github.com/google/blueprint/pathtools"
Colin Cross76b5f0c2017-08-29 16:02:06 -070029 "github.com/google/blueprint/proptools"
Colin Cross2fe66872015-03-30 17:20:39 -070030
Colin Cross635c3b02016-05-18 15:37:25 -070031 "android/soong/android"
Colin Cross3e3e72d2017-06-22 17:20:19 -070032 "android/soong/java/config"
Colin Cross303e21f2018-08-07 16:49:25 -070033 "android/soong/tradefed"
Colin Cross2fe66872015-03-30 17:20:39 -070034)
35
Colin Cross463a90e2015-06-17 14:20:06 -070036func init() {
Paul Duffinf9b1da02019-12-18 19:51:55 +000037 RegisterJavaBuildComponents(android.InitRegistrationContext)
Paul Duffin255f18e2019-12-13 11:22:16 +000038
39 // Register sdk member types.
Paul Duffin7b81f5e2020-01-13 21:03:22 +000040 android.RegisterSdkMemberType(javaHeaderLibsSdkMemberType)
Paul Duffin255f18e2019-12-13 11:22:16 +000041
Paul Duffinf5c0a9c2020-02-28 14:39:53 +000042 android.RegisterSdkMemberType(&librarySdkMemberType{
43 android.SdkMemberTypeBase{
44 PropertyName: "java_libs",
45 },
46 func(j *Library) android.Path {
47 implementationJars := j.ImplementationJars()
48 if len(implementationJars) != 1 {
49 panic(fmt.Errorf("there must be only one implementation jar from %q", j.Name()))
50 }
51
52 return implementationJars[0]
Paul Duffin255f18e2019-12-13 11:22:16 +000053 },
54 })
Paul Duffin1b82e6a2019-12-03 18:06:47 +000055
56 android.RegisterSdkMemberType(&testSdkMemberType{
57 SdkMemberTypeBase: android.SdkMemberTypeBase{
58 PropertyName: "java_tests",
59 },
60 })
Colin Cross463a90e2015-06-17 14:20:06 -070061}
62
Paul Duffinf9b1da02019-12-18 19:51:55 +000063func RegisterJavaBuildComponents(ctx android.RegistrationContext) {
64 ctx.RegisterModuleType("java_defaults", DefaultsFactory)
65
66 ctx.RegisterModuleType("java_library", LibraryFactory)
67 ctx.RegisterModuleType("java_library_static", LibraryStaticFactory)
68 ctx.RegisterModuleType("java_library_host", LibraryHostFactory)
69 ctx.RegisterModuleType("java_binary", BinaryFactory)
70 ctx.RegisterModuleType("java_binary_host", BinaryHostFactory)
71 ctx.RegisterModuleType("java_test", TestFactory)
72 ctx.RegisterModuleType("java_test_helper_library", TestHelperLibraryFactory)
73 ctx.RegisterModuleType("java_test_host", TestHostFactory)
Paul Duffin1b82e6a2019-12-03 18:06:47 +000074 ctx.RegisterModuleType("java_test_import", JavaTestImportFactory)
Paul Duffinf9b1da02019-12-18 19:51:55 +000075 ctx.RegisterModuleType("java_import", ImportFactory)
76 ctx.RegisterModuleType("java_import_host", ImportFactoryHost)
77 ctx.RegisterModuleType("java_device_for_host", DeviceForHostFactory)
78 ctx.RegisterModuleType("java_host_for_device", HostForDeviceFactory)
79 ctx.RegisterModuleType("dex_import", DexImportFactory)
80
Martin Stjernholm6d415272020-01-31 17:10:36 +000081 ctx.FinalDepsMutators(func(ctx android.RegisterMutatorsContext) {
82 ctx.BottomUp("dexpreopt_tool_deps", dexpreoptToolDepsMutator).Parallel()
83 })
Martin Stjernholmd90676f2020-01-11 00:37:30 +000084
Paul Duffinf9b1da02019-12-18 19:51:55 +000085 ctx.RegisterSingletonType("logtags", LogtagsSingleton)
86 ctx.RegisterSingletonType("kythe_java_extract", kytheExtractJavaFactory)
87}
88
Jeongik Cha2cc570d2019-10-29 15:44:45 +090089func (j *Module) checkSdkVersion(ctx android.ModuleContext) {
90 if j.SocSpecific() || j.DeviceSpecific() ||
91 (j.ProductSpecific() && ctx.Config().EnforceProductPartitionInterface()) {
92 if sc, ok := ctx.Module().(sdkContext); ok {
Jiyong Park6a927c42020-01-21 02:03:43 +090093 if !sc.sdkVersion().specified() {
Jeongik Cha2cc570d2019-10-29 15:44:45 +090094 ctx.PropertyErrorf("sdk_version",
95 "sdk_version must have a value when the module is located at vendor or product(only if PRODUCT_ENFORCE_PRODUCT_PARTITION_INTERFACE is set).")
96 }
97 }
98 }
99}
100
Jeongik Cha538c0d02019-07-11 15:54:27 +0900101func (j *Module) checkPlatformAPI(ctx android.ModuleContext) {
102 if sc, ok := ctx.Module().(sdkContext); ok {
103 usePlatformAPI := proptools.Bool(j.deviceProperties.Platform_apis)
Jiyong Park6a927c42020-01-21 02:03:43 +0900104 sdkVersionSpecified := sc.sdkVersion().specified()
105 if usePlatformAPI && sdkVersionSpecified {
106 ctx.PropertyErrorf("platform_apis", "platform_apis must be false when sdk_version is not empty.")
107 } else if !usePlatformAPI && !sdkVersionSpecified {
108 ctx.PropertyErrorf("platform_apis", "platform_apis must be true when sdk_version is empty.")
Jeongik Cha538c0d02019-07-11 15:54:27 +0900109 }
110
111 }
112}
113
Colin Cross2fe66872015-03-30 17:20:39 -0700114// TODO:
115// Autogenerated files:
Colin Cross2fe66872015-03-30 17:20:39 -0700116// Renderscript
117// Post-jar passes:
118// Proguard
Colin Cross2fe66872015-03-30 17:20:39 -0700119// Rmtypedefs
Colin Cross2fe66872015-03-30 17:20:39 -0700120// DroidDoc
121// Findbugs
122
Colin Cross89536d42017-07-07 14:35:50 -0700123type CompilerProperties struct {
Colin Cross7d5136f2015-05-11 13:39:40 -0700124 // list of source files used to compile the Java module. May be .java, .logtags, .proto,
125 // or .aidl files.
Colin Cross27b922f2019-03-04 22:35:41 -0800126 Srcs []string `android:"path,arch_variant"`
Dan Willemsen2ef08f42015-06-30 18:15:24 -0700127
128 // list of source files that should not be used to build the Java module.
129 // This is most useful in the arch/multilib variants to remove non-common files
Colin Cross27b922f2019-03-04 22:35:41 -0800130 Exclude_srcs []string `android:"path,arch_variant"`
Colin Cross7d5136f2015-05-11 13:39:40 -0700131
132 // list of directories containing Java resources
Colin Cross86a63ff2017-09-27 17:33:10 -0700133 Java_resource_dirs []string `android:"arch_variant"`
Colin Cross7d5136f2015-05-11 13:39:40 -0700134
Colin Cross86a63ff2017-09-27 17:33:10 -0700135 // list of directories that should be excluded from java_resource_dirs
136 Exclude_java_resource_dirs []string `android:"arch_variant"`
Dan Willemsen2ef08f42015-06-30 18:15:24 -0700137
Colin Cross0f37af02017-09-27 17:42:05 -0700138 // list of files to use as Java resources
Colin Cross27b922f2019-03-04 22:35:41 -0800139 Java_resources []string `android:"path,arch_variant"`
Colin Cross0f37af02017-09-27 17:42:05 -0700140
Colin Crosscedd4762018-09-13 11:26:19 -0700141 // list of files that should be excluded from java_resources and java_resource_dirs
Colin Cross27b922f2019-03-04 22:35:41 -0800142 Exclude_java_resources []string `android:"path,arch_variant"`
Colin Cross0f37af02017-09-27 17:42:05 -0700143
Colin Cross7d5136f2015-05-11 13:39:40 -0700144 // list of module-specific flags that will be used for javac compiles
145 Javacflags []string `android:"arch_variant"`
146
Zoran Jovanovic8736ce22018-08-21 17:10:29 +0200147 // list of module-specific flags that will be used for kotlinc compiles
148 Kotlincflags []string `android:"arch_variant"`
149
Colin Cross7d5136f2015-05-11 13:39:40 -0700150 // list of of java libraries that will be in the classpath
Colin Crosse8dc34a2017-07-19 11:22:16 -0700151 Libs []string `android:"arch_variant"`
Colin Cross7d5136f2015-05-11 13:39:40 -0700152
153 // list of java libraries that will be compiled into the resulting jar
Colin Crosse8dc34a2017-07-19 11:22:16 -0700154 Static_libs []string `android:"arch_variant"`
Colin Cross7d5136f2015-05-11 13:39:40 -0700155
156 // manifest file to be included in resulting jar
Colin Cross27b922f2019-03-04 22:35:41 -0800157 Manifest *string `android:"path"`
Colin Cross7d5136f2015-05-11 13:39:40 -0700158
Colin Cross540eff82017-06-22 17:01:52 -0700159 // if not blank, run jarjar using the specified rules file
Colin Cross27b922f2019-03-04 22:35:41 -0800160 Jarjar_rules *string `android:"path,arch_variant"`
Colin Cross64162712017-08-08 13:17:59 -0700161
162 // If not blank, set the java version passed to javac as -source and -target
163 Java_version *string
Colin Cross2c429dc2017-08-31 16:45:16 -0700164
Colin Cross9ae1b922018-06-26 17:59:05 -0700165 // If set to true, allow this module to be dexed and installed on devices. Has no
166 // effect on host modules, which are always considered installable.
Colin Cross2c429dc2017-08-31 16:45:16 -0700167 Installable *bool
Colin Cross32f676a2017-09-06 13:41:06 -0700168
Colin Cross0f37af02017-09-27 17:42:05 -0700169 // If set to true, include sources used to compile the module in to the final jar
170 Include_srcs *bool
171
Vladimir Marko0975ee02019-04-02 10:29:55 +0100172 // If not empty, classes are restricted to the specified packages and their sub-packages.
173 // This restriction is checked after applying jarjar rules and including static libs.
174 Permitted_packages []string
175
Colin Crossbe9cdb82019-01-21 21:37:16 -0800176 // List of modules to use as annotation processors
177 Plugins []string
Colin Cross1369cdb2017-09-29 17:58:17 -0700178
Artur Satayev9cf46692019-11-26 18:08:34 +0000179 // List of modules to export to libraries that directly depend on this library as annotation processors
180 Exported_plugins []string
181
Nan Zhang61eaedb2017-11-02 13:28:15 -0700182 // The number of Java source entries each Javac instance can process
183 Javac_shard_size *int64
184
Nan Zhang5f8cb422018-02-06 10:34:32 -0800185 // Add host jdk tools.jar to bootclasspath
186 Use_tools_jar *bool
187
Colin Cross1369cdb2017-09-29 17:58:17 -0700188 Openjdk9 struct {
Colin Cross6cef4812019-10-17 14:23:50 -0700189 // List of source files that should only be used when passing -source 1.9 or higher
Colin Cross27b922f2019-03-04 22:35:41 -0800190 Srcs []string `android:"path"`
Colin Cross1369cdb2017-09-29 17:58:17 -0700191
Colin Cross6cef4812019-10-17 14:23:50 -0700192 // List of javac flags that should only be used when passing -source 1.9 or higher
Colin Cross1369cdb2017-09-29 17:58:17 -0700193 Javacflags []string
194 }
Colin Crosscb933592017-11-22 13:49:43 -0800195
Colin Cross81440082018-08-15 20:21:55 -0700196 // When compiling language level 9+ .java code in packages that are part of
197 // a system module, patch_module names the module that your sources and
198 // dependencies should be patched into. The Android runtime currently
199 // doesn't implement the JEP 261 module system so this option is only
200 // supported at compile time. It should only be needed to compile tests in
201 // packages that exist in libcore and which are inconvenient to move
202 // elsewhere.
Tobias Thiererdda713d2018-09-19 16:16:19 +0100203 Patch_module *string `android:"arch_variant"`
Colin Cross81440082018-08-15 20:21:55 -0700204
Colin Crosscb933592017-11-22 13:49:43 -0800205 Jacoco struct {
206 // List of classes to include for instrumentation with jacoco to collect coverage
207 // information at runtime when building with coverage enabled. If unset defaults to all
208 // classes.
209 // Supports '*' as the last character of an entry in the list as a wildcard match.
210 // If preceded by '.' it matches all classes in the package and subpackages, otherwise
211 // it matches classes in the package that have the class name as a prefix.
212 Include_filter []string
213
214 // List of classes to exclude from instrumentation with jacoco to collect coverage
215 // information at runtime when building with coverage enabled. Overrides classes selected
216 // by the include_filter property.
217 // Supports '*' as the last character of an entry in the list as a wildcard match.
218 // If preceded by '.' it matches all classes in the package and subpackages, otherwise
219 // it matches classes in the package that have the class name as a prefix.
220 Exclude_filter []string
221 }
222
Andreas Gampef3e5b552018-01-22 21:27:21 -0800223 Errorprone struct {
224 // List of javac flags that should only be used when running errorprone.
225 Javacflags []string
226 }
227
Colin Cross0f2ee152017-12-14 15:22:43 -0800228 Proto struct {
229 // List of extra options that will be passed to the proto generator.
230 Output_params []string
231 }
232
Colin Crosscb933592017-11-22 13:49:43 -0800233 Instrument bool `blueprint:"mutated"`
Alex Light7f004a72019-02-21 13:27:37 -0800234
235 // List of files to include in the META-INF/services folder of the resulting jar.
Colin Cross27b922f2019-03-04 22:35:41 -0800236 Services []string `android:"path,arch_variant"`
Colin Cross540eff82017-06-22 17:01:52 -0700237}
238
Colin Cross89536d42017-07-07 14:35:50 -0700239type CompilerDeviceProperties struct {
Colin Cross540eff82017-06-22 17:01:52 -0700240 // list of module-specific flags that will be used for dex compiles
241 Dxflags []string `android:"arch_variant"`
242
Jeongik Cha538c0d02019-07-11 15:54:27 +0900243 // if not blank, set to the version of the sdk to compile against.
244 // Defaults to compiling against the current platform.
Nan Zhangea568a42017-11-08 21:20:04 -0800245 Sdk_version *string
Colin Cross7d5136f2015-05-11 13:39:40 -0700246
Colin Cross83bb3162018-06-25 15:48:06 -0700247 // if not blank, set the minimum version of the sdk that the compiled artifacts will run against.
248 // Defaults to sdk_version if not set.
249 Min_sdk_version *string
250
Dan Willemsen419290a2018-10-31 15:28:47 -0700251 // if not blank, set the targetSdkVersion in the AndroidManifest.xml.
252 // Defaults to sdk_version if not set.
253 Target_sdk_version *string
254
Jeongik Cha356dac42019-08-19 14:09:52 +0900255 // Whether to compile against the platform APIs instead of an SDK.
256 // If true, then sdk_version must be empty. The value of this field
257 // is ignored when module's type isn't android_app.
Colin Cross6af2e492018-05-22 11:12:33 -0700258 Platform_apis *bool
259
Colin Crossebe1a512017-11-14 13:12:14 -0800260 Aidl struct {
261 // Top level directories to pass to aidl tool
262 Include_dirs []string
Colin Cross7d5136f2015-05-11 13:39:40 -0700263
Colin Crossebe1a512017-11-14 13:12:14 -0800264 // Directories rooted at the Android.bp file to pass to aidl tool
265 Local_include_dirs []string
266
267 // directories that should be added as include directories for any aidl sources of modules
268 // that depend on this module, as well as to aidl for this module.
269 Export_include_dirs []string
Martijn Coeneneab15642018-03-09 09:29:59 +0100270
271 // whether to generate traces (for systrace) for this interface
272 Generate_traces *bool
Olivier Gaillard0a4cfbc2018-07-16 23:37:03 +0100273
274 // whether to generate Binder#GetTransaction name method.
275 Generate_get_transaction_name *bool
Colin Crossebe1a512017-11-14 13:12:14 -0800276 }
Colin Cross92430102017-10-09 14:59:32 -0700277
278 // If true, export a copy of the module as a -hostdex module for host testing.
279 Hostdex *bool
Colin Cross1369cdb2017-09-29 17:58:17 -0700280
Colin Cross7f87f4f2019-04-24 13:41:45 -0700281 Target struct {
282 Hostdex struct {
283 // Additional required dependencies to add to -hostdex modules.
284 Required []string
285 }
286 }
287
David Brazdil17ef5632018-06-27 10:27:45 +0100288 // If set to true, compile dex regardless of installable. Defaults to false.
289 Compile_dex *bool
290
Colin Cross66dbc0b2017-12-28 12:23:20 -0800291 Optimize struct {
Colin Crossae5caf52018-05-22 11:11:52 -0700292 // If false, disable all optimization. Defaults to true for android_app and android_test
293 // modules, false for java_library and java_test modules.
Colin Cross66dbc0b2017-12-28 12:23:20 -0800294 Enabled *bool
Sasha Smundak2057f822019-04-16 17:16:58 -0700295 // True if the module containing this has it set by default.
296 EnabledByDefault bool `blueprint:"mutated"`
Colin Cross66dbc0b2017-12-28 12:23:20 -0800297
298 // If true, optimize for size by removing unused code. Defaults to true for apps,
299 // false for libraries and tests.
300 Shrink *bool
301
302 // If true, optimize bytecode. Defaults to false.
303 Optimize *bool
304
305 // If true, obfuscate bytecode. Defaults to false.
306 Obfuscate *bool
307
308 // If true, do not use the flag files generated by aapt that automatically keep
309 // classes referenced by the app manifest. Defaults to false.
310 No_aapt_flags *bool
311
312 // Flags to pass to proguard.
313 Proguard_flags []string
314
315 // Specifies the locations of files containing proguard flags.
Colin Cross27b922f2019-03-04 22:35:41 -0800316 Proguard_flags_files []string `android:"path"`
Colin Cross66dbc0b2017-12-28 12:23:20 -0800317 }
318
Paul Duffine25c6442019-10-11 13:50:28 +0100319 // When targeting 1.9 and above, override the modules to use with --system,
320 // otherwise provides defaults libraries to add to the bootclasspath.
Colin Cross1369cdb2017-09-29 17:58:17 -0700321 System_modules *string
Colin Cross5a0dcd52018-10-05 14:20:06 -0700322
Jiyong Park4c4c0242019-10-21 14:53:15 +0900323 // set the name of the output
324 Stem *string
325
Colin Cross5a0dcd52018-10-05 14:20:06 -0700326 UncompressDex bool `blueprint:"mutated"`
Colin Cross43f08db2018-11-12 10:13:39 -0800327 IsSDKLibrary bool `blueprint:"mutated"`
Songchun Fan17d69e32020-03-24 20:32:24 -0700328
329 // If true, generate the signature file of APK Signing Scheme V4, along side the signed APK file.
330 // Defaults to false.
331 V4_signature *bool
Colin Cross7d5136f2015-05-11 13:39:40 -0700332}
333
Sasha Smundak2057f822019-04-16 17:16:58 -0700334func (me *CompilerDeviceProperties) EffectiveOptimizeEnabled() bool {
335 return BoolDefault(me.Optimize.Enabled, me.Optimize.EnabledByDefault)
336}
337
Colin Cross46c9b8b2017-06-22 16:51:17 -0700338// Module contains the properties and members used by all java module types
339type Module struct {
Colin Cross635c3b02016-05-18 15:37:25 -0700340 android.ModuleBase
Colin Cross89536d42017-07-07 14:35:50 -0700341 android.DefaultableModuleBase
Jiyong Park7f7766d2019-07-25 22:02:35 +0900342 android.ApexModuleBase
Jiyong Parkd1063c12019-07-17 20:08:41 +0900343 android.SdkBase
Colin Cross2fe66872015-03-30 17:20:39 -0700344
Colin Cross89536d42017-07-07 14:35:50 -0700345 properties CompilerProperties
Colin Cross6af17aa2017-09-20 12:59:05 -0700346 protoProperties android.ProtoProperties
Colin Cross89536d42017-07-07 14:35:50 -0700347 deviceProperties CompilerDeviceProperties
Colin Cross2fe66872015-03-30 17:20:39 -0700348
Colin Cross331a1212018-08-15 20:40:52 -0700349 // jar file containing header classes including static library dependencies, suitable for
350 // inserting into the bootclasspath/classpath of another compile
Nan Zhanged19fc32017-10-19 13:06:22 -0700351 headerJarFile android.Path
352
Colin Cross331a1212018-08-15 20:40:52 -0700353 // jar file containing implementation classes including static library dependencies but no
354 // resources
Nan Zhanged19fc32017-10-19 13:06:22 -0700355 implementationJarFile android.Path
Colin Cross2fe66872015-03-30 17:20:39 -0700356
Colin Cross331a1212018-08-15 20:40:52 -0700357 // jar file containing only resources including from static library dependencies
358 resourceJar android.Path
359
Colin Cross0c4ce212019-05-03 15:28:19 -0700360 // args and dependencies to package source files into a srcjar
361 srcJarArgs []string
362 srcJarDeps android.Paths
363
Colin Cross331a1212018-08-15 20:40:52 -0700364 // jar file containing implementation classes and resources including static library
365 // dependencies
366 implementationAndResourcesJar android.Path
367
368 // output file containing classes.dex and resources
Colin Cross6ade34f2017-09-15 13:00:47 -0700369 dexJarFile android.Path
370
Colin Cross43f08db2018-11-12 10:13:39 -0800371 // output file that contains classes.dex if it should be in the output file
372 maybeStrippedDexJarFile android.Path
373
Colin Crosscb933592017-11-22 13:49:43 -0800374 // output file containing uninstrumented classes that will be instrumented by jacoco
375 jacocoReportClassesFile android.Path
376
Colin Cross66dbc0b2017-12-28 12:23:20 -0800377 // output file containing mapping of obfuscated names
378 proguardDictionary android.Path
379
Colin Cross331a1212018-08-15 20:40:52 -0700380 // output file of the module, which may be a classes jar or a dex jar
Colin Crosse560c4a2019-03-19 16:03:11 -0700381 outputFile android.Path
382 extraOutputFiles android.Paths
Colin Crossb7a63242015-04-16 14:09:14 -0700383
Colin Cross635c3b02016-05-18 15:37:25 -0700384 exportAidlIncludeDirs android.Paths
Colin Crossc0b06f12015-04-08 13:03:43 -0700385
Colin Cross635c3b02016-05-18 15:37:25 -0700386 logtagsSrcs android.Paths
Colin Crossf05fe972015-04-10 17:45:20 -0700387
Colin Cross2fe66872015-03-30 17:20:39 -0700388 // installed file for binary dependency
Colin Cross635c3b02016-05-18 15:37:25 -0700389 installFile android.Path
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800390
391 // list of .java files and srcjars that was passed to javac
392 compiledJavaSrcs android.Paths
393 compiledSrcJars android.Paths
Colin Cross66dbc0b2017-12-28 12:23:20 -0800394
395 // list of extra progurad flag files
396 extraProguardFlagFiles android.Paths
Jiyong Park1be96912018-05-28 18:02:19 +0900397
Colin Cross094054a2018-10-17 15:10:48 -0700398 // manifest file to use instead of properties.Manifest
399 overrideManifest android.OptionalPath
400
Artur Satayev9cf46692019-11-26 18:08:34 +0000401 // list of SDK lib names that this java module is exporting
Jiyong Park1be96912018-05-28 18:02:19 +0900402 exportedSdkLibs []string
Brandon Lee5d45c6f2018-08-15 15:35:38 -0700403
Artur Satayev9cf46692019-11-26 18:08:34 +0000404 // list of plugins that this java module is exporting
405 exportedPluginJars android.Paths
406
407 // list of plugins that this java module is exporting
408 exportedPluginClasses []string
409
410 // list of source files, collected from srcFiles with unique java and all kt files,
patricktu242faad2019-09-24 15:41:30 +0800411 // will be used by android.IDEInfo struct
Brandon Lee5d45c6f2018-08-15 15:35:38 -0700412 expandIDEInfoCompiledSrcs []string
Colin Cross43f08db2018-11-12 10:13:39 -0800413
Steven Morelandc4efd9c2019-01-18 11:51:25 -0800414 // expanded Jarjar_rules
415 expandJarjarRules android.Path
416
Vladimir Marko0975ee02019-04-02 10:29:55 +0100417 // list of additional targets for checkbuild
418 additionalCheckedModules android.Paths
419
Colin Cross988708c2019-05-06 14:04:11 -0700420 // Extra files generated by the module type to be added as java resources.
421 extraResources android.Paths
422
Colin Crossf24a22a2019-01-31 14:12:44 -0800423 hiddenAPI
Colin Cross43f08db2018-11-12 10:13:39 -0800424 dexpreopter
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800425
426 // list of the xref extraction files
427 kytheFiles android.Paths
Anton Hansson78156ef2020-03-27 19:39:48 +0000428
429 distFile android.Path
Colin Cross2fe66872015-03-30 17:20:39 -0700430}
431
Colin Cross41955e82019-05-29 14:40:35 -0700432func (j *Module) OutputFiles(tag string) (android.Paths, error) {
433 switch tag {
434 case "":
435 return append(android.Paths{j.outputFile}, j.extraOutputFiles...), nil
Colin Cross375ca3c2019-05-29 14:40:58 -0700436 case ".jar":
437 return android.Paths{j.implementationAndResourcesJar}, nil
Colin Cross2d975b12019-07-29 16:47:42 -0700438 case ".proguard_map":
439 return android.Paths{j.proguardDictionary}, nil
Colin Cross41955e82019-05-29 14:40:35 -0700440 default:
441 return nil, fmt.Errorf("unsupported module reference tag %q", tag)
442 }
Colin Cross54250902017-12-05 09:28:08 -0800443}
444
Colin Cross41955e82019-05-29 14:40:35 -0700445var _ android.OutputFileProducer = (*Module)(nil)
Colin Cross54250902017-12-05 09:28:08 -0800446
Colin Crossf506d872017-07-19 15:53:04 -0700447type Dependency interface {
Nan Zhanged19fc32017-10-19 13:06:22 -0700448 HeaderJars() android.Paths
449 ImplementationJars() android.Paths
Colin Cross331a1212018-08-15 20:40:52 -0700450 ResourceJars() android.Paths
451 ImplementationAndResourcesJars() android.Paths
Colin Crossf24a22a2019-01-31 14:12:44 -0800452 DexJar() android.Path
Colin Cross635c3b02016-05-18 15:37:25 -0700453 AidlIncludeDirs() android.Paths
Jiyong Park1be96912018-05-28 18:02:19 +0900454 ExportedSdkLibs() []string
Artur Satayev9cf46692019-11-26 18:08:34 +0000455 ExportedPlugins() (android.Paths, []string)
Colin Cross0c4ce212019-05-03 15:28:19 -0700456 SrcJarArgs() ([]string, android.Paths)
Colin Crosse323f3c2019-09-17 15:34:09 -0700457 BaseModuleName() string
Jiyong Park618922e2020-01-08 13:35:43 +0900458 JacocoReportClassesFile() android.Path
Colin Cross2fe66872015-03-30 17:20:39 -0700459}
460
Jiyong Parkc678ad32018-04-10 13:07:10 +0900461type SdkLibraryDependency interface {
Jiyong Park6a927c42020-01-21 02:03:43 +0900462 SdkHeaderJars(ctx android.BaseModuleContext, sdkVersion sdkSpec) android.Paths
463 SdkImplementationJars(ctx android.BaseModuleContext, sdkVersion sdkSpec) android.Paths
Jiyong Parkc678ad32018-04-10 13:07:10 +0900464}
465
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800466type xref interface {
467 XrefJavaFiles() android.Paths
468}
469
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800470func (j *Module) XrefJavaFiles() android.Paths {
471 return j.kytheFiles
472}
473
Colin Cross89536d42017-07-07 14:35:50 -0700474func InitJavaModule(module android.DefaultableModule, hod android.HostOrDeviceSupported) {
475 android.InitAndroidArchModule(module, hod, android.MultilibCommon)
476 android.InitDefaultableModule(module)
477}
478
Colin Crossbe1da472017-07-07 15:59:46 -0700479type dependencyTag struct {
480 blueprint.BaseDependencyTag
481 name string
Colin Cross2fe66872015-03-30 17:20:39 -0700482}
483
Colin Crossa4f08812018-10-02 22:03:40 -0700484type jniDependencyTag struct {
485 blueprint.BaseDependencyTag
Colin Crossa4f08812018-10-02 22:03:40 -0700486}
487
Jiyong Park8be103b2019-11-08 15:53:48 +0900488func IsJniDepTag(depTag blueprint.DependencyTag) bool {
489 _, ok := depTag.(*jniDependencyTag)
490 return ok
491}
492
Colin Crossbe1da472017-07-07 15:59:46 -0700493var (
Colin Cross4b964c02018-10-15 16:18:06 -0700494 staticLibTag = dependencyTag{name: "staticlib"}
495 libTag = dependencyTag{name: "javalib"}
Colin Cross6cef4812019-10-17 14:23:50 -0700496 java9LibTag = dependencyTag{name: "java9lib"}
Colin Crossbe9cdb82019-01-21 21:37:16 -0800497 pluginTag = dependencyTag{name: "plugin"}
Artur Satayev9cf46692019-11-26 18:08:34 +0000498 exportedPluginTag = dependencyTag{name: "exported-plugin"}
Colin Cross4b964c02018-10-15 16:18:06 -0700499 bootClasspathTag = dependencyTag{name: "bootclasspath"}
500 systemModulesTag = dependencyTag{name: "system modules"}
501 frameworkResTag = dependencyTag{name: "framework-res"}
502 frameworkApkTag = dependencyTag{name: "framework-apk"}
503 kotlinStdlibTag = dependencyTag{name: "kotlin-stdlib"}
Colin Crossafbb1732019-01-17 15:42:52 -0800504 kotlinAnnotationsTag = dependencyTag{name: "kotlin-annotations"}
Colin Cross4b964c02018-10-15 16:18:06 -0700505 proguardRaiseTag = dependencyTag{name: "proguard-raise"}
506 certificateTag = dependencyTag{name: "certificate"}
507 instrumentationForTag = dependencyTag{name: "instrumentation_for"}
Colin Cross50ddcc42019-05-16 12:28:22 -0700508 usesLibTag = dependencyTag{name: "uses-library"}
Colin Crossbe1da472017-07-07 15:59:46 -0700509)
Colin Cross2fe66872015-03-30 17:20:39 -0700510
Jiyong Park83dc74b2020-01-14 18:38:44 +0900511func IsLibDepTag(depTag blueprint.DependencyTag) bool {
512 return depTag == libTag
513}
514
515func IsStaticLibDepTag(depTag blueprint.DependencyTag) bool {
516 return depTag == staticLibTag
517}
518
Colin Crossfc3674a2017-09-18 17:41:52 -0700519type sdkDep struct {
Colin Cross47ff2522017-10-02 14:22:08 -0700520 useModule, useFiles, useDefaultLibs, invalidVersion bool
521
Colin Cross6cef4812019-10-17 14:23:50 -0700522 // The modules that will be added to the bootclasspath when targeting 1.8 or lower
523 bootclasspath []string
Paul Duffine25c6442019-10-11 13:50:28 +0100524
525 // The default system modules to use. Will be an empty string if no system
526 // modules are to be used.
Colin Cross1369cdb2017-09-29 17:58:17 -0700527 systemModules string
528
Colin Cross6cef4812019-10-17 14:23:50 -0700529 // The modules that will be added ot the classpath when targeting 1.9 or higher
530 java9Classpath []string
531
Colin Crossa97c5d32018-03-28 14:58:31 -0700532 frameworkResModule string
533
Colin Cross86a60ae2018-05-29 14:44:55 -0700534 jars android.Paths
Colin Cross3047fa22019-04-18 10:56:44 -0700535 aidl android.OptionalPath
Paul Duffin250e6192019-06-07 10:44:37 +0100536
537 noStandardLibs, noFrameworksLibs bool
538}
539
540func (s sdkDep) hasStandardLibs() bool {
541 return !s.noStandardLibs
542}
543
544func (s sdkDep) hasFrameworkLibs() bool {
545 return !s.noStandardLibs && !s.noFrameworksLibs
Colin Cross1369cdb2017-09-29 17:58:17 -0700546}
547
Colin Crossa4f08812018-10-02 22:03:40 -0700548type jniLib struct {
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700549 name string
550 path android.Path
551 target android.Target
552 coverageFile android.OptionalPath
Colin Crossa4f08812018-10-02 22:03:40 -0700553}
554
Colin Cross0ea8ba82019-06-06 14:33:29 -0700555func (j *Module) shouldInstrument(ctx android.BaseModuleContext) bool {
Colin Cross3144dfc2018-01-03 15:06:47 -0800556 return j.properties.Instrument && ctx.Config().IsEnvTrue("EMMA_INSTRUMENT")
557}
558
Colin Cross0ea8ba82019-06-06 14:33:29 -0700559func (j *Module) shouldInstrumentStatic(ctx android.BaseModuleContext) bool {
Colin Cross3144dfc2018-01-03 15:06:47 -0800560 return j.shouldInstrument(ctx) &&
561 (ctx.Config().IsEnvTrue("EMMA_INSTRUMENT_STATIC") ||
562 ctx.Config().UnbundledBuild())
563}
564
Jiyong Park6a927c42020-01-21 02:03:43 +0900565func (j *Module) sdkVersion() sdkSpec {
566 return sdkSpecFrom(String(j.deviceProperties.Sdk_version))
Colin Cross83bb3162018-06-25 15:48:06 -0700567}
568
Paul Duffine25c6442019-10-11 13:50:28 +0100569func (j *Module) systemModules() string {
570 return proptools.String(j.deviceProperties.System_modules)
571}
572
Jiyong Park6a927c42020-01-21 02:03:43 +0900573func (j *Module) minSdkVersion() sdkSpec {
Colin Cross83bb3162018-06-25 15:48:06 -0700574 if j.deviceProperties.Min_sdk_version != nil {
Jiyong Park6a927c42020-01-21 02:03:43 +0900575 return sdkSpecFrom(*j.deviceProperties.Min_sdk_version)
Colin Cross83bb3162018-06-25 15:48:06 -0700576 }
577 return j.sdkVersion()
578}
579
Jiyong Park6a927c42020-01-21 02:03:43 +0900580func (j *Module) targetSdkVersion() sdkSpec {
Dan Willemsen419290a2018-10-31 15:28:47 -0700581 if j.deviceProperties.Target_sdk_version != nil {
Jiyong Park6a927c42020-01-21 02:03:43 +0900582 return sdkSpecFrom(*j.deviceProperties.Target_sdk_version)
Dan Willemsen419290a2018-10-31 15:28:47 -0700583 }
584 return j.sdkVersion()
585}
586
Jiyong Parkb02bb402019-12-03 00:43:57 +0900587func (j *Module) AvailableFor(what string) bool {
588 if what == android.AvailableToPlatform && Bool(j.deviceProperties.Hostdex) {
589 // Exception: for hostdex: true libraries, the platform variant is created
590 // even if it's not marked as available to platform. In that case, the platform
591 // variant is used only for the hostdex and not installed to the device.
592 return true
593 }
594 return j.ApexModuleBase.AvailableFor(what)
595}
596
Colin Crossbe1da472017-07-07 15:59:46 -0700597func (j *Module) deps(ctx android.BottomUpMutatorContext) {
Colin Cross1369cdb2017-09-29 17:58:17 -0700598 if ctx.Device() {
Paul Duffin250e6192019-06-07 10:44:37 +0100599 sdkDep := decodeSdkDep(ctx, sdkContext(j))
Colin Cross6d8d8c62019-10-28 15:10:03 -0700600 if sdkDep.useDefaultLibs {
601 ctx.AddVariationDependencies(nil, bootClasspathTag, config.DefaultBootclasspathLibraries...)
602 ctx.AddVariationDependencies(nil, systemModulesTag, config.DefaultSystemModules)
603 if sdkDep.hasFrameworkLibs() {
604 ctx.AddVariationDependencies(nil, libTag, config.DefaultLibraries...)
Colin Crossbe1da472017-07-07 15:59:46 -0700605 }
Colin Cross6d8d8c62019-10-28 15:10:03 -0700606 } else if sdkDep.useModule {
Colin Cross6cef4812019-10-17 14:23:50 -0700607 ctx.AddVariationDependencies(nil, bootClasspathTag, sdkDep.bootclasspath...)
Paul Duffine25c6442019-10-11 13:50:28 +0100608 ctx.AddVariationDependencies(nil, systemModulesTag, sdkDep.systemModules)
Colin Cross6cef4812019-10-17 14:23:50 -0700609 ctx.AddVariationDependencies(nil, java9LibTag, sdkDep.java9Classpath...)
Colin Cross6d8d8c62019-10-28 15:10:03 -0700610 if j.deviceProperties.EffectiveOptimizeEnabled() && sdkDep.hasStandardLibs() {
611 ctx.AddVariationDependencies(nil, proguardRaiseTag, config.DefaultBootclasspathLibraries...)
612 ctx.AddVariationDependencies(nil, proguardRaiseTag, config.DefaultLibraries...)
613 }
Colin Cross2fe66872015-03-30 17:20:39 -0700614 }
Colin Cross6d8d8c62019-10-28 15:10:03 -0700615
Nan Zhangb2b33de2018-02-23 11:18:47 -0800616 if ctx.ModuleName() == "android_stubs_current" ||
617 ctx.ModuleName() == "android_system_stubs_current" ||
Nan Zhang863f05b2018-08-07 13:41:10 -0700618 ctx.ModuleName() == "android_test_stubs_current" {
Colin Cross42d48b72018-08-29 14:10:52 -0700619 ctx.AddVariationDependencies(nil, frameworkApkTag, "framework-res")
Nan Zhangb2b33de2018-02-23 11:18:47 -0800620 }
Colin Cross2fe66872015-03-30 17:20:39 -0700621 }
Colin Cross1369cdb2017-09-29 17:58:17 -0700622
Inseob Kimac1e9862019-12-09 18:15:47 +0900623 syspropPublicStubs := syspropPublicStubs(ctx.Config())
624
625 // rewriteSyspropLibs validates if a java module can link against platform's sysprop_library,
626 // and redirects dependency to public stub depending on the link type.
627 rewriteSyspropLibs := func(libs []string, prop string) []string {
628 // make a copy
629 ret := android.CopyOf(libs)
630
631 for idx, lib := range libs {
632 stub, ok := syspropPublicStubs[lib]
633
634 if !ok {
635 continue
636 }
637
638 linkType, _ := j.getLinkType(ctx.ModuleName())
Inseob Kimc5239512020-01-14 15:36:21 +0900639 // only platform modules can use internal props
640 if linkType != javaPlatform {
Inseob Kimac1e9862019-12-09 18:15:47 +0900641 ret[idx] = stub
Inseob Kimac1e9862019-12-09 18:15:47 +0900642 }
643 }
644
645 return ret
646 }
647
648 ctx.AddVariationDependencies(nil, libTag, rewriteSyspropLibs(j.properties.Libs, "libs")...)
649 ctx.AddVariationDependencies(nil, staticLibTag, rewriteSyspropLibs(j.properties.Static_libs, "static_libs")...)
Colin Crossa4f08812018-10-02 22:03:40 -0700650
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700651 ctx.AddFarVariationDependencies(ctx.Config().BuildOSCommonTarget.Variations(), pluginTag, j.properties.Plugins...)
Artur Satayev9cf46692019-11-26 18:08:34 +0000652 ctx.AddFarVariationDependencies(ctx.Config().BuildOSCommonTarget.Variations(), exportedPluginTag, j.properties.Exported_plugins...)
Colin Crossbe9cdb82019-01-21 21:37:16 -0800653
Colin Crossfe17f6f2019-03-28 19:30:56 -0700654 android.ProtoDeps(ctx, &j.protoProperties)
Colin Cross6af17aa2017-09-20 12:59:05 -0700655 if j.hasSrcExt(".proto") {
656 protoDeps(ctx, &j.protoProperties)
657 }
Colin Cross93e85952017-08-15 13:34:18 -0700658
659 if j.hasSrcExt(".kt") {
660 // TODO(ccross): move this to a mutator pass that can tell if generated sources contain
661 // Kotlin files
Colin Cross0b03d972019-05-13 11:06:25 -0700662 ctx.AddVariationDependencies(nil, kotlinStdlibTag,
663 "kotlin-stdlib", "kotlin-stdlib-jdk7", "kotlin-stdlib-jdk8")
Colin Cross7788c122019-01-23 16:14:02 -0800664 if len(j.properties.Plugins) > 0 {
Colin Crossafbb1732019-01-17 15:42:52 -0800665 ctx.AddVariationDependencies(nil, kotlinAnnotationsTag, "kotlin-annotations")
666 }
Colin Cross93e85952017-08-15 13:34:18 -0700667 }
Colin Cross3144dfc2018-01-03 15:06:47 -0800668
Ulya Trafimovich38dfa0f2020-01-07 16:37:02 +0000669 // Framework libraries need special handling in static coverage builds: they should not have
670 // static dependency on jacoco, otherwise there would be multiple conflicting definitions of
671 // the same jacoco classes coming from different bootclasspath jars.
672 if inList(ctx.ModuleName(), config.InstrumentFrameworkModules) {
673 if ctx.Config().IsEnvTrue("EMMA_INSTRUMENT_FRAMEWORK") {
674 j.properties.Instrument = true
675 }
676 } else if j.shouldInstrumentStatic(ctx) {
Colin Cross42d48b72018-08-29 14:10:52 -0700677 ctx.AddVariationDependencies(nil, staticLibTag, "jacocoagent")
Colin Cross3144dfc2018-01-03 15:06:47 -0800678 }
Colin Cross6af17aa2017-09-20 12:59:05 -0700679}
680
681func hasSrcExt(srcs []string, ext string) bool {
682 for _, src := range srcs {
683 if filepath.Ext(src) == ext {
684 return true
685 }
686 }
687
688 return false
689}
690
691func (j *Module) hasSrcExt(ext string) bool {
692 return hasSrcExt(j.properties.Srcs, ext)
Colin Cross2fe66872015-03-30 17:20:39 -0700693}
694
Colin Cross46c9b8b2017-06-22 16:51:17 -0700695func (j *Module) aidlFlags(ctx android.ModuleContext, aidlPreprocess android.OptionalPath,
Colin Cross3047fa22019-04-18 10:56:44 -0700696 aidlIncludeDirs android.Paths) (string, android.Paths) {
Colin Crossc0b06f12015-04-08 13:03:43 -0700697
Colin Crossebe1a512017-11-14 13:12:14 -0800698 aidlIncludes := android.PathsForModuleSrc(ctx, j.deviceProperties.Aidl.Local_include_dirs)
699 aidlIncludes = append(aidlIncludes,
700 android.PathsForModuleSrc(ctx, j.deviceProperties.Aidl.Export_include_dirs)...)
701 aidlIncludes = append(aidlIncludes,
702 android.PathsForSource(ctx, j.deviceProperties.Aidl.Include_dirs)...)
Colin Crossc0b06f12015-04-08 13:03:43 -0700703
Colin Cross3047fa22019-04-18 10:56:44 -0700704 var flags []string
705 var deps android.Paths
Steven Moreland667f6882018-07-26 12:55:08 -0700706
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700707 if aidlPreprocess.Valid() {
708 flags = append(flags, "-p"+aidlPreprocess.String())
Colin Cross3047fa22019-04-18 10:56:44 -0700709 deps = append(deps, aidlPreprocess.Path())
710 } else if len(aidlIncludeDirs) > 0 {
Colin Cross635c3b02016-05-18 15:37:25 -0700711 flags = append(flags, android.JoinWithPrefix(aidlIncludeDirs.Strings(), "-I"))
Colin Crossc0b06f12015-04-08 13:03:43 -0700712 }
713
Colin Cross3047fa22019-04-18 10:56:44 -0700714 if len(j.exportAidlIncludeDirs) > 0 {
715 flags = append(flags, android.JoinWithPrefix(j.exportAidlIncludeDirs.Strings(), "-I"))
716 }
717
718 if len(aidlIncludes) > 0 {
719 flags = append(flags, android.JoinWithPrefix(aidlIncludes.Strings(), "-I"))
720 }
721
Colin Cross635c3b02016-05-18 15:37:25 -0700722 flags = append(flags, "-I"+android.PathForModuleSrc(ctx).String())
Colin Cross32f38982018-02-22 11:47:25 -0800723 if src := android.ExistentPathForSource(ctx, ctx.ModuleDir(), "src"); src.Valid() {
Colin Crossd48633a2017-07-13 14:41:17 -0700724 flags = append(flags, "-I"+src.String())
725 }
Colin Crossc0b06f12015-04-08 13:03:43 -0700726
Martijn Coeneneab15642018-03-09 09:29:59 +0100727 if Bool(j.deviceProperties.Aidl.Generate_traces) {
728 flags = append(flags, "-t")
729 }
730
Olivier Gaillard0a4cfbc2018-07-16 23:37:03 +0100731 if Bool(j.deviceProperties.Aidl.Generate_get_transaction_name) {
732 flags = append(flags, "--transaction_names")
733 }
734
Colin Cross3047fa22019-04-18 10:56:44 -0700735 return strings.Join(flags, " "), deps
Colin Crossc0b06f12015-04-08 13:03:43 -0700736}
737
Colin Cross32f676a2017-09-06 13:41:06 -0700738type deps struct {
Nan Zhang581fd212018-01-10 16:06:12 -0800739 classpath classpath
Colin Cross6cef4812019-10-17 14:23:50 -0700740 java9Classpath classpath
Nan Zhang581fd212018-01-10 16:06:12 -0800741 bootClasspath classpath
Colin Cross6a77c982018-06-19 22:43:34 -0700742 processorPath classpath
Colin Crossbe9cdb82019-01-21 21:37:16 -0800743 processorClasses []string
Colin Cross6ade34f2017-09-15 13:00:47 -0700744 staticJars android.Paths
Nan Zhanged19fc32017-10-19 13:06:22 -0700745 staticHeaderJars android.Paths
Colin Cross331a1212018-08-15 20:40:52 -0700746 staticResourceJars android.Paths
Colin Cross6ade34f2017-09-15 13:00:47 -0700747 aidlIncludeDirs android.Paths
Nan Zhangb2b33de2018-02-23 11:18:47 -0800748 srcs android.Paths
Colin Cross59149b62017-10-16 18:07:29 -0700749 srcJars android.Paths
Colin Crossb77043e2019-07-16 13:57:13 -0700750 systemModules *systemModules
Colin Cross6ade34f2017-09-15 13:00:47 -0700751 aidlPreprocess android.OptionalPath
Colin Cross93e85952017-08-15 13:34:18 -0700752 kotlinStdlib android.Paths
Colin Crossafbb1732019-01-17 15:42:52 -0800753 kotlinAnnotations android.Paths
Colin Crossbe9cdb82019-01-21 21:37:16 -0800754
755 disableTurbine bool
Colin Cross32f676a2017-09-06 13:41:06 -0700756}
Colin Cross2fe66872015-03-30 17:20:39 -0700757
Colin Cross54250902017-12-05 09:28:08 -0800758func checkProducesJars(ctx android.ModuleContext, dep android.SourceFileProducer) {
759 for _, f := range dep.Srcs() {
760 if f.Ext() != ".jar" {
761 ctx.ModuleErrorf("genrule %q must generate files ending with .jar to be used as a libs or static_libs dependency",
762 ctx.OtherModuleName(dep.(blueprint.Module)))
763 }
764 }
765}
766
Jiyong Park2d492942018-03-05 17:44:10 +0900767type linkType int
768
769const (
Jiyong Park50146e92020-01-30 18:00:15 +0900770 // TODO(jiyong) rename these for better readability. Make the allowed
771 // and disallowed link types explicit
Jiyong Park2d492942018-03-05 17:44:10 +0900772 javaCore linkType = iota
773 javaSdk
774 javaSystem
Jiyong Park50146e92020-01-30 18:00:15 +0900775 javaModule
Jiyong Parkaae9bd12020-02-12 04:36:43 +0900776 javaSystemServer
Jiyong Park2d492942018-03-05 17:44:10 +0900777 javaPlatform
778)
779
Jeongik Cha75b83b02019-11-01 15:28:00 +0900780type linkTypeContext interface {
781 android.Module
782 getLinkType(name string) (ret linkType, stubs bool)
783}
784
785func (m *Module) getLinkType(name string) (ret linkType, stubs bool) {
Colin Cross83bb3162018-06-25 15:48:06 -0700786 ver := m.sdkVersion()
Colin Crossf19b9bb2018-03-26 14:42:44 -0700787 switch {
Jiyong Park46f78fb2018-10-20 16:33:17 +0900788 case name == "core.current.stubs" || name == "core.platform.api.stubs" ||
789 name == "stub-annotations" || name == "private-stub-annotations-jar" ||
Pete Gillincbff3262019-05-08 15:10:06 +0100790 name == "core-lambda-stubs" || name == "core-generated-annotation-stubs":
Jiyong Park46f78fb2018-10-20 16:33:17 +0900791 return javaCore, true
Jiyong Park6a927c42020-01-21 02:03:43 +0900792 case ver.kind == sdkCore:
Jiyong Park46f78fb2018-10-20 16:33:17 +0900793 return javaCore, false
794 case name == "android_system_stubs_current":
795 return javaSystem, true
Jiyong Park6a927c42020-01-21 02:03:43 +0900796 case ver.kind == sdkSystem:
Jiyong Park46f78fb2018-10-20 16:33:17 +0900797 return javaSystem, false
798 case name == "android_test_stubs_current":
799 return javaSystem, true
Jiyong Park6a927c42020-01-21 02:03:43 +0900800 case ver.kind == sdkTest:
Jiyong Park46f78fb2018-10-20 16:33:17 +0900801 return javaPlatform, false
802 case name == "android_stubs_current":
803 return javaSdk, true
Jiyong Park6a927c42020-01-21 02:03:43 +0900804 case ver.kind == sdkPublic:
Jiyong Park46f78fb2018-10-20 16:33:17 +0900805 return javaSdk, false
Jiyong Park50146e92020-01-30 18:00:15 +0900806 case name == "android_module_lib_stubs_current":
807 return javaModule, true
808 case ver.kind == sdkModule:
809 return javaModule, false
Anton Hanssonba6ab2e2020-03-19 15:23:38 +0000810 case name == "android_system_server_stubs_current":
Jiyong Parkaae9bd12020-02-12 04:36:43 +0900811 return javaSystemServer, true
812 case ver.kind == sdkSystemServer:
813 return javaSystemServer, false
Jiyong Park6a927c42020-01-21 02:03:43 +0900814 case ver.kind == sdkPrivate || ver.kind == sdkNone || ver.kind == sdkCorePlatform:
Jiyong Park46f78fb2018-10-20 16:33:17 +0900815 return javaPlatform, false
Jiyong Park6a927c42020-01-21 02:03:43 +0900816 case !ver.valid():
817 panic(fmt.Errorf("sdk_version is invalid. got %q", ver.raw))
Colin Crossf19b9bb2018-03-26 14:42:44 -0700818 default:
Jiyong Park46f78fb2018-10-20 16:33:17 +0900819 return javaSdk, false
Jiyong Park2d492942018-03-05 17:44:10 +0900820 }
821}
822
Jeongik Cha75b83b02019-11-01 15:28:00 +0900823func checkLinkType(ctx android.ModuleContext, from *Module, to linkTypeContext, tag dependencyTag) {
Colin Crossf19b9bb2018-03-26 14:42:44 -0700824 if ctx.Host() {
825 return
826 }
827
Jeongik Cha75b83b02019-11-01 15:28:00 +0900828 myLinkType, stubs := from.getLinkType(ctx.ModuleName())
Jiyong Park46f78fb2018-10-20 16:33:17 +0900829 if stubs {
830 return
831 }
Jeongik Cha75b83b02019-11-01 15:28:00 +0900832 otherLinkType, _ := to.getLinkType(ctx.OtherModuleName(to))
Jiyong Park2d492942018-03-05 17:44:10 +0900833 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."
834
835 switch myLinkType {
836 case javaCore:
837 if otherLinkType != javaCore {
838 ctx.ModuleErrorf("compiles against core Java API, but dependency %q is compiling against non-core Java APIs."+commonMessage,
Jiyong Park750e5572018-01-31 00:20:13 +0900839 ctx.OtherModuleName(to))
840 }
Jiyong Park2d492942018-03-05 17:44:10 +0900841 break
842 case javaSdk:
843 if otherLinkType != javaCore && otherLinkType != javaSdk {
844 ctx.ModuleErrorf("compiles against Android API, but dependency %q is compiling against non-public Android API."+commonMessage,
845 ctx.OtherModuleName(to))
846 }
847 break
848 case javaSystem:
Jiyong Parkaae9bd12020-02-12 04:36:43 +0900849 if otherLinkType == javaPlatform || otherLinkType == javaModule || otherLinkType == javaSystemServer {
Jiyong Park2d492942018-03-05 17:44:10 +0900850 ctx.ModuleErrorf("compiles against system API, but dependency %q is compiling against private API."+commonMessage,
851 ctx.OtherModuleName(to))
852 }
853 break
Jiyong Park50146e92020-01-30 18:00:15 +0900854 case javaModule:
Jiyong Parkaae9bd12020-02-12 04:36:43 +0900855 if otherLinkType == javaPlatform || otherLinkType == javaSystemServer {
Jiyong Park50146e92020-01-30 18:00:15 +0900856 ctx.ModuleErrorf("compiles against module API, but dependency %q is compiling against private API."+commonMessage,
857 ctx.OtherModuleName(to))
858 }
859 break
Jiyong Parkaae9bd12020-02-12 04:36:43 +0900860 case javaSystemServer:
861 if otherLinkType == javaPlatform {
862 ctx.ModuleErrorf("compiles against system server API, but dependency %q is compiling against private API."+commonMessage,
863 ctx.OtherModuleName(to))
864 }
865 break
Jiyong Park2d492942018-03-05 17:44:10 +0900866 case javaPlatform:
867 // no restriction on link-type
868 break
Jiyong Park750e5572018-01-31 00:20:13 +0900869 }
870}
871
Colin Cross32f676a2017-09-06 13:41:06 -0700872func (j *Module) collectDeps(ctx android.ModuleContext) deps {
873 var deps deps
Colin Crossfc3674a2017-09-18 17:41:52 -0700874
Colin Cross300f0382018-03-06 13:11:51 -0800875 if ctx.Device() {
Colin Cross83bb3162018-06-25 15:48:06 -0700876 sdkDep := decodeSdkDep(ctx, sdkContext(j))
Colin Cross300f0382018-03-06 13:11:51 -0800877 if sdkDep.invalidVersion {
Colin Cross6cef4812019-10-17 14:23:50 -0700878 ctx.AddMissingDependencies(sdkDep.bootclasspath)
879 ctx.AddMissingDependencies(sdkDep.java9Classpath)
Colin Cross300f0382018-03-06 13:11:51 -0800880 } else if sdkDep.useFiles {
881 // sdkDep.jar is actually equivalent to turbine header.jar.
Colin Cross86a60ae2018-05-29 14:44:55 -0700882 deps.classpath = append(deps.classpath, sdkDep.jars...)
Colin Cross3047fa22019-04-18 10:56:44 -0700883 deps.aidlPreprocess = sdkDep.aidl
884 } else {
885 deps.aidlPreprocess = sdkDep.aidl
Colin Cross300f0382018-03-06 13:11:51 -0800886 }
Colin Crossfc3674a2017-09-18 17:41:52 -0700887 }
888
Colin Crossd11fcda2017-10-23 17:59:01 -0700889 ctx.VisitDirectDeps(func(module android.Module) {
Colin Cross2fe66872015-03-30 17:20:39 -0700890 otherName := ctx.OtherModuleName(module)
Colin Crossec7a0422017-07-07 14:47:12 -0700891 tag := ctx.OtherModuleDependencyTag(module)
892
Colin Crossa4f08812018-10-02 22:03:40 -0700893 if _, ok := tag.(*jniDependencyTag); ok {
Colin Crossbd01e2a2018-10-04 15:21:03 -0700894 // Handled by AndroidApp.collectAppDeps
895 return
896 }
897 if tag == certificateTag {
898 // Handled by AndroidApp.collectAppDeps
Colin Crossa4f08812018-10-02 22:03:40 -0700899 return
900 }
Jeongik Cha75b83b02019-11-01 15:28:00 +0900901 switch module.(type) {
Jeongik Chae403e9e2019-12-07 00:16:24 +0900902 case *Library, *AndroidLibrary:
Jeongik Cha75b83b02019-11-01 15:28:00 +0900903 if to, ok := module.(linkTypeContext); ok {
904 switch tag {
905 case bootClasspathTag, libTag, staticLibTag:
906 checkLinkType(ctx, j, to, tag.(dependencyTag))
907 }
Colin Crossa97c5d32018-03-28 14:58:31 -0700908 }
Jiyong Park750e5572018-01-31 00:20:13 +0900909 }
Colin Cross54250902017-12-05 09:28:08 -0800910 switch dep := module.(type) {
Colin Cross897d2ed2019-02-11 14:03:51 -0800911 case SdkLibraryDependency:
912 switch tag {
913 case libTag:
914 deps.classpath = append(deps.classpath, dep.SdkHeaderJars(ctx, j.sdkVersion())...)
915 // names of sdk libs that are directly depended are exported
916 j.exportedSdkLibs = append(j.exportedSdkLibs, otherName)
Colin Cross79c7c262019-04-17 11:11:46 -0700917 case staticLibTag:
Colin Cross897d2ed2019-02-11 14:03:51 -0800918 ctx.ModuleErrorf("dependency on java_sdk_library %q can only be in libs", otherName)
919 }
Colin Cross54250902017-12-05 09:28:08 -0800920 case Dependency:
921 switch tag {
922 case bootClasspathTag:
923 deps.bootClasspath = append(deps.bootClasspath, dep.HeaderJars()...)
Colin Cross4b964c02018-10-15 16:18:06 -0700924 case libTag, instrumentationForTag:
Colin Cross54250902017-12-05 09:28:08 -0800925 deps.classpath = append(deps.classpath, dep.HeaderJars()...)
Jiyong Park1be96912018-05-28 18:02:19 +0900926 // sdk lib names from dependencies are re-exported
927 j.exportedSdkLibs = append(j.exportedSdkLibs, dep.ExportedSdkLibs()...)
Colin Cross3047fa22019-04-18 10:56:44 -0700928 deps.aidlIncludeDirs = append(deps.aidlIncludeDirs, dep.AidlIncludeDirs()...)
Artur Satayev9cf46692019-11-26 18:08:34 +0000929 pluginJars, pluginClasses := dep.ExportedPlugins()
930 addPlugins(&deps, pluginJars, pluginClasses...)
Colin Cross6cef4812019-10-17 14:23:50 -0700931 case java9LibTag:
932 deps.java9Classpath = append(deps.java9Classpath, dep.HeaderJars()...)
Colin Cross54250902017-12-05 09:28:08 -0800933 case staticLibTag:
934 deps.classpath = append(deps.classpath, dep.HeaderJars()...)
935 deps.staticJars = append(deps.staticJars, dep.ImplementationJars()...)
936 deps.staticHeaderJars = append(deps.staticHeaderJars, dep.HeaderJars()...)
Colin Cross331a1212018-08-15 20:40:52 -0700937 deps.staticResourceJars = append(deps.staticResourceJars, dep.ResourceJars()...)
Jiyong Park1be96912018-05-28 18:02:19 +0900938 // sdk lib names from dependencies are re-exported
939 j.exportedSdkLibs = append(j.exportedSdkLibs, dep.ExportedSdkLibs()...)
Colin Cross3047fa22019-04-18 10:56:44 -0700940 deps.aidlIncludeDirs = append(deps.aidlIncludeDirs, dep.AidlIncludeDirs()...)
Artur Satayev9cf46692019-11-26 18:08:34 +0000941 pluginJars, pluginClasses := dep.ExportedPlugins()
942 addPlugins(&deps, pluginJars, pluginClasses...)
Colin Crossbe9cdb82019-01-21 21:37:16 -0800943 case pluginTag:
944 if plugin, ok := dep.(*Plugin); ok {
Colin Crossbe9cdb82019-01-21 21:37:16 -0800945 if plugin.pluginProperties.Processor_class != nil {
Artur Satayev9cf46692019-11-26 18:08:34 +0000946 addPlugins(&deps, plugin.ImplementationAndResourcesJars(), *plugin.pluginProperties.Processor_class)
947 } else {
948 addPlugins(&deps, plugin.ImplementationAndResourcesJars())
Colin Crossbe9cdb82019-01-21 21:37:16 -0800949 }
950 deps.disableTurbine = deps.disableTurbine || Bool(plugin.pluginProperties.Generates_api)
951 } else {
952 ctx.PropertyErrorf("plugins", "%q is not a java_plugin module", otherName)
953 }
Artur Satayev9cf46692019-11-26 18:08:34 +0000954 case exportedPluginTag:
955 if plugin, ok := dep.(*Plugin); ok {
956 if plugin.pluginProperties.Generates_api != nil && *plugin.pluginProperties.Generates_api {
957 ctx.PropertyErrorf("exported_plugins", "Cannot export plugins with generates_api = true, found %v", otherName)
958 }
959 j.exportedPluginJars = append(j.exportedPluginJars, plugin.ImplementationAndResourcesJars()...)
960 if plugin.pluginProperties.Processor_class != nil {
961 j.exportedPluginClasses = append(j.exportedPluginClasses, *plugin.pluginProperties.Processor_class)
962 }
963 } else {
964 ctx.PropertyErrorf("exported_plugins", "%q is not a java_plugin module", otherName)
965 }
Nan Zhangb2b33de2018-02-23 11:18:47 -0800966 case frameworkApkTag:
967 if ctx.ModuleName() == "android_stubs_current" ||
968 ctx.ModuleName() == "android_system_stubs_current" ||
Nan Zhang863f05b2018-08-07 13:41:10 -0700969 ctx.ModuleName() == "android_test_stubs_current" {
Nan Zhangb2b33de2018-02-23 11:18:47 -0800970 // framework stubs.jar need to depend on framework-res.apk, in order to pull the
971 // resource files out of there for aapt.
972 //
973 // Normally the package rule runs aapt, which includes the resource,
974 // but we're not running that in our package rule so just copy in the
975 // resource files here.
Colin Cross331a1212018-08-15 20:40:52 -0700976 deps.staticResourceJars = append(deps.staticResourceJars, dep.(*AndroidApp).exportPackage)
Nan Zhangb2b33de2018-02-23 11:18:47 -0800977 }
Colin Cross54250902017-12-05 09:28:08 -0800978 case kotlinStdlibTag:
Colin Cross0b03d972019-05-13 11:06:25 -0700979 deps.kotlinStdlib = append(deps.kotlinStdlib, dep.HeaderJars()...)
Colin Crossafbb1732019-01-17 15:42:52 -0800980 case kotlinAnnotationsTag:
981 deps.kotlinAnnotations = dep.HeaderJars()
Colin Cross54250902017-12-05 09:28:08 -0800982 }
983
Colin Cross54250902017-12-05 09:28:08 -0800984 case android.SourceFileProducer:
985 switch tag {
986 case libTag:
987 checkProducesJars(ctx, dep)
988 deps.classpath = append(deps.classpath, dep.Srcs()...)
989 case staticLibTag:
990 checkProducesJars(ctx, dep)
991 deps.classpath = append(deps.classpath, dep.Srcs()...)
992 deps.staticJars = append(deps.staticJars, dep.Srcs()...)
993 deps.staticHeaderJars = append(deps.staticHeaderJars, dep.Srcs()...)
Colin Cross54250902017-12-05 09:28:08 -0800994 }
995 default:
Colin Crossec7a0422017-07-07 14:47:12 -0700996 switch tag {
Paul Duffin68289b02019-09-20 13:50:52 +0100997 case bootClasspathTag:
998 // If a system modules dependency has been added to the bootclasspath
999 // then add its libs to the bootclasspath.
Paul Duffin83a2d962019-11-19 19:44:10 +00001000 sm := module.(SystemModulesProvider)
1001 deps.bootClasspath = append(deps.bootClasspath, sm.HeaderJars()...)
Paul Duffin68289b02019-09-20 13:50:52 +01001002
Colin Cross1369cdb2017-09-29 17:58:17 -07001003 case systemModulesTag:
1004 if deps.systemModules != nil {
1005 panic("Found two system module dependencies")
1006 }
Paul Duffin83a2d962019-11-19 19:44:10 +00001007 sm := module.(SystemModulesProvider)
1008 outputDir, outputDeps := sm.OutputDirAndDeps()
1009 deps.systemModules = &systemModules{outputDir, outputDeps}
Colin Cross2fe66872015-03-30 17:20:39 -07001010 }
Colin Crossec7a0422017-07-07 14:47:12 -07001011 }
Colin Cross2fe66872015-03-30 17:20:39 -07001012 })
1013
Jiyong Park1be96912018-05-28 18:02:19 +09001014 j.exportedSdkLibs = android.FirstUniqueStrings(j.exportedSdkLibs)
1015
Colin Cross32f676a2017-09-06 13:41:06 -07001016 return deps
Colin Cross2fe66872015-03-30 17:20:39 -07001017}
1018
Artur Satayev9cf46692019-11-26 18:08:34 +00001019func addPlugins(deps *deps, pluginJars android.Paths, pluginClasses ...string) {
1020 deps.processorPath = append(deps.processorPath, pluginJars...)
1021 deps.processorClasses = append(deps.processorClasses, pluginClasses...)
1022}
1023
Colin Cross1e743852019-10-28 11:37:20 -07001024func getJavaVersion(ctx android.ModuleContext, javaVersion string, sdkContext sdkContext) javaVersion {
Jiyong Park6a927c42020-01-21 02:03:43 +09001025 sdk, err := sdkContext.sdkVersion().effectiveVersion(ctx)
Colin Cross83bb3162018-06-25 15:48:06 -07001026 if err != nil {
1027 ctx.PropertyErrorf("sdk_version", "%s", err)
1028 }
Nan Zhang357466b2018-04-17 17:38:36 -07001029 if javaVersion != "" {
Colin Cross1e743852019-10-28 11:37:20 -07001030 return normalizeJavaVersion(ctx, javaVersion)
Nan Zhang357466b2018-04-17 17:38:36 -07001031 } else if ctx.Device() && sdk <= 23 {
Colin Cross1e743852019-10-28 11:37:20 -07001032 return JAVA_VERSION_7
Pete Gillina1c9e9d2019-10-17 14:52:07 +01001033 } else if ctx.Device() && sdk <= 29 {
Colin Cross1e743852019-10-28 11:37:20 -07001034 return JAVA_VERSION_8
Colin Cross6cef4812019-10-17 14:23:50 -07001035 } else if ctx.Device() && ctx.Config().UnbundledBuildUsePrebuiltSdks() {
1036 // TODO(b/142896162): once we have prebuilt system modules we can use 1.9 for unbundled builds
Colin Cross1e743852019-10-28 11:37:20 -07001037 return JAVA_VERSION_8
Nan Zhang357466b2018-04-17 17:38:36 -07001038 } else {
Colin Cross1e743852019-10-28 11:37:20 -07001039 return JAVA_VERSION_9
Nan Zhang357466b2018-04-17 17:38:36 -07001040 }
Nan Zhang357466b2018-04-17 17:38:36 -07001041}
1042
Colin Cross1e743852019-10-28 11:37:20 -07001043type javaVersion int
1044
1045const (
1046 JAVA_VERSION_UNSUPPORTED = 0
1047 JAVA_VERSION_6 = 6
1048 JAVA_VERSION_7 = 7
1049 JAVA_VERSION_8 = 8
1050 JAVA_VERSION_9 = 9
1051)
1052
1053func (v javaVersion) String() string {
1054 switch v {
1055 case JAVA_VERSION_6:
1056 return "1.6"
1057 case JAVA_VERSION_7:
1058 return "1.7"
1059 case JAVA_VERSION_8:
1060 return "1.8"
1061 case JAVA_VERSION_9:
1062 return "1.9"
1063 default:
1064 return "unsupported"
1065 }
1066}
1067
1068// Returns true if javac targeting this version uses system modules instead of a bootclasspath.
1069func (v javaVersion) usesJavaModules() bool {
1070 return v >= 9
1071}
1072
1073func normalizeJavaVersion(ctx android.BaseModuleContext, javaVersion string) javaVersion {
Pete Gillin4e8b48a2019-07-12 13:16:17 +01001074 switch javaVersion {
1075 case "1.6", "6":
Colin Cross1e743852019-10-28 11:37:20 -07001076 return JAVA_VERSION_6
Pete Gillin4e8b48a2019-07-12 13:16:17 +01001077 case "1.7", "7":
Colin Cross1e743852019-10-28 11:37:20 -07001078 return JAVA_VERSION_7
Pete Gillin4e8b48a2019-07-12 13:16:17 +01001079 case "1.8", "8":
Colin Cross1e743852019-10-28 11:37:20 -07001080 return JAVA_VERSION_8
Pete Gillin4e8b48a2019-07-12 13:16:17 +01001081 case "1.9", "9":
Colin Cross1e743852019-10-28 11:37:20 -07001082 return JAVA_VERSION_9
Pete Gillin4e8b48a2019-07-12 13:16:17 +01001083 case "10", "11":
1084 ctx.PropertyErrorf("java_version", "Java language levels above 9 are not supported")
Colin Cross1e743852019-10-28 11:37:20 -07001085 return JAVA_VERSION_UNSUPPORTED
Pete Gillin4e8b48a2019-07-12 13:16:17 +01001086 default:
1087 ctx.PropertyErrorf("java_version", "Unrecognized Java language level")
Colin Cross1e743852019-10-28 11:37:20 -07001088 return JAVA_VERSION_UNSUPPORTED
Pete Gillin4e8b48a2019-07-12 13:16:17 +01001089 }
1090}
1091
Nan Zhanged19fc32017-10-19 13:06:22 -07001092func (j *Module) collectBuilderFlags(ctx android.ModuleContext, deps deps) javaBuilderFlags {
Colin Crossc0b06f12015-04-08 13:03:43 -07001093
Colin Crossf03c82b2015-04-13 13:53:40 -07001094 var flags javaBuilderFlags
1095
Tobias Thierer06dd04f2018-09-11 16:21:05 +01001096 // javaVersion flag.
1097 flags.javaVersion = getJavaVersion(ctx, String(j.properties.Java_version), sdkContext(j))
1098
Nan Zhanged19fc32017-10-19 13:06:22 -07001099 // javac flags.
Colin Crossf03c82b2015-04-13 13:53:40 -07001100 javacFlags := j.properties.Javacflags
Colin Cross1e743852019-10-28 11:37:20 -07001101 if flags.javaVersion.usesJavaModules() {
Colin Cross1369cdb2017-09-29 17:58:17 -07001102 javacFlags = append(javacFlags, j.properties.Openjdk9.Javacflags...)
Nan Zhanged19fc32017-10-19 13:06:22 -07001103 }
Colin Cross6510f912017-11-29 00:27:14 -08001104 if ctx.Config().MinimizeJavaDebugInfo() {
Colin Cross126a25c2017-10-31 13:55:34 -07001105 // Override the -g flag passed globally to remove local variable debug info to reduce
1106 // disk and memory usage.
1107 javacFlags = append(javacFlags, "-g:source,lines")
1108 }
Colin Crossc228a702019-11-06 16:18:05 -08001109 javacFlags = append(javacFlags, "-Xlint:-dep-ann")
Colin Cross64162712017-08-08 13:17:59 -07001110
Colin Cross66548102018-06-19 22:47:35 -07001111 if ctx.Config().RunErrorProne() {
1112 if config.ErrorProneClasspath == nil {
1113 ctx.ModuleErrorf("cannot build with Error Prone, missing external/error_prone?")
1114 }
1115
1116 errorProneFlags := []string{
1117 "-Xplugin:ErrorProne",
1118 "${config.ErrorProneChecks}",
1119 }
1120 errorProneFlags = append(errorProneFlags, j.properties.Errorprone.Javacflags...)
1121
1122 flags.errorProneExtraJavacFlags = "${config.ErrorProneFlags} " +
1123 "'" + strings.Join(errorProneFlags, " ") + "'"
1124 flags.errorProneProcessorPath = classpath(android.PathsForSource(ctx, config.ErrorProneClasspath))
Andreas Gampef3e5b552018-01-22 21:27:21 -08001125 }
1126
Nan Zhanged19fc32017-10-19 13:06:22 -07001127 // classpath
Nan Zhang581fd212018-01-10 16:06:12 -08001128 flags.bootClasspath = append(flags.bootClasspath, deps.bootClasspath...)
1129 flags.classpath = append(flags.classpath, deps.classpath...)
Colin Cross6cef4812019-10-17 14:23:50 -07001130 flags.java9Classpath = append(flags.java9Classpath, deps.java9Classpath...)
Colin Cross6a77c982018-06-19 22:43:34 -07001131 flags.processorPath = append(flags.processorPath, deps.processorPath...)
Colin Cross7fdd2b72018-01-02 18:14:25 -08001132
Colin Cross5a116862020-04-22 11:44:34 -07001133 flags.processors = append(flags.processors, deps.processorClasses...)
1134 flags.processors = android.FirstUniqueStrings(flags.processors)
Colin Crossbe9cdb82019-01-21 21:37:16 -08001135
Colin Cross1e743852019-10-28 11:37:20 -07001136 if len(flags.bootClasspath) == 0 && ctx.Host() && !flags.javaVersion.usesJavaModules() &&
1137 decodeSdkDep(ctx, sdkContext(j)).hasStandardLibs() {
Colin Cross7fdd2b72018-01-02 18:14:25 -08001138 // Give host-side tools a version of OpenJDK's standard libraries
1139 // close to what they're targeting. As of Dec 2017, AOSP is only
1140 // bundling OpenJDK 8 and 9, so nothing < 8 is available.
1141 //
1142 // When building with OpenJDK 8, the following should have no
1143 // effect since those jars would be available by default.
1144 //
1145 // When building with OpenJDK 9 but targeting a version < 1.8,
1146 // putting them on the bootclasspath means that:
1147 // a) code can't (accidentally) refer to OpenJDK 9 specific APIs
1148 // b) references to existing APIs are not reinterpreted in an
1149 // OpenJDK 9-specific way, eg. calls to subclasses of
1150 // java.nio.Buffer as in http://b/70862583
1151 java8Home := ctx.Config().Getenv("ANDROID_JAVA8_HOME")
1152 flags.bootClasspath = append(flags.bootClasspath,
1153 android.PathForSource(ctx, java8Home, "jre/lib/jce.jar"),
1154 android.PathForSource(ctx, java8Home, "jre/lib/rt.jar"))
Nan Zhang5f8cb422018-02-06 10:34:32 -08001155 if Bool(j.properties.Use_tools_jar) {
1156 flags.bootClasspath = append(flags.bootClasspath,
1157 android.PathForSource(ctx, java8Home, "lib/tools.jar"))
1158 }
Colin Cross7fdd2b72018-01-02 18:14:25 -08001159 }
1160
Colin Cross1e743852019-10-28 11:37:20 -07001161 if j.properties.Patch_module != nil && flags.javaVersion.usesJavaModules() {
Jaewoong Jung38e4fb22018-12-12 09:01:34 -08001162 // Manually specify build directory in case it is not under the repo root.
1163 // (javac doesn't seem to expand into symbolc links when searching for patch-module targets, so
1164 // just adding a symlink under the root doesn't help.)
1165 patchPaths := ".:" + ctx.Config().BuildDir()
1166 classPath := flags.classpath.FormJavaClassPath("")
1167 if classPath != "" {
1168 patchPaths += ":" + classPath
1169 }
1170 javacFlags = append(javacFlags, "--patch-module="+String(j.properties.Patch_module)+"="+patchPaths)
Colin Cross81440082018-08-15 20:21:55 -07001171 }
1172
Nan Zhanged19fc32017-10-19 13:06:22 -07001173 // systemModules
Colin Crossb77043e2019-07-16 13:57:13 -07001174 flags.systemModules = deps.systemModules
Colin Cross1369cdb2017-09-29 17:58:17 -07001175
Nan Zhanged19fc32017-10-19 13:06:22 -07001176 // aidl flags.
Colin Cross3047fa22019-04-18 10:56:44 -07001177 flags.aidlFlags, flags.aidlDeps = j.aidlFlags(ctx, deps.aidlPreprocess, deps.aidlIncludeDirs)
Colin Cross2fe66872015-03-30 17:20:39 -07001178
Colin Cross81440082018-08-15 20:21:55 -07001179 if len(javacFlags) > 0 {
1180 // optimization.
1181 ctx.Variable(pctx, "javacFlags", strings.Join(javacFlags, " "))
1182 flags.javacFlags = "$javacFlags"
1183 }
1184
Nan Zhanged19fc32017-10-19 13:06:22 -07001185 return flags
1186}
Colin Crossc0b06f12015-04-08 13:03:43 -07001187
Jaewoong Junga24af3b2019-05-13 09:23:20 -07001188func (j *Module) compile(ctx android.ModuleContext, aaptSrcJar android.Path) {
Colin Crossebe1a512017-11-14 13:12:14 -08001189 j.exportAidlIncludeDirs = android.PathsForModuleSrc(ctx, j.deviceProperties.Aidl.Export_include_dirs)
Nan Zhanged19fc32017-10-19 13:06:22 -07001190
1191 deps := j.collectDeps(ctx)
1192 flags := j.collectBuilderFlags(ctx, deps)
1193
Colin Cross1e743852019-10-28 11:37:20 -07001194 if flags.javaVersion.usesJavaModules() {
Nan Zhanged19fc32017-10-19 13:06:22 -07001195 j.properties.Srcs = append(j.properties.Srcs, j.properties.Openjdk9.Srcs...)
1196 }
Colin Cross8a497952019-03-05 22:25:09 -08001197 srcFiles := android.PathsForModuleSrcExcludes(ctx, j.properties.Srcs, j.properties.Exclude_srcs)
Colin Cross6af17aa2017-09-20 12:59:05 -07001198 if hasSrcExt(srcFiles.Strings(), ".proto") {
Colin Cross0f2ee152017-12-14 15:22:43 -08001199 flags = protoFlags(ctx, &j.properties, &j.protoProperties, flags)
Colin Cross6af17aa2017-09-20 12:59:05 -07001200 }
1201
Colin Crossaf050172017-11-15 23:01:59 -08001202 srcFiles = j.genSources(ctx, srcFiles, flags)
1203
1204 srcJars := srcFiles.FilterByExt(".srcjar")
Colin Cross59149b62017-10-16 18:07:29 -07001205 srcJars = append(srcJars, deps.srcJars...)
Jaewoong Junga24af3b2019-05-13 09:23:20 -07001206 if aaptSrcJar != nil {
1207 srcJars = append(srcJars, aaptSrcJar)
1208 }
Colin Crossb7a63242015-04-16 14:09:14 -07001209
Steven Morelandc4efd9c2019-01-18 11:51:25 -08001210 if j.properties.Jarjar_rules != nil {
Colin Cross8a497952019-03-05 22:25:09 -08001211 j.expandJarjarRules = android.PathForModuleSrc(ctx, *j.properties.Jarjar_rules)
Steven Morelandc4efd9c2019-01-18 11:51:25 -08001212 }
1213
Colin Cross1ee23172017-10-18 14:44:18 -07001214 jarName := ctx.ModuleName() + ".jar"
1215
Przemyslaw Szczepaniak4b5fe9d2018-02-13 14:32:54 +00001216 javaSrcFiles := srcFiles.FilterByExt(".java")
1217 var uniqueSrcFiles android.Paths
1218 set := make(map[string]bool)
1219 for _, v := range javaSrcFiles {
1220 if _, found := set[v.String()]; !found {
1221 set[v.String()] = true
1222 uniqueSrcFiles = append(uniqueSrcFiles, v)
1223 }
1224 }
1225
patricktu242faad2019-09-24 15:41:30 +08001226 // Collect .java files for AIDEGen
1227 j.expandIDEInfoCompiledSrcs = append(j.expandIDEInfoCompiledSrcs, uniqueSrcFiles.Strings()...)
1228
Colin Cross55f63ea2018-08-27 12:37:09 -07001229 var kotlinJars android.Paths
1230
Colin Cross93e85952017-08-15 13:34:18 -07001231 if srcFiles.HasExt(".kt") {
Zoran Jovanovic8736ce22018-08-21 17:10:29 +02001232 // user defined kotlin flags.
1233 kotlincFlags := j.properties.Kotlincflags
1234 CheckKotlincFlags(ctx, kotlincFlags)
1235
Colin Cross93e85952017-08-15 13:34:18 -07001236 // If there are kotlin files, compile them first but pass all the kotlin and java files
1237 // kotlinc will use the java files to resolve types referenced by the kotlin files, but
1238 // won't emit any classes for them.
Zoran Jovanovic8736ce22018-08-21 17:10:29 +02001239 kotlincFlags = append(kotlincFlags, "-no-stdlib")
Colin Cross93e85952017-08-15 13:34:18 -07001240 if ctx.Device() {
Zoran Jovanovic8736ce22018-08-21 17:10:29 +02001241 kotlincFlags = append(kotlincFlags, "-no-jdk")
1242 }
1243 if len(kotlincFlags) > 0 {
1244 // optimization.
1245 ctx.Variable(pctx, "kotlincFlags", strings.Join(kotlincFlags, " "))
1246 flags.kotlincFlags += "$kotlincFlags"
Colin Cross93e85952017-08-15 13:34:18 -07001247 }
1248
Przemyslaw Szczepaniak4b5fe9d2018-02-13 14:32:54 +00001249 var kotlinSrcFiles android.Paths
1250 kotlinSrcFiles = append(kotlinSrcFiles, uniqueSrcFiles...)
1251 kotlinSrcFiles = append(kotlinSrcFiles, srcFiles.FilterByExt(".kt")...)
1252
patricktu242faad2019-09-24 15:41:30 +08001253 // Collect .kt files for AIDEGen
1254 j.expandIDEInfoCompiledSrcs = append(j.expandIDEInfoCompiledSrcs, srcFiles.FilterByExt(".kt").Strings()...)
1255
Colin Crossafbb1732019-01-17 15:42:52 -08001256 flags.classpath = append(flags.classpath, deps.kotlinStdlib...)
1257 flags.classpath = append(flags.classpath, deps.kotlinAnnotations...)
1258
1259 flags.kotlincClasspath = append(flags.kotlincClasspath, flags.bootClasspath...)
1260 flags.kotlincClasspath = append(flags.kotlincClasspath, flags.classpath...)
1261
1262 if len(flags.processorPath) > 0 {
1263 // Use kapt for annotation processing
1264 kaptSrcJar := android.PathForModuleOut(ctx, "kapt", "kapt-sources.jar")
1265 kotlinKapt(ctx, kaptSrcJar, kotlinSrcFiles, srcJars, flags)
1266 srcJars = append(srcJars, kaptSrcJar)
1267 // Disable annotation processing in javac, it's already been handled by kapt
1268 flags.processorPath = nil
Colin Cross5a116862020-04-22 11:44:34 -07001269 flags.processors = nil
Colin Crossafbb1732019-01-17 15:42:52 -08001270 }
Colin Cross93e85952017-08-15 13:34:18 -07001271
Colin Cross1ee23172017-10-18 14:44:18 -07001272 kotlinJar := android.PathForModuleOut(ctx, "kotlin", jarName)
Colin Cross21fc9bb2019-01-18 15:05:09 -08001273 kotlinCompile(ctx, kotlinJar, kotlinSrcFiles, srcJars, flags)
Colin Cross93e85952017-08-15 13:34:18 -07001274 if ctx.Failed() {
1275 return
1276 }
1277
1278 // Make javac rule depend on the kotlinc rule
1279 flags.classpath = append(flags.classpath, kotlinJar)
Przemyslaw Szczepaniak66c0c402018-03-08 13:21:55 +00001280
Colin Cross93e85952017-08-15 13:34:18 -07001281 // Jar kotlin classes into the final jar after javac
Colin Cross55f63ea2018-08-27 12:37:09 -07001282 kotlinJars = append(kotlinJars, kotlinJar)
Colin Cross9b38aef2018-08-27 15:42:25 -07001283 kotlinJars = append(kotlinJars, deps.kotlinStdlib...)
Colin Cross93e85952017-08-15 13:34:18 -07001284 }
1285
Colin Cross55f63ea2018-08-27 12:37:09 -07001286 jars := append(android.Paths(nil), kotlinJars...)
1287
Colin Cross5ab4e6d2017-11-22 16:20:45 -08001288 // Store the list of .java files that was passed to javac
1289 j.compiledJavaSrcs = uniqueSrcFiles
1290 j.compiledSrcJars = srcJars
1291
Nan Zhang61eaedb2017-11-02 13:28:15 -07001292 enable_sharding := false
Colin Crossf7d84012020-02-21 08:16:41 -08001293 var headerJarFileWithoutJarjar android.Path
Colin Crossbe9cdb82019-01-21 21:37:16 -08001294 if ctx.Device() && !ctx.Config().IsEnvFalse("TURBINE_ENABLED") && !deps.disableTurbine {
Nan Zhang61eaedb2017-11-02 13:28:15 -07001295 if j.properties.Javac_shard_size != nil && *(j.properties.Javac_shard_size) > 0 {
1296 enable_sharding = true
Ashley Rosee36efcf2019-01-16 17:34:08 -05001297 // Formerly, there was a check here that prevented annotation processors
1298 // from being used when sharding was enabled, as some annotation processors
1299 // do not function correctly in sharded environments. It was removed to
1300 // allow for the use of annotation processors that do function correctly
1301 // with sharding enabled. See: b/77284273.
Nan Zhang61eaedb2017-11-02 13:28:15 -07001302 }
Colin Crossf7d84012020-02-21 08:16:41 -08001303 headerJarFileWithoutJarjar, j.headerJarFile =
1304 j.compileJavaHeader(ctx, uniqueSrcFiles, srcJars, deps, flags, jarName, kotlinJars)
Colin Crossf19b9bb2018-03-26 14:42:44 -07001305 if ctx.Failed() {
1306 return
Nan Zhanged19fc32017-10-19 13:06:22 -07001307 }
1308 }
Colin Cross8eadbf02017-10-24 17:46:00 -07001309 if len(uniqueSrcFiles) > 0 || len(srcJars) > 0 {
Colin Crossd6891432017-09-27 17:39:56 -07001310 var extraJarDeps android.Paths
Colin Cross66548102018-06-19 22:47:35 -07001311 if ctx.Config().RunErrorProne() {
Colin Crossc6bbef32017-08-14 14:16:06 -07001312 // If error-prone is enabled, add an additional rule to compile the java files into
1313 // a separate set of classes (so that they don't overwrite the normal ones and require
Colin Crossd6891432017-09-27 17:39:56 -07001314 // a rebuild when error-prone is turned off).
Colin Crossc6bbef32017-08-14 14:16:06 -07001315 // TODO(ccross): Once we always compile with javac9 we may be able to conditionally
1316 // enable error-prone without affecting the output class files.
Colin Cross1ee23172017-10-18 14:44:18 -07001317 errorprone := android.PathForModuleOut(ctx, "errorprone", jarName)
Nan Zhang61eaedb2017-11-02 13:28:15 -07001318 RunErrorProne(ctx, errorprone, uniqueSrcFiles, srcJars, flags)
Colin Crossc6bbef32017-08-14 14:16:06 -07001319 extraJarDeps = append(extraJarDeps, errorprone)
1320 }
1321
Nan Zhang61eaedb2017-11-02 13:28:15 -07001322 if enable_sharding {
Colin Crossf7d84012020-02-21 08:16:41 -08001323 flags.classpath = append(flags.classpath, headerJarFileWithoutJarjar)
Nan Zhang61eaedb2017-11-02 13:28:15 -07001324 shardSize := int(*(j.properties.Javac_shard_size))
1325 var shardSrcs []android.Paths
1326 if len(uniqueSrcFiles) > 0 {
Colin Cross0a2f7192019-09-23 14:33:09 -07001327 shardSrcs = android.ShardPaths(uniqueSrcFiles, shardSize)
Nan Zhang61eaedb2017-11-02 13:28:15 -07001328 for idx, shardSrc := range shardSrcs {
Colin Cross3b706fd2019-09-05 16:44:18 -07001329 classes := j.compileJavaClasses(ctx, jarName, idx, shardSrc,
1330 nil, flags, extraJarDeps)
Nan Zhang61eaedb2017-11-02 13:28:15 -07001331 jars = append(jars, classes)
1332 }
1333 }
1334 if len(srcJars) > 0 {
Colin Cross3b706fd2019-09-05 16:44:18 -07001335 classes := j.compileJavaClasses(ctx, jarName, len(shardSrcs),
1336 nil, srcJars, flags, extraJarDeps)
Nan Zhang61eaedb2017-11-02 13:28:15 -07001337 jars = append(jars, classes)
1338 }
1339 } else {
Colin Cross3b706fd2019-09-05 16:44:18 -07001340 classes := j.compileJavaClasses(ctx, jarName, -1, uniqueSrcFiles, srcJars, flags, extraJarDeps)
Nan Zhang61eaedb2017-11-02 13:28:15 -07001341 jars = append(jars, classes)
1342 }
Colin Crossd6891432017-09-27 17:39:56 -07001343 if ctx.Failed() {
1344 return
1345 }
Colin Cross2fe66872015-03-30 17:20:39 -07001346 }
1347
Colin Cross0c4ce212019-05-03 15:28:19 -07001348 j.srcJarArgs, j.srcJarDeps = resourcePathsToJarArgs(srcFiles), srcFiles
1349
1350 var includeSrcJar android.WritablePath
1351 if Bool(j.properties.Include_srcs) {
1352 includeSrcJar = android.PathForModuleOut(ctx, ctx.ModuleName()+".srcjar")
1353 TransformResourcesToJar(ctx, includeSrcJar, j.srcJarArgs, j.srcJarDeps)
1354 }
1355
Colin Crosscedd4762018-09-13 11:26:19 -07001356 dirArgs, dirDeps := ResourceDirsToJarArgs(ctx, j.properties.Java_resource_dirs,
1357 j.properties.Exclude_java_resource_dirs, j.properties.Exclude_java_resources)
Colin Cross0f37af02017-09-27 17:42:05 -07001358 fileArgs, fileDeps := ResourceFilesToJarArgs(ctx, j.properties.Java_resources, j.properties.Exclude_java_resources)
Colin Cross988708c2019-05-06 14:04:11 -07001359 extraArgs, extraDeps := resourcePathsToJarArgs(j.extraResources), j.extraResources
Colin Cross0f37af02017-09-27 17:42:05 -07001360
1361 var resArgs []string
1362 var resDeps android.Paths
1363
1364 resArgs = append(resArgs, dirArgs...)
1365 resDeps = append(resDeps, dirDeps...)
1366
1367 resArgs = append(resArgs, fileArgs...)
1368 resDeps = append(resDeps, fileDeps...)
1369
Colin Cross988708c2019-05-06 14:04:11 -07001370 resArgs = append(resArgs, extraArgs...)
1371 resDeps = append(resDeps, extraDeps...)
1372
Colin Cross40a36712017-09-27 17:41:35 -07001373 if len(resArgs) > 0 {
Colin Cross1ee23172017-10-18 14:44:18 -07001374 resourceJar := android.PathForModuleOut(ctx, "res", jarName)
Colin Crosse9a275b2017-10-16 17:09:48 -07001375 TransformResourcesToJar(ctx, resourceJar, resArgs, resDeps)
Colin Cross331a1212018-08-15 20:40:52 -07001376 j.resourceJar = resourceJar
Colin Cross65bf4f22015-04-03 16:54:17 -07001377 if ctx.Failed() {
1378 return
1379 }
1380 }
1381
Colin Cross0c4ce212019-05-03 15:28:19 -07001382 var resourceJars android.Paths
1383 if j.resourceJar != nil {
1384 resourceJars = append(resourceJars, j.resourceJar)
1385 }
1386 if Bool(j.properties.Include_srcs) {
1387 resourceJars = append(resourceJars, includeSrcJar)
1388 }
1389 resourceJars = append(resourceJars, deps.staticResourceJars...)
Colin Cross331a1212018-08-15 20:40:52 -07001390
Colin Cross0c4ce212019-05-03 15:28:19 -07001391 if len(resourceJars) > 1 {
Colin Cross331a1212018-08-15 20:40:52 -07001392 combinedJar := android.PathForModuleOut(ctx, "res-combined", jarName)
Colin Cross0c4ce212019-05-03 15:28:19 -07001393 TransformJarsToJar(ctx, combinedJar, "for resources", resourceJars, android.OptionalPath{},
Colin Cross331a1212018-08-15 20:40:52 -07001394 false, nil, nil)
1395 j.resourceJar = combinedJar
Colin Cross0c4ce212019-05-03 15:28:19 -07001396 } else if len(resourceJars) == 1 {
1397 j.resourceJar = resourceJars[0]
Colin Cross331a1212018-08-15 20:40:52 -07001398 }
1399
Jaewoong Junga24af3b2019-05-13 09:23:20 -07001400 if len(deps.staticJars) > 0 {
1401 jars = append(jars, deps.staticJars...)
Jaewoong Junga24af3b2019-05-13 09:23:20 -07001402 }
Colin Cross0a6e0072017-08-30 14:24:55 -07001403
Colin Cross094054a2018-10-17 15:10:48 -07001404 manifest := j.overrideManifest
1405 if !manifest.Valid() && j.properties.Manifest != nil {
Colin Cross8a497952019-03-05 22:25:09 -08001406 manifest = android.OptionalPathForPath(android.PathForModuleSrc(ctx, *j.properties.Manifest))
Colin Cross366938f2017-12-11 16:29:02 -08001407 }
Colin Cross635acc92017-09-12 22:50:46 -07001408
Colin Cross8a497952019-03-05 22:25:09 -08001409 services := android.PathsForModuleSrc(ctx, j.properties.Services)
Alex Light7f004a72019-02-21 13:27:37 -08001410 if len(services) > 0 {
1411 servicesJar := android.PathForModuleOut(ctx, "services", jarName)
1412 var zipargs []string
1413 for _, file := range services {
1414 serviceFile := file.String()
1415 zipargs = append(zipargs, "-C", filepath.Dir(serviceFile), "-f", serviceFile)
1416 }
1417 ctx.Build(pctx, android.BuildParams{
1418 Rule: zip,
1419 Output: servicesJar,
1420 Implicits: services,
1421 Args: map[string]string{
Colin Cross0b9f31f2019-02-28 11:00:01 -08001422 "jarArgs": "-P META-INF/services/ " + strings.Join(proptools.NinjaAndShellEscapeList(zipargs), " "),
Alex Light7f004a72019-02-21 13:27:37 -08001423 },
1424 })
1425 jars = append(jars, servicesJar)
1426 }
1427
Colin Cross0a6e0072017-08-30 14:24:55 -07001428 // Combine the classes built from sources, any manifests, and any static libraries into
Nan Zhanged19fc32017-10-19 13:06:22 -07001429 // classes.jar. If there is only one input jar this step will be skipped.
Colin Cross3063b782018-08-15 11:19:12 -07001430 var outputFile android.ModuleOutPath
Colin Crosse9a275b2017-10-16 17:09:48 -07001431
1432 if len(jars) == 1 && !manifest.Valid() {
Colin Cross3063b782018-08-15 11:19:12 -07001433 if moduleOutPath, ok := jars[0].(android.ModuleOutPath); ok {
1434 // Optimization: skip the combine step if there is nothing to do
1435 // TODO(ccross): this leaves any module-info.class files, but those should only come from
1436 // prebuilt dependencies until we support modules in the platform build, so there shouldn't be
1437 // any if len(jars) == 1.
1438 outputFile = moduleOutPath
1439 } else {
1440 combinedJar := android.PathForModuleOut(ctx, "combined", jarName)
1441 ctx.Build(pctx, android.BuildParams{
1442 Rule: android.Cp,
1443 Input: jars[0],
1444 Output: combinedJar,
1445 })
1446 outputFile = combinedJar
1447 }
Colin Crosse9a275b2017-10-16 17:09:48 -07001448 } else {
Colin Cross1ee23172017-10-18 14:44:18 -07001449 combinedJar := android.PathForModuleOut(ctx, "combined", jarName)
Colin Cross37f6d792018-07-12 12:28:41 -07001450 TransformJarsToJar(ctx, combinedJar, "for javac", jars, manifest,
Colin Cross9b38aef2018-08-27 15:42:25 -07001451 false, nil, nil)
Colin Crosse9a275b2017-10-16 17:09:48 -07001452 outputFile = combinedJar
1453 }
Colin Cross0a6e0072017-08-30 14:24:55 -07001454
Colin Cross331a1212018-08-15 20:40:52 -07001455 // jarjar implementation jar if necessary
Steven Morelandc4efd9c2019-01-18 11:51:25 -08001456 if j.expandJarjarRules != nil {
Colin Cross8649b262017-09-27 18:03:17 -07001457 // Transform classes.jar into classes-jarjar.jar
Colin Cross1ee23172017-10-18 14:44:18 -07001458 jarjarFile := android.PathForModuleOut(ctx, "jarjar", jarName)
Steven Morelandc4efd9c2019-01-18 11:51:25 -08001459 TransformJarJar(ctx, jarjarFile, outputFile, j.expandJarjarRules)
Colin Crosse9a275b2017-10-16 17:09:48 -07001460 outputFile = jarjarFile
Colin Cross331a1212018-08-15 20:40:52 -07001461
1462 // jarjar resource jar if necessary
1463 if j.resourceJar != nil {
1464 resourceJarJarFile := android.PathForModuleOut(ctx, "res-jarjar", jarName)
Steven Morelandc4efd9c2019-01-18 11:51:25 -08001465 TransformJarJar(ctx, resourceJarJarFile, j.resourceJar, j.expandJarjarRules)
Colin Cross331a1212018-08-15 20:40:52 -07001466 j.resourceJar = resourceJarJarFile
1467 }
1468
Colin Cross0a6e0072017-08-30 14:24:55 -07001469 if ctx.Failed() {
1470 return
1471 }
1472 }
Vladimir Marko0975ee02019-04-02 10:29:55 +01001473
1474 // Check package restrictions if necessary.
1475 if len(j.properties.Permitted_packages) > 0 {
1476 // Check packages and copy to package-checked file.
1477 pkgckFile := android.PathForModuleOut(ctx, "package-check.stamp")
1478 CheckJarPackages(ctx, pkgckFile, outputFile, j.properties.Permitted_packages)
1479 j.additionalCheckedModules = append(j.additionalCheckedModules, pkgckFile)
1480
1481 if ctx.Failed() {
1482 return
1483 }
1484 }
1485
Nan Zhanged19fc32017-10-19 13:06:22 -07001486 j.implementationJarFile = outputFile
1487 if j.headerJarFile == nil {
1488 j.headerJarFile = j.implementationJarFile
1489 }
Colin Cross2fe66872015-03-30 17:20:39 -07001490
Jiyong Park93e57a02020-02-21 16:04:53 +09001491 // Force enable the instrumentation for java code that is built for APEXes ...
1492 // except for the jacocoagent itself (because instrumenting jacocoagent using jacocoagent
1493 // doesn't make sense)
1494 isJacocoAgent := ctx.ModuleName() == "jacocoagent"
1495 if android.DirectlyInAnyApex(ctx, ctx.ModuleName()) && !isJacocoAgent && !j.IsForPlatform() {
Jiyong Park00cae1c2020-02-18 12:50:44 +00001496 j.properties.Instrument = true
1497 }
1498
Colin Cross3144dfc2018-01-03 15:06:47 -08001499 if j.shouldInstrument(ctx) {
Colin Crosscb933592017-11-22 13:49:43 -08001500 outputFile = j.instrument(ctx, flags, outputFile, jarName)
1501 }
1502
Colin Cross331a1212018-08-15 20:40:52 -07001503 // merge implementation jar with resources if necessary
1504 implementationAndResourcesJar := outputFile
1505 if j.resourceJar != nil {
Colin Cross08a409d2019-04-29 10:22:44 -07001506 jars := android.Paths{j.resourceJar, implementationAndResourcesJar}
Colin Cross331a1212018-08-15 20:40:52 -07001507 combinedJar := android.PathForModuleOut(ctx, "withres", jarName)
Colin Cross08a409d2019-04-29 10:22:44 -07001508 TransformJarsToJar(ctx, combinedJar, "for resources", jars, manifest,
Colin Cross331a1212018-08-15 20:40:52 -07001509 false, nil, nil)
1510 implementationAndResourcesJar = combinedJar
1511 }
1512
1513 j.implementationAndResourcesJar = implementationAndResourcesJar
1514
Jiyong Park6b21c7d2020-02-11 09:16:01 +09001515 // Enable dex compilation for the APEX variants, unless it is disabled explicitly
1516 if android.DirectlyInAnyApex(ctx, ctx.ModuleName()) && !j.IsForPlatform() {
1517 if j.deviceProperties.Compile_dex == nil {
1518 j.deviceProperties.Compile_dex = proptools.BoolPtr(true)
1519 }
1520 if j.deviceProperties.Hostdex == nil {
1521 j.deviceProperties.Hostdex = proptools.BoolPtr(true)
1522 }
1523 }
1524
Jaewoong Jungc27ab662019-05-30 15:51:14 -07001525 if ctx.Device() && j.hasCode(ctx) &&
Jaewoong Junga24af3b2019-05-13 09:23:20 -07001526 (Bool(j.properties.Installable) || Bool(j.deviceProperties.Compile_dex)) {
Colin Cross8faf8fc2019-01-16 15:15:52 -08001527 // Dex compilation
Colin Cross3063b782018-08-15 11:19:12 -07001528 var dexOutputFile android.ModuleOutPath
David Brazdil17ef5632018-06-27 10:27:45 +01001529 dexOutputFile = j.compileDex(ctx, flags, outputFile, jarName)
Colin Cross2fe66872015-03-30 17:20:39 -07001530 if ctx.Failed() {
1531 return
1532 }
Colin Cross331a1212018-08-15 20:40:52 -07001533
Jiyong Park09cb6292019-07-15 15:29:23 +09001534 // Hidden API CSV generation and dex encoding
1535 dexOutputFile = j.hiddenAPI.hiddenAPI(ctx, dexOutputFile, j.implementationJarFile,
1536 j.deviceProperties.UncompressDex)
Colin Cross8faf8fc2019-01-16 15:15:52 -08001537
Colin Cross331a1212018-08-15 20:40:52 -07001538 // merge dex jar with resources if necessary
1539 if j.resourceJar != nil {
1540 jars := android.Paths{dexOutputFile, j.resourceJar}
1541 combinedJar := android.PathForModuleOut(ctx, "dex-withres", jarName)
1542 TransformJarsToJar(ctx, combinedJar, "for dex resources", jars, android.OptionalPath{},
1543 false, nil, nil)
Nicolas Geoffrayf3438722019-01-23 15:57:21 +00001544 if j.deviceProperties.UncompressDex {
1545 combinedAlignedJar := android.PathForModuleOut(ctx, "dex-withres-aligned", jarName)
1546 TransformZipAlign(ctx, combinedAlignedJar, combinedJar)
1547 dexOutputFile = combinedAlignedJar
1548 } else {
1549 dexOutputFile = combinedJar
1550 }
Colin Cross331a1212018-08-15 20:40:52 -07001551 }
1552
1553 j.dexJarFile = dexOutputFile
1554
Colin Cross8faf8fc2019-01-16 15:15:52 -08001555 // Dexpreopting
Colin Cross43f08db2018-11-12 10:13:39 -08001556 dexOutputFile = j.dexpreopt(ctx, dexOutputFile)
1557
1558 j.maybeStrippedDexJarFile = dexOutputFile
1559
Colin Cross3063b782018-08-15 11:19:12 -07001560 outputFile = dexOutputFile
Colin Cross43f08db2018-11-12 10:13:39 -08001561
1562 if ctx.Failed() {
1563 return
1564 }
Colin Cross331a1212018-08-15 20:40:52 -07001565 } else {
1566 outputFile = implementationAndResourcesJar
Colin Cross2fe66872015-03-30 17:20:39 -07001567 }
Colin Cross331a1212018-08-15 20:40:52 -07001568
Colin Crossb7a63242015-04-16 14:09:14 -07001569 ctx.CheckbuildFile(outputFile)
Colin Cross3063b782018-08-15 11:19:12 -07001570
1571 // Save the output file with no relative path so that it doesn't end up in a subdirectory when used as a resource
1572 j.outputFile = outputFile.WithoutRel()
Colin Cross2fe66872015-03-30 17:20:39 -07001573}
1574
Colin Cross3b706fd2019-09-05 16:44:18 -07001575func (j *Module) compileJavaClasses(ctx android.ModuleContext, jarName string, idx int,
1576 srcFiles, srcJars android.Paths, flags javaBuilderFlags, extraJarDeps android.Paths) android.WritablePath {
1577
1578 kzipName := pathtools.ReplaceExtension(jarName, "kzip")
1579 if idx >= 0 {
1580 kzipName = strings.TrimSuffix(jarName, filepath.Ext(jarName)) + strconv.Itoa(idx) + ".kzip"
1581 jarName += strconv.Itoa(idx)
1582 }
1583
1584 classes := android.PathForModuleOut(ctx, "javac", jarName)
1585 TransformJavaToClasses(ctx, classes, idx, srcFiles, srcJars, flags, extraJarDeps)
1586
1587 if ctx.Config().EmitXrefRules() {
1588 extractionFile := android.PathForModuleOut(ctx, kzipName)
1589 emitXrefRule(ctx, extractionFile, idx, srcFiles, srcJars, flags, extraJarDeps)
1590 j.kytheFiles = append(j.kytheFiles, extractionFile)
1591 }
1592
1593 return classes
1594}
1595
Zoran Jovanovic8736ce22018-08-21 17:10:29 +02001596// Check for invalid kotlinc flags. Only use this for flags explicitly passed by the user,
1597// since some of these flags may be used internally.
1598func CheckKotlincFlags(ctx android.ModuleContext, flags []string) {
1599 for _, flag := range flags {
1600 flag = strings.TrimSpace(flag)
1601
1602 if !strings.HasPrefix(flag, "-") {
1603 ctx.PropertyErrorf("kotlincflags", "Flag `%s` must start with `-`", flag)
1604 } else if strings.HasPrefix(flag, "-Xintellij-plugin-root") {
1605 ctx.PropertyErrorf("kotlincflags",
1606 "Bad flag: `%s`, only use internal compiler for consistency.", flag)
1607 } else if inList(flag, config.KotlincIllegalFlags) {
1608 ctx.PropertyErrorf("kotlincflags", "Flag `%s` already used by build system", flag)
1609 } else if flag == "-include-runtime" {
1610 ctx.PropertyErrorf("kotlincflags", "Bad flag: `%s`, do not include runtime.", flag)
1611 } else {
1612 args := strings.Split(flag, " ")
1613 if args[0] == "-kotlin-home" {
1614 ctx.PropertyErrorf("kotlincflags",
1615 "Bad flag: `%s`, kotlin home already set to default (path to kotlinc in the repo).", flag)
1616 }
1617 }
1618 }
1619}
1620
Colin Cross8eadbf02017-10-24 17:46:00 -07001621func (j *Module) compileJavaHeader(ctx android.ModuleContext, srcFiles, srcJars android.Paths,
Colin Crossf7d84012020-02-21 08:16:41 -08001622 deps deps, flags javaBuilderFlags, jarName string,
1623 extraJars android.Paths) (headerJar, jarjarHeaderJar android.Path) {
Nan Zhanged19fc32017-10-19 13:06:22 -07001624
1625 var jars android.Paths
Colin Cross8eadbf02017-10-24 17:46:00 -07001626 if len(srcFiles) > 0 || len(srcJars) > 0 {
Nan Zhanged19fc32017-10-19 13:06:22 -07001627 // Compile java sources into turbine.jar.
1628 turbineJar := android.PathForModuleOut(ctx, "turbine", jarName)
1629 TransformJavaToHeaderClasses(ctx, turbineJar, srcFiles, srcJars, flags)
1630 if ctx.Failed() {
Colin Crossf7d84012020-02-21 08:16:41 -08001631 return nil, nil
Nan Zhanged19fc32017-10-19 13:06:22 -07001632 }
1633 jars = append(jars, turbineJar)
1634 }
1635
Colin Cross55f63ea2018-08-27 12:37:09 -07001636 jars = append(jars, extraJars...)
1637
Nan Zhanged19fc32017-10-19 13:06:22 -07001638 // Combine any static header libraries into classes-header.jar. If there is only
1639 // one input jar this step will be skipped.
Nan Zhanged19fc32017-10-19 13:06:22 -07001640 jars = append(jars, deps.staticHeaderJars...)
1641
Colin Cross5c6ecc12017-10-23 18:12:27 -07001642 // we cannot skip the combine step for now if there is only one jar
1643 // since we have to strip META-INF/TRANSITIVE dir from turbine.jar
1644 combinedJar := android.PathForModuleOut(ctx, "turbine-combined", jarName)
Colin Cross37f6d792018-07-12 12:28:41 -07001645 TransformJarsToJar(ctx, combinedJar, "for turbine", jars, android.OptionalPath{},
Colin Cross6c6e6cd2019-05-08 14:30:12 -07001646 false, nil, []string{"META-INF/TRANSITIVE"})
Colin Cross5c6ecc12017-10-23 18:12:27 -07001647 headerJar = combinedJar
Colin Crossf7d84012020-02-21 08:16:41 -08001648 jarjarHeaderJar = combinedJar
Nan Zhanged19fc32017-10-19 13:06:22 -07001649
Steven Morelandc4efd9c2019-01-18 11:51:25 -08001650 if j.expandJarjarRules != nil {
Nan Zhanged19fc32017-10-19 13:06:22 -07001651 // Transform classes.jar into classes-jarjar.jar
1652 jarjarFile := android.PathForModuleOut(ctx, "turbine-jarjar", jarName)
Steven Morelandc4efd9c2019-01-18 11:51:25 -08001653 TransformJarJar(ctx, jarjarFile, headerJar, j.expandJarjarRules)
Colin Crossf7d84012020-02-21 08:16:41 -08001654 jarjarHeaderJar = jarjarFile
Nan Zhanged19fc32017-10-19 13:06:22 -07001655 if ctx.Failed() {
Colin Crossf7d84012020-02-21 08:16:41 -08001656 return nil, nil
Nan Zhanged19fc32017-10-19 13:06:22 -07001657 }
1658 }
1659
Colin Crossf7d84012020-02-21 08:16:41 -08001660 return headerJar, jarjarHeaderJar
Nan Zhanged19fc32017-10-19 13:06:22 -07001661}
1662
Colin Crosscb933592017-11-22 13:49:43 -08001663func (j *Module) instrument(ctx android.ModuleContext, flags javaBuilderFlags,
Colin Cross3063b782018-08-15 11:19:12 -07001664 classesJar android.Path, jarName string) android.ModuleOutPath {
Colin Crosscb933592017-11-22 13:49:43 -08001665
Colin Cross7a3139e2017-12-19 13:57:50 -08001666 specs := j.jacocoModuleToZipCommand(ctx)
Colin Crosscb933592017-11-22 13:49:43 -08001667
Colin Cross84c38822018-01-03 15:59:46 -08001668 jacocoReportClassesFile := android.PathForModuleOut(ctx, "jacoco-report-classes", jarName)
Colin Crosscb933592017-11-22 13:49:43 -08001669 instrumentedJar := android.PathForModuleOut(ctx, "jacoco", jarName)
1670
1671 jacocoInstrumentJar(ctx, instrumentedJar, jacocoReportClassesFile, classesJar, specs)
1672
1673 j.jacocoReportClassesFile = jacocoReportClassesFile
1674
1675 return instrumentedJar
1676}
1677
albaltai36ff7dc2018-12-25 14:35:23 +08001678var _ Dependency = (*Module)(nil)
Colin Cross2fe66872015-03-30 17:20:39 -07001679
Nan Zhanged19fc32017-10-19 13:06:22 -07001680func (j *Module) HeaderJars() android.Paths {
albaltai36ff7dc2018-12-25 14:35:23 +08001681 if j.headerJarFile == nil {
1682 return nil
1683 }
Nan Zhanged19fc32017-10-19 13:06:22 -07001684 return android.Paths{j.headerJarFile}
1685}
1686
1687func (j *Module) ImplementationJars() android.Paths {
shinwang9e4c07a2018-12-24 15:41:04 +08001688 if j.implementationJarFile == nil {
1689 return nil
1690 }
Nan Zhanged19fc32017-10-19 13:06:22 -07001691 return android.Paths{j.implementationJarFile}
Colin Cross2fe66872015-03-30 17:20:39 -07001692}
1693
Colin Crossf24a22a2019-01-31 14:12:44 -08001694func (j *Module) DexJar() android.Path {
1695 return j.dexJarFile
1696}
1697
Colin Cross331a1212018-08-15 20:40:52 -07001698func (j *Module) ResourceJars() android.Paths {
1699 if j.resourceJar == nil {
1700 return nil
1701 }
1702 return android.Paths{j.resourceJar}
1703}
1704
1705func (j *Module) ImplementationAndResourcesJars() android.Paths {
albaltai36ff7dc2018-12-25 14:35:23 +08001706 if j.implementationAndResourcesJar == nil {
1707 return nil
1708 }
Colin Cross331a1212018-08-15 20:40:52 -07001709 return android.Paths{j.implementationAndResourcesJar}
1710}
1711
Colin Cross46c9b8b2017-06-22 16:51:17 -07001712func (j *Module) AidlIncludeDirs() android.Paths {
albaltai36ff7dc2018-12-25 14:35:23 +08001713 // exportAidlIncludeDirs is type android.Paths already
Colin Crossc0b06f12015-04-08 13:03:43 -07001714 return j.exportAidlIncludeDirs
1715}
1716
Jiyong Park1be96912018-05-28 18:02:19 +09001717func (j *Module) ExportedSdkLibs() []string {
albaltai36ff7dc2018-12-25 14:35:23 +08001718 // exportedSdkLibs is type []string
Jiyong Park1be96912018-05-28 18:02:19 +09001719 return j.exportedSdkLibs
1720}
1721
Artur Satayev9cf46692019-11-26 18:08:34 +00001722func (j *Module) ExportedPlugins() (android.Paths, []string) {
1723 return j.exportedPluginJars, j.exportedPluginClasses
1724}
1725
Colin Cross0c4ce212019-05-03 15:28:19 -07001726func (j *Module) SrcJarArgs() ([]string, android.Paths) {
1727 return j.srcJarArgs, j.srcJarDeps
1728}
1729
Colin Cross46c9b8b2017-06-22 16:51:17 -07001730var _ logtagsProducer = (*Module)(nil)
Colin Crossf05fe972015-04-10 17:45:20 -07001731
Colin Cross46c9b8b2017-06-22 16:51:17 -07001732func (j *Module) logtags() android.Paths {
Colin Crossf05fe972015-04-10 17:45:20 -07001733 return j.logtagsSrcs
1734}
1735
Brandon Lee5d45c6f2018-08-15 15:35:38 -07001736// Collect information for opening IDE project files in java/jdeps.go.
1737func (j *Module) IDEInfo(dpInfo *android.IdeInfo) {
1738 dpInfo.Deps = append(dpInfo.Deps, j.CompilerDeps()...)
1739 dpInfo.Srcs = append(dpInfo.Srcs, j.expandIDEInfoCompiledSrcs...)
patricktu18c82ff2019-05-10 15:48:50 +08001740 dpInfo.SrcJars = append(dpInfo.SrcJars, j.compiledSrcJars.Strings()...)
Brandon Lee5d45c6f2018-08-15 15:35:38 -07001741 dpInfo.Aidl_include_dirs = append(dpInfo.Aidl_include_dirs, j.deviceProperties.Aidl.Include_dirs...)
Steven Morelandc4efd9c2019-01-18 11:51:25 -08001742 if j.expandJarjarRules != nil {
1743 dpInfo.Jarjar_rules = append(dpInfo.Jarjar_rules, j.expandJarjarRules.String())
Brandon Lee5d45c6f2018-08-15 15:35:38 -07001744 }
1745}
1746
1747func (j *Module) CompilerDeps() []string {
1748 jdeps := []string{}
1749 jdeps = append(jdeps, j.properties.Libs...)
1750 jdeps = append(jdeps, j.properties.Static_libs...)
1751 return jdeps
1752}
1753
Jaewoong Jungc27ab662019-05-30 15:51:14 -07001754func (j *Module) hasCode(ctx android.ModuleContext) bool {
1755 srcFiles := android.PathsForModuleSrcExcludes(ctx, j.properties.Srcs, j.properties.Exclude_srcs)
1756 return len(srcFiles) > 0 || len(ctx.GetDirectDepsWithTag(staticLibTag)) > 0
1757}
1758
Jiyong Parka7bc8ad2019-10-15 15:20:07 +09001759func (j *Module) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
Jiyong Park0f80c182020-01-31 02:49:53 +09001760 // Dependencies other than the static linkage are all considered crossing APEX boundary
Jooyung Han5e9013b2020-03-10 06:23:13 +09001761 if staticLibTag == ctx.OtherModuleDependencyTag(dep) {
1762 return true
1763 }
Jooyung Han5e9013b2020-03-10 06:23:13 +09001764 return false
Jiyong Parka7bc8ad2019-10-15 15:20:07 +09001765}
1766
Jiyong Park0b238752019-10-29 11:23:10 +09001767func (j *Module) Stem() string {
1768 return proptools.StringDefault(j.deviceProperties.Stem, j.Name())
1769}
1770
Jiyong Park618922e2020-01-08 13:35:43 +09001771func (j *Module) JacocoReportClassesFile() android.Path {
1772 return j.jacocoReportClassesFile
1773}
1774
Martin Stjernholm6d415272020-01-31 17:10:36 +00001775func (j *Module) IsInstallable() bool {
1776 return Bool(j.properties.Installable)
1777}
1778
Colin Cross2fe66872015-03-30 17:20:39 -07001779//
1780// Java libraries (.jar file)
1781//
1782
Anton Hansson78156ef2020-03-27 19:39:48 +00001783type LibraryProperties struct {
1784 Dist struct {
1785 // The tag of the output of this module that should be output.
1786 Tag *string `android:"arch_variant"`
1787 } `android:"arch_variant"`
1788}
1789
Colin Crossf506d872017-07-19 15:53:04 -07001790type Library struct {
Colin Cross46c9b8b2017-06-22 16:51:17 -07001791 Module
Colin Crossf0f2e2c2019-10-15 16:36:40 -07001792
Anton Hansson78156ef2020-03-27 19:39:48 +00001793 libraryProperties LibraryProperties
1794
Colin Crossf0f2e2c2019-10-15 16:36:40 -07001795 InstallMixin func(ctx android.ModuleContext, installPath android.Path) (extraInstallDeps android.Paths)
Colin Cross2fe66872015-03-30 17:20:39 -07001796}
1797
Colin Cross42be7612019-02-21 18:12:14 -08001798func shouldUncompressDex(ctx android.ModuleContext, dexpreopter *dexpreopter) bool {
Ulya Trafimovichf491dde2020-01-24 12:19:45 +00001799 // Store uncompressed (and aligned) any dex files from jars in APEXes.
1800 if am, ok := ctx.Module().(android.ApexModule); ok && !am.IsForPlatform() {
1801 return true
1802 }
1803
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +00001804 // Store uncompressed (and do not strip) dex files from boot class path jars.
1805 if inList(ctx.ModuleName(), ctx.Config().BootJars()) {
1806 return true
1807 }
1808
1809 // Store uncompressed dex files that are preopted on /system.
Colin Cross42be7612019-02-21 18:12:14 -08001810 if !dexpreopter.dexpreoptDisabled(ctx) && (ctx.Host() || !odexOnSystemOther(ctx, dexpreopter.installPath)) {
Vladimir Markoe8b00d62018-12-21 15:54:16 +00001811 return true
1812 }
Colin Cross083a2aa2019-02-06 16:37:12 -08001813 if ctx.Config().UncompressPrivAppDex() &&
1814 inList(ctx.ModuleName(), ctx.Config().ModulesLoadedByPrivilegedModules()) {
1815 return true
1816 }
1817
Colin Cross2fc72f62018-12-21 12:59:54 -08001818 return false
1819}
1820
Colin Crossf506d872017-07-19 15:53:04 -07001821func (j *Library) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Jeongik Cha2cc570d2019-10-29 15:44:45 +09001822 j.checkSdkVersion(ctx)
Jiyong Park0b238752019-10-29 11:23:10 +09001823 j.dexpreopter.installPath = android.PathForModuleInstall(ctx, "framework", j.Stem()+".jar")
Colin Cross43f08db2018-11-12 10:13:39 -08001824 j.dexpreopter.isSDKLibrary = j.deviceProperties.IsSDKLibrary
Colin Cross42be7612019-02-21 18:12:14 -08001825 j.dexpreopter.uncompressedDex = shouldUncompressDex(ctx, &j.dexpreopter)
Nicolas Geoffrayfa6e9ec2019-02-12 13:12:16 +00001826 j.deviceProperties.UncompressDex = j.dexpreopter.uncompressedDex
Jaewoong Junga24af3b2019-05-13 09:23:20 -07001827 j.compile(ctx, nil)
Colin Crossb7a63242015-04-16 14:09:14 -07001828
Jiyong Park7f7766d2019-07-25 22:02:35 +09001829 exclusivelyForApex := android.InAnyApex(ctx.ModuleName()) && !j.IsForPlatform()
1830 if (Bool(j.properties.Installable) || ctx.Host()) && !exclusivelyForApex {
Colin Crossf0f2e2c2019-10-15 16:36:40 -07001831 var extraInstallDeps android.Paths
1832 if j.InstallMixin != nil {
1833 extraInstallDeps = j.InstallMixin(ctx, j.outputFile)
1834 }
Colin Cross2c429dc2017-08-31 16:45:16 -07001835 j.installFile = ctx.InstallFile(android.PathForModuleInstall(ctx, "framework"),
Colin Crossf0f2e2c2019-10-15 16:36:40 -07001836 ctx.ModuleName()+".jar", j.outputFile, extraInstallDeps...)
Colin Cross2c429dc2017-08-31 16:45:16 -07001837 }
Anton Hansson78156ef2020-03-27 19:39:48 +00001838
1839 // Verify Dist.Tag is set to a supported output
1840 if j.libraryProperties.Dist.Tag != nil {
1841 distFiles, err := j.OutputFiles(*j.libraryProperties.Dist.Tag)
1842 if err != nil {
1843 ctx.PropertyErrorf("dist.tag", "%s", err.Error())
1844 }
1845 j.distFile = distFiles[0]
1846 }
Colin Crossb7a63242015-04-16 14:09:14 -07001847}
1848
Colin Crossf506d872017-07-19 15:53:04 -07001849func (j *Library) DepsMutator(ctx android.BottomUpMutatorContext) {
Colin Cross46c9b8b2017-06-22 16:51:17 -07001850 j.deps(ctx)
1851}
1852
Paul Duffin0e0cf1d2019-11-12 19:39:25 +00001853const (
Paul Duffin1b82e6a2019-12-03 18:06:47 +00001854 aidlIncludeDir = "aidl"
1855 javaDir = "java"
1856 jarFileSuffix = ".jar"
1857 testConfigSuffix = "-AndroidTest.xml"
Paul Duffin0e0cf1d2019-11-12 19:39:25 +00001858)
1859
Paul Duffina0dbf432019-12-05 11:25:53 +00001860// path to the jar file of a java library. Relative to <sdk_root>/<api_dir>
Paul Duffina04c1072020-03-02 10:16:35 +00001861func sdkSnapshotFilePathForJar(osPrefix, name string) string {
1862 return sdkSnapshotFilePathForMember(osPrefix, name, jarFileSuffix)
Paul Duffin1b82e6a2019-12-03 18:06:47 +00001863}
1864
Paul Duffina04c1072020-03-02 10:16:35 +00001865func sdkSnapshotFilePathForMember(osPrefix, name string, suffix string) string {
1866 return filepath.Join(javaDir, osPrefix, name+suffix)
Paul Duffin0e0cf1d2019-11-12 19:39:25 +00001867}
1868
Paul Duffin13879572019-11-28 14:31:38 +00001869type librarySdkMemberType struct {
Paul Duffin255f18e2019-12-13 11:22:16 +00001870 android.SdkMemberTypeBase
Paul Duffinf5c0a9c2020-02-28 14:39:53 +00001871
1872 // Function to retrieve the appropriate output jar (implementation or header) from
1873 // the library.
1874 jarToExportGetter func(j *Library) android.Path
Paul Duffin13879572019-11-28 14:31:38 +00001875}
1876
1877func (mt *librarySdkMemberType) AddDependencies(mctx android.BottomUpMutatorContext, dependencyTag blueprint.DependencyTag, names []string) {
1878 mctx.AddVariationDependencies(nil, dependencyTag, names...)
1879}
1880
1881func (mt *librarySdkMemberType) IsInstance(module android.Module) bool {
1882 _, ok := module.(*Library)
1883 return ok
1884}
1885
Paul Duffin3a4eb502020-03-19 16:11:18 +00001886func (mt *librarySdkMemberType) AddPrebuiltModule(ctx android.SdkMemberContext, member android.SdkMember) android.BpModule {
1887 return ctx.SnapshotBuilder().AddPrebuiltModule(member, "java_import")
Paul Duffin14eb4672020-03-02 11:33:02 +00001888}
Paul Duffina0dbf432019-12-05 11:25:53 +00001889
Paul Duffin14eb4672020-03-02 11:33:02 +00001890func (mt *librarySdkMemberType) CreateVariantPropertiesStruct() android.SdkMemberProperties {
Paul Duffina551a1c2020-03-17 21:04:24 +00001891 return &librarySdkMemberProperties{}
Paul Duffin14eb4672020-03-02 11:33:02 +00001892}
1893
1894type librarySdkMemberProperties struct {
1895 android.SdkMemberPropertiesBase
1896
Paul Duffina551a1c2020-03-17 21:04:24 +00001897 JarToExport android.Path
1898 AidlIncludeDirs android.Paths
Paul Duffin14eb4672020-03-02 11:33:02 +00001899}
1900
Paul Duffin3a4eb502020-03-19 16:11:18 +00001901func (p *librarySdkMemberProperties) PopulateFromVariant(ctx android.SdkMemberContext, variant android.Module) {
Paul Duffin13879572019-11-28 14:31:38 +00001902 j := variant.(*Library)
1903
Paul Duffina551a1c2020-03-17 21:04:24 +00001904 p.JarToExport = ctx.MemberType().(*librarySdkMemberType).jarToExportGetter(j)
1905 p.AidlIncludeDirs = j.AidlIncludeDirs()
Paul Duffin14eb4672020-03-02 11:33:02 +00001906}
Paul Duffin0e0cf1d2019-11-12 19:39:25 +00001907
Paul Duffin3a4eb502020-03-19 16:11:18 +00001908func (p *librarySdkMemberProperties) AddToPropertySet(ctx android.SdkMemberContext, propertySet android.BpPropertySet) {
Paul Duffina551a1c2020-03-17 21:04:24 +00001909 builder := ctx.SnapshotBuilder()
Paul Duffin3a4eb502020-03-19 16:11:18 +00001910
Paul Duffina551a1c2020-03-17 21:04:24 +00001911 exportedJar := p.JarToExport
1912 if exportedJar != nil {
1913 snapshotRelativeJavaLibPath := sdkSnapshotFilePathForJar(p.OsPrefix(), ctx.Name())
Paul Duffin14eb4672020-03-02 11:33:02 +00001914 builder.CopyToSnapshot(exportedJar, snapshotRelativeJavaLibPath)
1915
Paul Duffina551a1c2020-03-17 21:04:24 +00001916 propertySet.AddProperty("jars", []string{snapshotRelativeJavaLibPath})
1917 }
1918
1919 aidlIncludeDirs := p.AidlIncludeDirs
1920 if len(aidlIncludeDirs) != 0 {
1921 sdkModuleContext := ctx.SdkModuleContext()
1922 for _, dir := range aidlIncludeDirs {
Paul Duffin14eb4672020-03-02 11:33:02 +00001923 // TODO(jiyong): copy parcelable declarations only
1924 aidlFiles, _ := sdkModuleContext.GlobWithDeps(dir.String()+"/**/*.aidl", nil)
1925 for _, file := range aidlFiles {
1926 builder.CopyToSnapshot(android.PathForSource(sdkModuleContext, file), filepath.Join(aidlIncludeDir, file))
1927 }
Paul Duffin0e0cf1d2019-11-12 19:39:25 +00001928 }
Paul Duffin0e0cf1d2019-11-12 19:39:25 +00001929
Paul Duffina551a1c2020-03-17 21:04:24 +00001930 // TODO(b/151933053) - add aidl include dirs property
Paul Duffin14eb4672020-03-02 11:33:02 +00001931 }
Paul Duffin0e0cf1d2019-11-12 19:39:25 +00001932}
1933
Paul Duffinf5c0a9c2020-02-28 14:39:53 +00001934var javaHeaderLibsSdkMemberType android.SdkMemberType = &librarySdkMemberType{
1935 android.SdkMemberTypeBase{
1936 PropertyName: "java_header_libs",
1937 SupportsSdk: true,
Paul Duffin7b81f5e2020-01-13 21:03:22 +00001938 },
Paul Duffinf5c0a9c2020-02-28 14:39:53 +00001939 func(j *Library) android.Path {
Paul Duffina0dbf432019-12-05 11:25:53 +00001940 headerJars := j.HeaderJars()
1941 if len(headerJars) != 1 {
1942 panic(fmt.Errorf("there must be only one header jar from %q", j.Name()))
1943 }
1944
1945 return headerJars[0]
Paul Duffinf5c0a9c2020-02-28 14:39:53 +00001946 },
Paul Duffina0dbf432019-12-05 11:25:53 +00001947}
1948
Colin Cross1b16b0e2019-02-12 14:41:32 -08001949// java_library builds and links sources into a `.jar` file for the device, and possibly for the host as well.
1950//
1951// By default, a java_library has a single variant that produces a `.jar` file containing `.class` files that were
1952// compiled against the device bootclasspath. This jar is not suitable for installing on a device, but can be used
1953// as a `static_libs` dependency of another module.
1954//
1955// Specifying `installable: true` will product a `.jar` file containing `classes.dex` files, suitable for installing on
1956// a device.
1957//
1958// Specifying `host_supported: true` will produce two variants, one compiled against the device bootclasspath and one
1959// compiled against the host bootclasspath.
Colin Cross9ae1b922018-06-26 17:59:05 -07001960func LibraryFactory() android.Module {
1961 module := &Library{}
Colin Cross2fe66872015-03-30 17:20:39 -07001962
Colin Cross9ae1b922018-06-26 17:59:05 -07001963 module.AddProperties(
1964 &module.Module.properties,
1965 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -08001966 &module.Module.dexpreoptProperties,
Anton Hansson78156ef2020-03-27 19:39:48 +00001967 &module.Module.protoProperties,
1968 &module.libraryProperties)
Colin Cross2fe66872015-03-30 17:20:39 -07001969
Jiyong Park7f7766d2019-07-25 22:02:35 +09001970 android.InitApexModule(module)
Jiyong Parkd1063c12019-07-17 20:08:41 +09001971 android.InitSdkAwareModule(module)
Jooyung Han18020ea2019-11-13 10:50:48 +09001972 InitJavaModule(module, android.HostAndDeviceSupported)
Colin Cross9ae1b922018-06-26 17:59:05 -07001973 return module
Colin Cross2fe66872015-03-30 17:20:39 -07001974}
1975
Colin Cross1b16b0e2019-02-12 14:41:32 -08001976// java_library_static is an obsolete alias for java_library.
1977func LibraryStaticFactory() android.Module {
1978 return LibraryFactory()
1979}
1980
1981// java_library_host builds and links sources into a `.jar` file for the host.
1982//
1983// A java_library_host has a single variant that produces a `.jar` file containing `.class` files that were
1984// compiled against the host bootclasspath.
Colin Crossf506d872017-07-19 15:53:04 -07001985func LibraryHostFactory() android.Module {
1986 module := &Library{}
Colin Cross2fe66872015-03-30 17:20:39 -07001987
Colin Cross6af17aa2017-09-20 12:59:05 -07001988 module.AddProperties(
1989 &module.Module.properties,
1990 &module.Module.protoProperties)
Colin Cross36242852017-06-23 15:06:31 -07001991
Colin Cross9ae1b922018-06-26 17:59:05 -07001992 module.Module.properties.Installable = proptools.BoolPtr(true)
1993
Jiyong Park7f7766d2019-07-25 22:02:35 +09001994 android.InitApexModule(module)
Jooyung Han18020ea2019-11-13 10:50:48 +09001995 InitJavaModule(module, android.HostSupported)
Colin Cross36242852017-06-23 15:06:31 -07001996 return module
Colin Cross2fe66872015-03-30 17:20:39 -07001997}
1998
1999//
Colin Crossb628ea52018-08-14 16:42:33 -07002000// Java Tests
Colin Cross05638fc2018-04-09 18:40:24 -07002001//
2002
2003type testProperties struct {
Colin Cross05638fc2018-04-09 18:40:24 -07002004 // list of compatibility suites (for example "cts", "vts") that the module should be
2005 // installed into.
2006 Test_suites []string `android:"arch_variant"`
Julien Despreze146e392018-08-02 15:00:46 -07002007
2008 // the name of the test configuration (for example "AndroidTest.xml") that should be
2009 // installed with the module.
Colin Cross27b922f2019-03-04 22:35:41 -08002010 Test_config *string `android:"path,arch_variant"`
Colin Crossd96ca352018-08-10 16:06:24 -07002011
Jack He33338892018-09-19 02:21:28 -07002012 // the name of the test configuration template (for example "AndroidTestTemplate.xml") that
2013 // should be installed with the module.
Colin Cross27b922f2019-03-04 22:35:41 -08002014 Test_config_template *string `android:"path,arch_variant"`
Jack He33338892018-09-19 02:21:28 -07002015
Colin Crossd96ca352018-08-10 16:06:24 -07002016 // list of files or filegroup modules that provide data that should be installed alongside
2017 // the test
Colin Cross27b922f2019-03-04 22:35:41 -08002018 Data []string `android:"path"`
Dan Shi6ffaaa82019-09-26 11:41:36 -07002019
2020 // Flag to indicate whether or not to create test config automatically. If AndroidTest.xml
2021 // doesn't exist next to the Android.bp, this attribute doesn't need to be set to true
2022 // explicitly.
2023 Auto_gen_config *bool
Colin Cross05638fc2018-04-09 18:40:24 -07002024}
2025
Paul Duffin42df1442019-03-20 12:45:53 +00002026type testHelperLibraryProperties struct {
2027 // list of compatibility suites (for example "cts", "vts") that the module should be
2028 // installed into.
2029 Test_suites []string `android:"arch_variant"`
2030}
2031
Paul Duffin1b82e6a2019-12-03 18:06:47 +00002032type prebuiltTestProperties struct {
2033 // list of compatibility suites (for example "cts", "vts") that the module should be
2034 // installed into.
2035 Test_suites []string `android:"arch_variant"`
2036
2037 // the name of the test configuration (for example "AndroidTest.xml") that should be
2038 // installed with the module.
2039 Test_config *string `android:"path,arch_variant"`
2040}
2041
Colin Cross05638fc2018-04-09 18:40:24 -07002042type Test struct {
2043 Library
2044
2045 testProperties testProperties
Colin Cross303e21f2018-08-07 16:49:25 -07002046
2047 testConfig android.Path
Colin Crossd96ca352018-08-10 16:06:24 -07002048 data android.Paths
Colin Cross303e21f2018-08-07 16:49:25 -07002049}
2050
Paul Duffin42df1442019-03-20 12:45:53 +00002051type TestHelperLibrary struct {
2052 Library
2053
2054 testHelperLibraryProperties testHelperLibraryProperties
2055}
2056
Paul Duffin1b82e6a2019-12-03 18:06:47 +00002057type JavaTestImport struct {
2058 Import
2059
2060 prebuiltTestProperties prebuiltTestProperties
2061
2062 testConfig android.Path
2063}
2064
Colin Cross303e21f2018-08-07 16:49:25 -07002065func (j *Test) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Dan Shi6ffaaa82019-09-26 11:41:36 -07002066 j.testConfig = tradefed.AutoGenJavaTestConfig(ctx, j.testProperties.Test_config, j.testProperties.Test_config_template,
2067 j.testProperties.Test_suites, j.testProperties.Auto_gen_config)
Colin Cross8a497952019-03-05 22:25:09 -08002068 j.data = android.PathsForModuleSrc(ctx, j.testProperties.Data)
Colin Cross303e21f2018-08-07 16:49:25 -07002069
2070 j.Library.GenerateAndroidBuildActions(ctx)
Colin Cross05638fc2018-04-09 18:40:24 -07002071}
2072
Paul Duffin42df1442019-03-20 12:45:53 +00002073func (j *TestHelperLibrary) GenerateAndroidBuildActions(ctx android.ModuleContext) {
2074 j.Library.GenerateAndroidBuildActions(ctx)
2075}
2076
Paul Duffin1b82e6a2019-12-03 18:06:47 +00002077func (j *JavaTestImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
2078 j.testConfig = tradefed.AutoGenJavaTestConfig(ctx, j.prebuiltTestProperties.Test_config, nil,
2079 j.prebuiltTestProperties.Test_suites, nil)
2080
2081 j.Import.GenerateAndroidBuildActions(ctx)
2082}
2083
2084type testSdkMemberType struct {
2085 android.SdkMemberTypeBase
2086}
2087
2088func (mt *testSdkMemberType) AddDependencies(mctx android.BottomUpMutatorContext, dependencyTag blueprint.DependencyTag, names []string) {
2089 mctx.AddVariationDependencies(nil, dependencyTag, names...)
2090}
2091
2092func (mt *testSdkMemberType) IsInstance(module android.Module) bool {
2093 _, ok := module.(*Test)
2094 return ok
2095}
2096
Paul Duffin3a4eb502020-03-19 16:11:18 +00002097func (mt *testSdkMemberType) AddPrebuiltModule(ctx android.SdkMemberContext, member android.SdkMember) android.BpModule {
2098 return ctx.SnapshotBuilder().AddPrebuiltModule(member, "java_test_import")
Paul Duffin14eb4672020-03-02 11:33:02 +00002099}
Paul Duffin1b82e6a2019-12-03 18:06:47 +00002100
Paul Duffin14eb4672020-03-02 11:33:02 +00002101func (mt *testSdkMemberType) CreateVariantPropertiesStruct() android.SdkMemberProperties {
2102 return &testSdkMemberProperties{}
2103}
2104
2105type testSdkMemberProperties struct {
2106 android.SdkMemberPropertiesBase
2107
Paul Duffina551a1c2020-03-17 21:04:24 +00002108 JarToExport android.Path
2109 TestConfig android.Path
Paul Duffin14eb4672020-03-02 11:33:02 +00002110}
2111
Paul Duffin3a4eb502020-03-19 16:11:18 +00002112func (p *testSdkMemberProperties) PopulateFromVariant(ctx android.SdkMemberContext, variant android.Module) {
Paul Duffin14eb4672020-03-02 11:33:02 +00002113 test := variant.(*Test)
2114
2115 implementationJars := test.ImplementationJars()
Paul Duffin1b82e6a2019-12-03 18:06:47 +00002116 if len(implementationJars) != 1 {
Paul Duffin14eb4672020-03-02 11:33:02 +00002117 panic(fmt.Errorf("there must be only one implementation jar from %q", test.Name()))
Paul Duffin1b82e6a2019-12-03 18:06:47 +00002118 }
2119
Paul Duffina551a1c2020-03-17 21:04:24 +00002120 p.JarToExport = implementationJars[0]
2121 p.TestConfig = test.testConfig
Paul Duffin14eb4672020-03-02 11:33:02 +00002122}
Paul Duffin1b82e6a2019-12-03 18:06:47 +00002123
Paul Duffin3a4eb502020-03-19 16:11:18 +00002124func (p *testSdkMemberProperties) AddToPropertySet(ctx android.SdkMemberContext, propertySet android.BpPropertySet) {
Paul Duffina551a1c2020-03-17 21:04:24 +00002125 builder := ctx.SnapshotBuilder()
Paul Duffin3a4eb502020-03-19 16:11:18 +00002126
Paul Duffina551a1c2020-03-17 21:04:24 +00002127 exportedJar := p.JarToExport
2128 if exportedJar != nil {
2129 snapshotRelativeJavaLibPath := sdkSnapshotFilePathForJar(p.OsPrefix(), ctx.Name())
2130 builder.CopyToSnapshot(exportedJar, snapshotRelativeJavaLibPath)
Paul Duffin14eb4672020-03-02 11:33:02 +00002131
2132 propertySet.AddProperty("jars", []string{snapshotRelativeJavaLibPath})
Paul Duffina551a1c2020-03-17 21:04:24 +00002133 }
2134
2135 testConfig := p.TestConfig
2136 if testConfig != nil {
2137 snapshotRelativeTestConfigPath := sdkSnapshotFilePathForMember(p.OsPrefix(), ctx.Name(), testConfigSuffix)
2138 builder.CopyToSnapshot(testConfig, snapshotRelativeTestConfigPath)
Paul Duffin14eb4672020-03-02 11:33:02 +00002139 propertySet.AddProperty("test_config", snapshotRelativeTestConfigPath)
2140 }
Paul Duffin1b82e6a2019-12-03 18:06:47 +00002141}
2142
Colin Cross1b16b0e2019-02-12 14:41:32 -08002143// java_test builds a and links sources into a `.jar` file for the device, and possibly for the host as well, and
2144// creates an `AndroidTest.xml` file to allow running the test with `atest` or a `TEST_MAPPING` file.
2145//
2146// By default, a java_test has a single variant that produces a `.jar` file containing `classes.dex` files that were
2147// compiled against the device bootclasspath.
2148//
2149// Specifying `host_supported: true` will produce two variants, one compiled against the device bootclasspath and one
2150// compiled against the host bootclasspath.
Colin Cross05638fc2018-04-09 18:40:24 -07002151func TestFactory() android.Module {
2152 module := &Test{}
2153
2154 module.AddProperties(
2155 &module.Module.properties,
2156 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -08002157 &module.Module.dexpreoptProperties,
Colin Cross05638fc2018-04-09 18:40:24 -07002158 &module.Module.protoProperties,
2159 &module.testProperties)
2160
Colin Cross9ae1b922018-06-26 17:59:05 -07002161 module.Module.properties.Installable = proptools.BoolPtr(true)
Colin Crosse3026872019-01-05 22:30:13 -08002162 module.Module.dexpreopter.isTest = true
Colin Cross9ae1b922018-06-26 17:59:05 -07002163
Colin Cross05638fc2018-04-09 18:40:24 -07002164 InitJavaModule(module, android.HostAndDeviceSupported)
Colin Cross05638fc2018-04-09 18:40:24 -07002165 return module
2166}
2167
Paul Duffin42df1442019-03-20 12:45:53 +00002168// java_test_helper_library creates a java library and makes sure that it is added to the appropriate test suite.
2169func TestHelperLibraryFactory() android.Module {
2170 module := &TestHelperLibrary{}
2171
2172 module.AddProperties(
2173 &module.Module.properties,
2174 &module.Module.deviceProperties,
2175 &module.Module.dexpreoptProperties,
2176 &module.Module.protoProperties,
2177 &module.testHelperLibraryProperties)
2178
Colin Cross9a4abed2019-04-24 13:19:28 -07002179 module.Module.properties.Installable = proptools.BoolPtr(true)
2180 module.Module.dexpreopter.isTest = true
2181
Paul Duffin42df1442019-03-20 12:45:53 +00002182 InitJavaModule(module, android.HostAndDeviceSupported)
2183 return module
2184}
2185
Paul Duffin1b82e6a2019-12-03 18:06:47 +00002186// java_test_import imports one or more `.jar` files into the build graph as if they were built by a java_test module
2187// and makes sure that it is added to the appropriate test suite.
2188//
2189// By default, a java_test_import has a single variant that expects a `.jar` file containing `.class` files that were
2190// compiled against an Android classpath.
2191//
2192// Specifying `host_supported: true` will produce two variants, one for use as a dependency of device modules and one
2193// for host modules.
2194func JavaTestImportFactory() android.Module {
2195 module := &JavaTestImport{}
2196
2197 module.AddProperties(
2198 &module.Import.properties,
2199 &module.prebuiltTestProperties)
2200
2201 module.Import.properties.Installable = proptools.BoolPtr(true)
2202
2203 android.InitPrebuiltModule(module, &module.properties.Jars)
2204 android.InitApexModule(module)
2205 android.InitSdkAwareModule(module)
2206 InitJavaModule(module, android.HostAndDeviceSupported)
2207 return module
2208}
2209
Colin Cross1b16b0e2019-02-12 14:41:32 -08002210// java_test_host builds a and links sources into a `.jar` file for the host, and creates an `AndroidTest.xml` file to
2211// allow running the test with `atest` or a `TEST_MAPPING` file.
2212//
2213// A java_test_host has a single variant that produces a `.jar` file containing `.class` files that were
2214// compiled against the host bootclasspath.
Colin Cross05638fc2018-04-09 18:40:24 -07002215func TestHostFactory() android.Module {
2216 module := &Test{}
2217
2218 module.AddProperties(
2219 &module.Module.properties,
2220 &module.Module.protoProperties,
2221 &module.testProperties)
2222
Colin Cross9ae1b922018-06-26 17:59:05 -07002223 module.Module.properties.Installable = proptools.BoolPtr(true)
2224
Colin Cross05638fc2018-04-09 18:40:24 -07002225 InitJavaModule(module, android.HostSupported)
Colin Cross05638fc2018-04-09 18:40:24 -07002226 return module
2227}
2228
2229//
Colin Cross2fe66872015-03-30 17:20:39 -07002230// Java Binaries (.jar file plus wrapper script)
2231//
2232
Colin Crossf506d872017-07-19 15:53:04 -07002233type binaryProperties struct {
Colin Cross7d5136f2015-05-11 13:39:40 -07002234 // installable script to execute the resulting jar
Colin Cross27b922f2019-03-04 22:35:41 -08002235 Wrapper *string `android:"path"`
Colin Cross094054a2018-10-17 15:10:48 -07002236
2237 // Name of the class containing main to be inserted into the manifest as Main-Class.
2238 Main_class *string
Colin Cross7d5136f2015-05-11 13:39:40 -07002239}
2240
Colin Crossf506d872017-07-19 15:53:04 -07002241type Binary struct {
2242 Library
Colin Cross2fe66872015-03-30 17:20:39 -07002243
Colin Crossf506d872017-07-19 15:53:04 -07002244 binaryProperties binaryProperties
Colin Cross10a03492017-08-10 17:09:43 -07002245
Colin Cross6b4a32d2017-12-05 13:42:45 -08002246 isWrapperVariant bool
2247
Colin Crossc3315992017-12-08 19:12:36 -08002248 wrapperFile android.Path
Colin Cross70dda7e2019-10-01 22:05:35 -07002249 binaryFile android.InstallPath
Colin Cross2fe66872015-03-30 17:20:39 -07002250}
2251
Alex Light24237172017-10-26 09:46:21 -07002252func (j *Binary) HostToolPath() android.OptionalPath {
2253 return android.OptionalPathForPath(j.binaryFile)
2254}
2255
Colin Crossf506d872017-07-19 15:53:04 -07002256func (j *Binary) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross6b4a32d2017-12-05 13:42:45 -08002257 if ctx.Arch().ArchType == android.Common {
2258 // Compile the jar
Colin Cross094054a2018-10-17 15:10:48 -07002259 if j.binaryProperties.Main_class != nil {
2260 if j.properties.Manifest != nil {
2261 ctx.PropertyErrorf("main_class", "main_class cannot be used when manifest is set")
2262 }
2263 manifestFile := android.PathForModuleOut(ctx, "manifest.txt")
2264 GenerateMainClassManifest(ctx, manifestFile, String(j.binaryProperties.Main_class))
2265 j.overrideManifest = android.OptionalPathForPath(manifestFile)
2266 }
2267
Colin Cross6b4a32d2017-12-05 13:42:45 -08002268 j.Library.GenerateAndroidBuildActions(ctx)
Nan Zhang3c807db2017-11-03 14:53:31 -07002269 } else {
Colin Cross6b4a32d2017-12-05 13:42:45 -08002270 // Handle the binary wrapper
2271 j.isWrapperVariant = true
2272
Colin Cross366938f2017-12-11 16:29:02 -08002273 if j.binaryProperties.Wrapper != nil {
Colin Cross8a497952019-03-05 22:25:09 -08002274 j.wrapperFile = android.PathForModuleSrc(ctx, *j.binaryProperties.Wrapper)
Colin Cross6b4a32d2017-12-05 13:42:45 -08002275 } else {
2276 j.wrapperFile = android.PathForSource(ctx, "build/soong/scripts/jar-wrapper.sh")
2277 }
2278
2279 // Depend on the installed jar so that the wrapper doesn't get executed by
2280 // another build rule before the jar has been installed.
2281 jarFile := ctx.PrimaryModule().(*Binary).installFile
2282
2283 j.binaryFile = ctx.InstallExecutable(android.PathForModuleInstall(ctx, "bin"),
2284 ctx.ModuleName(), j.wrapperFile, jarFile)
Nan Zhang3c807db2017-11-03 14:53:31 -07002285 }
Colin Cross2fe66872015-03-30 17:20:39 -07002286}
2287
Colin Crossf506d872017-07-19 15:53:04 -07002288func (j *Binary) DepsMutator(ctx android.BottomUpMutatorContext) {
Colin Cross6b4a32d2017-12-05 13:42:45 -08002289 if ctx.Arch().ArchType == android.Common {
2290 j.deps(ctx)
2291 }
Colin Cross46c9b8b2017-06-22 16:51:17 -07002292}
2293
Colin Cross1b16b0e2019-02-12 14:41:32 -08002294// java_binary builds a `.jar` file and a shell script that executes it for the device, and possibly for the host
2295// as well.
2296//
2297// By default, a java_binary has a single variant that produces a `.jar` file containing `classes.dex` files that were
2298// compiled against the device bootclasspath.
2299//
2300// Specifying `host_supported: true` will produce two variants, one compiled against the device bootclasspath and one
2301// compiled against the host bootclasspath.
Colin Crossf506d872017-07-19 15:53:04 -07002302func BinaryFactory() android.Module {
2303 module := &Binary{}
Colin Cross2fe66872015-03-30 17:20:39 -07002304
Colin Cross36242852017-06-23 15:06:31 -07002305 module.AddProperties(
Colin Cross540eff82017-06-22 17:01:52 -07002306 &module.Module.properties,
2307 &module.Module.deviceProperties,
Colin Cross43f08db2018-11-12 10:13:39 -08002308 &module.Module.dexpreoptProperties,
Colin Cross6af17aa2017-09-20 12:59:05 -07002309 &module.Module.protoProperties,
Colin Cross540eff82017-06-22 17:01:52 -07002310 &module.binaryProperties)
Colin Cross36242852017-06-23 15:06:31 -07002311
Colin Cross9ae1b922018-06-26 17:59:05 -07002312 module.Module.properties.Installable = proptools.BoolPtr(true)
2313
Colin Cross6b4a32d2017-12-05 13:42:45 -08002314 android.InitAndroidArchModule(module, android.HostAndDeviceSupported, android.MultilibCommonFirst)
2315 android.InitDefaultableModule(module)
Colin Cross36242852017-06-23 15:06:31 -07002316 return module
Colin Cross2fe66872015-03-30 17:20:39 -07002317}
2318
Colin Cross1b16b0e2019-02-12 14:41:32 -08002319// java_binary_host builds a `.jar` file and a shell script that executes it for the host.
2320//
2321// A java_binary_host has a single variant that produces a `.jar` file containing `.class` files that were
2322// compiled against the host bootclasspath.
Colin Crossf506d872017-07-19 15:53:04 -07002323func BinaryHostFactory() android.Module {
2324 module := &Binary{}
Colin Cross2fe66872015-03-30 17:20:39 -07002325
Colin Cross36242852017-06-23 15:06:31 -07002326 module.AddProperties(
Colin Cross540eff82017-06-22 17:01:52 -07002327 &module.Module.properties,
Colin Cross6af17aa2017-09-20 12:59:05 -07002328 &module.Module.protoProperties,
Colin Cross540eff82017-06-22 17:01:52 -07002329 &module.binaryProperties)
Colin Cross36242852017-06-23 15:06:31 -07002330
Colin Cross9ae1b922018-06-26 17:59:05 -07002331 module.Module.properties.Installable = proptools.BoolPtr(true)
2332
Colin Cross6b4a32d2017-12-05 13:42:45 -08002333 android.InitAndroidArchModule(module, android.HostSupported, android.MultilibCommonFirst)
2334 android.InitDefaultableModule(module)
Colin Cross36242852017-06-23 15:06:31 -07002335 return module
Colin Cross2fe66872015-03-30 17:20:39 -07002336}
2337
2338//
2339// Java prebuilts
2340//
2341
Colin Cross74d73e22017-08-02 11:05:49 -07002342type ImportProperties struct {
Paul Duffina04c1072020-03-02 10:16:35 +00002343 Jars []string `android:"path,arch_variant"`
Colin Cross461bd1a2017-10-20 13:59:18 -07002344
Nan Zhangea568a42017-11-08 21:20:04 -08002345 Sdk_version *string
Colin Cross535e2cf2017-10-20 17:57:49 -07002346
2347 Installable *bool
Jiyong Park1be96912018-05-28 18:02:19 +09002348
2349 // List of shared java libs that this module has dependencies to
2350 Libs []string
Colin Cross37f6d792018-07-12 12:28:41 -07002351
2352 // List of files to remove from the jar file(s)
2353 Exclude_files []string
2354
2355 // List of directories to remove from the jar file(s)
2356 Exclude_dirs []string
Nan Zhang4c819fb2018-08-27 18:31:46 -07002357
2358 // if set to true, run Jetifier against .jar file. Defaults to false.
Colin Cross1001a792019-03-21 22:21:39 -07002359 Jetifier *bool
Jiyong Park4c4c0242019-10-21 14:53:15 +09002360
2361 // set the name of the output
2362 Stem *string
Jiyong Park19604de2020-03-24 16:44:11 +09002363
2364 Aidl struct {
2365 // directories that should be added as include directories for any aidl sources of modules
2366 // that depend on this module, as well as to aidl for this module.
2367 Export_include_dirs []string
2368 }
Colin Cross74d73e22017-08-02 11:05:49 -07002369}
2370
2371type Import struct {
Colin Cross635c3b02016-05-18 15:37:25 -07002372 android.ModuleBase
Colin Cross48de9a42018-10-02 13:53:33 -07002373 android.DefaultableModuleBase
Jiyong Park7f7766d2019-07-25 22:02:35 +09002374 android.ApexModuleBase
Colin Crossec7a0422017-07-07 14:47:12 -07002375 prebuilt android.Prebuilt
Jiyong Parkd1063c12019-07-17 20:08:41 +09002376 android.SdkBase
Colin Cross2fe66872015-03-30 17:20:39 -07002377
Colin Cross74d73e22017-08-02 11:05:49 -07002378 properties ImportProperties
2379
Colin Cross0a6e0072017-08-30 14:24:55 -07002380 combinedClasspathFile android.Path
Jiyong Park1be96912018-05-28 18:02:19 +09002381 exportedSdkLibs []string
Jiyong Park19604de2020-03-24 16:44:11 +09002382 exportAidlIncludeDirs android.Paths
Colin Cross2fe66872015-03-30 17:20:39 -07002383}
2384
Jiyong Park6a927c42020-01-21 02:03:43 +09002385func (j *Import) sdkVersion() sdkSpec {
2386 return sdkSpecFrom(String(j.properties.Sdk_version))
Colin Cross83bb3162018-06-25 15:48:06 -07002387}
2388
Jiyong Park6a927c42020-01-21 02:03:43 +09002389func (j *Import) minSdkVersion() sdkSpec {
Colin Cross83bb3162018-06-25 15:48:06 -07002390 return j.sdkVersion()
2391}
2392
Colin Cross74d73e22017-08-02 11:05:49 -07002393func (j *Import) Prebuilt() *android.Prebuilt {
Colin Crossec7a0422017-07-07 14:47:12 -07002394 return &j.prebuilt
2395}
2396
Colin Cross74d73e22017-08-02 11:05:49 -07002397func (j *Import) PrebuiltSrcs() []string {
2398 return j.properties.Jars
2399}
2400
2401func (j *Import) Name() string {
Colin Cross5ea9bcc2017-07-27 15:41:32 -07002402 return j.prebuilt.Name(j.ModuleBase.Name())
2403}
2404
Jiyong Park0b238752019-10-29 11:23:10 +09002405func (j *Import) Stem() string {
2406 return proptools.StringDefault(j.properties.Stem, j.ModuleBase.Name())
2407}
2408
Jiyong Park618922e2020-01-08 13:35:43 +09002409func (a *Import) JacocoReportClassesFile() android.Path {
2410 return nil
2411}
2412
Colin Cross74d73e22017-08-02 11:05:49 -07002413func (j *Import) DepsMutator(ctx android.BottomUpMutatorContext) {
Colin Cross42d48b72018-08-29 14:10:52 -07002414 ctx.AddVariationDependencies(nil, libTag, j.properties.Libs...)
Colin Cross1e676be2016-10-12 14:38:15 -07002415}
2416
Colin Cross74d73e22017-08-02 11:05:49 -07002417func (j *Import) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Colin Cross8a497952019-03-05 22:25:09 -08002418 jars := android.PathsForModuleSrc(ctx, j.properties.Jars)
Colin Crosse1d62a82015-04-03 16:53:05 -07002419
Jiyong Park0b238752019-10-29 11:23:10 +09002420 jarName := j.Stem() + ".jar"
Nan Zhang4c819fb2018-08-27 18:31:46 -07002421 outputFile := android.PathForModuleOut(ctx, "combined", jarName)
Colin Cross37f6d792018-07-12 12:28:41 -07002422 TransformJarsToJar(ctx, outputFile, "for prebuilts", jars, android.OptionalPath{},
2423 false, j.properties.Exclude_files, j.properties.Exclude_dirs)
Colin Cross1001a792019-03-21 22:21:39 -07002424 if Bool(j.properties.Jetifier) {
Nan Zhang4c819fb2018-08-27 18:31:46 -07002425 inputFile := outputFile
2426 outputFile = android.PathForModuleOut(ctx, "jetifier", jarName)
2427 TransformJetifier(ctx, outputFile, inputFile)
2428 }
Colin Crosse9a275b2017-10-16 17:09:48 -07002429 j.combinedClasspathFile = outputFile
Jiyong Park1be96912018-05-28 18:02:19 +09002430
2431 ctx.VisitDirectDeps(func(module android.Module) {
2432 otherName := ctx.OtherModuleName(module)
2433 tag := ctx.OtherModuleDependencyTag(module)
2434
2435 switch dep := module.(type) {
2436 case Dependency:
2437 switch tag {
2438 case libTag, staticLibTag:
2439 // sdk lib names from dependencies are re-exported
2440 j.exportedSdkLibs = append(j.exportedSdkLibs, dep.ExportedSdkLibs()...)
2441 }
2442 case SdkLibraryDependency:
2443 switch tag {
2444 case libTag:
2445 // names of sdk libs that are directly depended are exported
2446 j.exportedSdkLibs = append(j.exportedSdkLibs, otherName)
2447 }
2448 }
2449 })
2450
2451 j.exportedSdkLibs = android.FirstUniqueStrings(j.exportedSdkLibs)
Nan Zhang4973ecf2018-08-10 13:42:12 -07002452 if Bool(j.properties.Installable) {
2453 ctx.InstallFile(android.PathForModuleInstall(ctx, "framework"),
Jiyong Park4c4c0242019-10-21 14:53:15 +09002454 jarName, outputFile)
Nan Zhang4973ecf2018-08-10 13:42:12 -07002455 }
Jiyong Park19604de2020-03-24 16:44:11 +09002456
2457 j.exportAidlIncludeDirs = android.PathsForModuleSrc(ctx, j.properties.Aidl.Export_include_dirs)
Colin Cross2fe66872015-03-30 17:20:39 -07002458}
2459
Colin Cross74d73e22017-08-02 11:05:49 -07002460var _ Dependency = (*Import)(nil)
Colin Cross2fe66872015-03-30 17:20:39 -07002461
Nan Zhanged19fc32017-10-19 13:06:22 -07002462func (j *Import) HeaderJars() android.Paths {
albaltai36ff7dc2018-12-25 14:35:23 +08002463 if j.combinedClasspathFile == nil {
2464 return nil
2465 }
Colin Cross37f6d792018-07-12 12:28:41 -07002466 return android.Paths{j.combinedClasspathFile}
Nan Zhanged19fc32017-10-19 13:06:22 -07002467}
2468
2469func (j *Import) ImplementationJars() android.Paths {
shinwang9e4c07a2018-12-24 15:41:04 +08002470 if j.combinedClasspathFile == nil {
2471 return nil
2472 }
Colin Cross37f6d792018-07-12 12:28:41 -07002473 return android.Paths{j.combinedClasspathFile}
Colin Cross2fe66872015-03-30 17:20:39 -07002474}
2475
Colin Cross331a1212018-08-15 20:40:52 -07002476func (j *Import) ResourceJars() android.Paths {
2477 return nil
2478}
2479
2480func (j *Import) ImplementationAndResourcesJars() android.Paths {
albaltai36ff7dc2018-12-25 14:35:23 +08002481 if j.combinedClasspathFile == nil {
2482 return nil
2483 }
Colin Cross331a1212018-08-15 20:40:52 -07002484 return android.Paths{j.combinedClasspathFile}
2485}
2486
Colin Crossf24a22a2019-01-31 14:12:44 -08002487func (j *Import) DexJar() android.Path {
2488 return nil
2489}
2490
Colin Cross74d73e22017-08-02 11:05:49 -07002491func (j *Import) AidlIncludeDirs() android.Paths {
Jiyong Park19604de2020-03-24 16:44:11 +09002492 return j.exportAidlIncludeDirs
Colin Crossc0b06f12015-04-08 13:03:43 -07002493}
2494
Jiyong Park1be96912018-05-28 18:02:19 +09002495func (j *Import) ExportedSdkLibs() []string {
2496 return j.exportedSdkLibs
2497}
2498
Artur Satayev9cf46692019-11-26 18:08:34 +00002499func (j *Import) ExportedPlugins() (android.Paths, []string) {
2500 return nil, nil
2501}
2502
Colin Cross0c4ce212019-05-03 15:28:19 -07002503func (j *Import) SrcJarArgs() ([]string, android.Paths) {
2504 return nil, nil
2505}
2506
Jiyong Park0f80c182020-01-31 02:49:53 +09002507func (j *Import) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
Jiyong Park0f80c182020-01-31 02:49:53 +09002508 // dependencies other than the static linkage are all considered crossing APEX boundary
Jooyung Han5e9013b2020-03-10 06:23:13 +09002509 if staticLibTag == ctx.OtherModuleDependencyTag(dep) {
2510 return true
2511 }
Jooyung Han5e9013b2020-03-10 06:23:13 +09002512 return false
Jiyong Park0f80c182020-01-31 02:49:53 +09002513}
2514
albaltai36ff7dc2018-12-25 14:35:23 +08002515// Add compile time check for interface implementation
2516var _ android.IDEInfo = (*Import)(nil)
2517var _ android.IDECustomizedModuleName = (*Import)(nil)
2518
Brandon Lee5d45c6f2018-08-15 15:35:38 -07002519// Collect information for opening IDE project files in java/jdeps.go.
2520const (
2521 removedPrefix = "prebuilt_"
2522)
2523
2524func (j *Import) IDEInfo(dpInfo *android.IdeInfo) {
2525 dpInfo.Jars = append(dpInfo.Jars, j.PrebuiltSrcs()...)
2526}
2527
2528func (j *Import) IDECustomizedModuleName() string {
2529 // TODO(b/113562217): Extract the base module name from the Import name, often the Import name
2530 // has a prefix "prebuilt_". Remove the prefix explicitly if needed until we find a better
2531 // solution to get the Import name.
2532 name := j.Name()
2533 if strings.HasPrefix(name, removedPrefix) {
patricktubb640e02018-10-11 18:33:16 +08002534 name = strings.TrimPrefix(name, removedPrefix)
Brandon Lee5d45c6f2018-08-15 15:35:38 -07002535 }
2536 return name
2537}
2538
Colin Cross74d73e22017-08-02 11:05:49 -07002539var _ android.PrebuiltInterface = (*Import)(nil)
Colin Cross2fe66872015-03-30 17:20:39 -07002540
Colin Cross1b16b0e2019-02-12 14:41:32 -08002541// java_import imports one or more `.jar` files into the build graph as if they were built by a java_library module.
2542//
2543// By default, a java_import has a single variant that expects a `.jar` file containing `.class` files that were
2544// compiled against an Android classpath.
2545//
2546// Specifying `host_supported: true` will produce two variants, one for use as a dependency of device modules and one
2547// for host modules.
Colin Cross74d73e22017-08-02 11:05:49 -07002548func ImportFactory() android.Module {
2549 module := &Import{}
Colin Cross36242852017-06-23 15:06:31 -07002550
Colin Cross74d73e22017-08-02 11:05:49 -07002551 module.AddProperties(&module.properties)
2552
2553 android.InitPrebuiltModule(module, &module.properties.Jars)
Jiyong Park7f7766d2019-07-25 22:02:35 +09002554 android.InitApexModule(module)
Jiyong Parkd1063c12019-07-17 20:08:41 +09002555 android.InitSdkAwareModule(module)
Jooyung Han18020ea2019-11-13 10:50:48 +09002556 InitJavaModule(module, android.HostAndDeviceSupported)
Colin Cross36242852017-06-23 15:06:31 -07002557 return module
Colin Cross2fe66872015-03-30 17:20:39 -07002558}
2559
Colin Cross1b16b0e2019-02-12 14:41:32 -08002560// java_import imports one or more `.jar` files into the build graph as if they were built by a java_library_host
2561// module.
2562//
2563// A java_import_host has a single variant that expects a `.jar` file containing `.class` files that were
2564// compiled against a host bootclasspath.
Colin Cross74d73e22017-08-02 11:05:49 -07002565func ImportFactoryHost() android.Module {
2566 module := &Import{}
2567
2568 module.AddProperties(&module.properties)
2569
2570 android.InitPrebuiltModule(module, &module.properties.Jars)
Jiyong Park7f7766d2019-07-25 22:02:35 +09002571 android.InitApexModule(module)
Jooyung Han18020ea2019-11-13 10:50:48 +09002572 InitJavaModule(module, android.HostSupported)
Colin Cross74d73e22017-08-02 11:05:49 -07002573 return module
2574}
2575
Colin Cross42be7612019-02-21 18:12:14 -08002576// dex_import module
2577
2578type DexImportProperties struct {
Colin Cross5cfc70d2019-07-15 13:36:55 -07002579 Jars []string `android:"path"`
Jiyong Park4c4c0242019-10-21 14:53:15 +09002580
2581 // set the name of the output
2582 Stem *string
Colin Cross42be7612019-02-21 18:12:14 -08002583}
2584
2585type DexImport struct {
2586 android.ModuleBase
2587 android.DefaultableModuleBase
Jiyong Park7f7766d2019-07-25 22:02:35 +09002588 android.ApexModuleBase
Colin Cross42be7612019-02-21 18:12:14 -08002589 prebuilt android.Prebuilt
2590
2591 properties DexImportProperties
2592
2593 dexJarFile android.Path
2594 maybeStrippedDexJarFile android.Path
2595
2596 dexpreopter
2597}
2598
2599func (j *DexImport) Prebuilt() *android.Prebuilt {
2600 return &j.prebuilt
2601}
2602
2603func (j *DexImport) PrebuiltSrcs() []string {
2604 return j.properties.Jars
2605}
2606
2607func (j *DexImport) Name() string {
2608 return j.prebuilt.Name(j.ModuleBase.Name())
2609}
2610
Jiyong Park0b238752019-10-29 11:23:10 +09002611func (j *DexImport) Stem() string {
2612 return proptools.StringDefault(j.properties.Stem, j.ModuleBase.Name())
2613}
2614
Martin Stjernholm6d415272020-01-31 17:10:36 +00002615func (j *DexImport) IsInstallable() bool {
2616 return true
2617}
2618
Colin Cross42be7612019-02-21 18:12:14 -08002619func (j *DexImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
2620 if len(j.properties.Jars) != 1 {
2621 ctx.PropertyErrorf("jars", "exactly one jar must be provided")
2622 }
2623
Jiyong Park0b238752019-10-29 11:23:10 +09002624 j.dexpreopter.installPath = android.PathForModuleInstall(ctx, "framework", j.Stem()+".jar")
Colin Cross42be7612019-02-21 18:12:14 -08002625 j.dexpreopter.uncompressedDex = shouldUncompressDex(ctx, &j.dexpreopter)
2626
2627 inputJar := ctx.ExpandSource(j.properties.Jars[0], "jars")
2628 dexOutputFile := android.PathForModuleOut(ctx, ctx.ModuleName()+".jar")
2629
2630 if j.dexpreopter.uncompressedDex {
2631 rule := android.NewRuleBuilder()
2632
2633 temporary := android.PathForModuleOut(ctx, ctx.ModuleName()+".jar.unaligned")
2634 rule.Temporary(temporary)
2635
2636 // use zip2zip to uncompress classes*.dex files
2637 rule.Command().
Colin Crossee94d6a2019-07-08 17:08:34 -07002638 BuiltTool(ctx, "zip2zip").
Colin Cross42be7612019-02-21 18:12:14 -08002639 FlagWithInput("-i ", inputJar).
2640 FlagWithOutput("-o ", temporary).
2641 FlagWithArg("-0 ", "'classes*.dex'")
2642
2643 // use zipalign to align uncompressed classes*.dex files
2644 rule.Command().
Colin Crossee94d6a2019-07-08 17:08:34 -07002645 BuiltTool(ctx, "zipalign").
Colin Cross42be7612019-02-21 18:12:14 -08002646 Flag("-f").
2647 Text("4").
2648 Input(temporary).
2649 Output(dexOutputFile)
2650
2651 rule.DeleteTemporaryFiles()
2652
2653 rule.Build(pctx, ctx, "uncompress_dex", "uncompress dex")
2654 } else {
2655 ctx.Build(pctx, android.BuildParams{
2656 Rule: android.Cp,
2657 Input: inputJar,
2658 Output: dexOutputFile,
2659 })
2660 }
2661
2662 j.dexJarFile = dexOutputFile
2663
2664 dexOutputFile = j.dexpreopt(ctx, dexOutputFile)
2665
2666 j.maybeStrippedDexJarFile = dexOutputFile
2667
2668 ctx.InstallFile(android.PathForModuleInstall(ctx, "framework"),
2669 ctx.ModuleName()+".jar", dexOutputFile)
2670}
2671
2672func (j *DexImport) DexJar() android.Path {
2673 return j.dexJarFile
2674}
2675
2676// dex_import imports a `.jar` file containing classes.dex files.
2677//
2678// A dex_import module cannot be used as a dependency of a java_* or android_* module, it can only be installed
2679// to the device.
2680func DexImportFactory() android.Module {
2681 module := &DexImport{}
2682
2683 module.AddProperties(&module.properties)
2684
2685 android.InitPrebuiltModule(module, &module.properties.Jars)
Jiyong Park7f7766d2019-07-25 22:02:35 +09002686 android.InitApexModule(module)
Jooyung Han18020ea2019-11-13 10:50:48 +09002687 InitJavaModule(module, android.DeviceSupported)
Colin Cross42be7612019-02-21 18:12:14 -08002688 return module
2689}
2690
Colin Cross89536d42017-07-07 14:35:50 -07002691//
2692// Defaults
2693//
2694type Defaults struct {
2695 android.ModuleBase
2696 android.DefaultsModuleBase
Jiyong Park7f7766d2019-07-25 22:02:35 +09002697 android.ApexModuleBase
Colin Cross89536d42017-07-07 14:35:50 -07002698}
2699
Colin Cross1b16b0e2019-02-12 14:41:32 -08002700// java_defaults provides a set of properties that can be inherited by other java or android modules.
2701//
2702// A module can use the properties from a java_defaults module using `defaults: ["defaults_module_name"]`. Each
2703// property in the defaults module that exists in the depending module will be prepended to the depending module's
2704// value for that property.
2705//
2706// Example:
2707//
2708// java_defaults {
2709// name: "example_defaults",
2710// srcs: ["common/**/*.java"],
2711// javacflags: ["-Xlint:all"],
2712// aaptflags: ["--auto-add-overlay"],
2713// }
2714//
2715// java_library {
2716// name: "example",
2717// defaults: ["example_defaults"],
2718// srcs: ["example/**/*.java"],
2719// }
2720//
2721// is functionally identical to:
2722//
2723// java_library {
2724// name: "example",
2725// srcs: [
2726// "common/**/*.java",
2727// "example/**/*.java",
2728// ],
2729// javacflags: ["-Xlint:all"],
2730// }
Colin Cross89536d42017-07-07 14:35:50 -07002731func defaultsFactory() android.Module {
2732 return DefaultsFactory()
2733}
2734
Paul Duffin47357662019-12-05 14:07:14 +00002735func DefaultsFactory() android.Module {
Colin Cross89536d42017-07-07 14:35:50 -07002736 module := &Defaults{}
2737
Colin Cross89536d42017-07-07 14:35:50 -07002738 module.AddProperties(
2739 &CompilerProperties{},
2740 &CompilerDeviceProperties{},
Colin Cross43f08db2018-11-12 10:13:39 -08002741 &DexpreoptProperties{},
Dan Willemsen6424d172018-03-08 13:27:59 -08002742 &android.ProtoProperties{},
Colin Cross48de9a42018-10-02 13:53:33 -07002743 &aaptProperties{},
2744 &androidLibraryProperties{},
2745 &appProperties{},
2746 &appTestProperties{},
Jaewoong Jung525443a2019-02-28 15:35:54 -08002747 &overridableAppProperties{},
Colin Cross48de9a42018-10-02 13:53:33 -07002748 &ImportProperties{},
2749 &AARImportProperties{},
2750 &sdkLibraryProperties{},
Colin Cross42be7612019-02-21 18:12:14 -08002751 &DexImportProperties{},
Jooyung Han18020ea2019-11-13 10:50:48 +09002752 &android.ApexProperties{},
Colin Cross89536d42017-07-07 14:35:50 -07002753 )
2754
2755 android.InitDefaultsModule(module)
Colin Cross89536d42017-07-07 14:35:50 -07002756 return module
2757}
Nan Zhangea568a42017-11-08 21:20:04 -08002758
Sasha Smundak2a4549e2018-11-05 16:49:08 -08002759func kytheExtractJavaFactory() android.Singleton {
2760 return &kytheExtractJavaSingleton{}
2761}
2762
2763type kytheExtractJavaSingleton struct {
2764}
2765
2766func (ks *kytheExtractJavaSingleton) GenerateBuildActions(ctx android.SingletonContext) {
2767 var xrefTargets android.Paths
2768 ctx.VisitAllModules(func(module android.Module) {
2769 if javaModule, ok := module.(xref); ok {
2770 xrefTargets = append(xrefTargets, javaModule.XrefJavaFiles()...)
2771 }
2772 })
2773 // TODO(asmundak): perhaps emit a rule to output a warning if there were no xrefTargets
2774 if len(xrefTargets) > 0 {
2775 ctx.Build(pctx, android.BuildParams{
2776 Rule: blueprint.Phony,
2777 Output: android.PathForPhony(ctx, "xref_java"),
2778 Inputs: xrefTargets,
2779 })
2780 }
2781}
2782
Nan Zhangea568a42017-11-08 21:20:04 -08002783var Bool = proptools.Bool
Colin Cross38b40df2018-04-10 16:14:46 -07002784var BoolDefault = proptools.BoolDefault
Nan Zhangea568a42017-11-08 21:20:04 -08002785var String = proptools.String
Colin Cross0d0ba592018-02-20 13:33:42 -08002786var inList = android.InList