blob: 537159ef3fff34622ecaeef35670916f831998c1 [file] [log] [blame]
Dan Willemsen218f6562015-07-08 18:13:11 -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
17import (
Colin Cross74d73e22017-08-02 11:05:49 -070018 "fmt"
19 "io"
20
Colin Cross635c3b02016-05-18 15:37:25 -070021 "android/soong/android"
Dan Willemsen218f6562015-07-08 18:13:11 -070022)
23
Jiyong Park55bd98b2019-12-11 17:27:07 +090024func (library *Library) AndroidMkEntriesHostDex() android.AndroidMkEntries {
25 hostDexNeeded := Bool(library.deviceProperties.Hostdex) && !library.Host()
Colin Cross56a83212020-09-15 18:30:11 -070026 if library.hideApexVariantFromMake {
Jiyong Park55bd98b2019-12-11 17:27:07 +090027 hostDexNeeded = false
Sundong Ahn054b19a2018-10-19 13:46:09 +090028 }
Jiyong Park55bd98b2019-12-11 17:27:07 +090029
30 if hostDexNeeded {
31 var output android.Path
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +010032 if library.dexJarFile.IsSet() {
33 output = library.dexJarFile.Path()
Jiyong Park55bd98b2019-12-11 17:27:07 +090034 } else {
35 output = library.implementationAndResourcesJar
36 }
37 return android.AndroidMkEntries{
38 Class: "JAVA_LIBRARIES",
39 SubName: "-hostdex",
40 OutputFile: android.OptionalPathForPath(output),
41 Required: library.deviceProperties.Target.Hostdex.Required,
42 Include: "$(BUILD_SYSTEM)/soong_java_prebuilt.mk",
43 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
Colin Crossaa255532020-07-03 13:18:24 -070044 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Jiyong Park55bd98b2019-12-11 17:27:07 +090045 entries.SetBool("LOCAL_IS_HOST_MODULE", true)
46 entries.SetPath("LOCAL_PREBUILT_MODULE_FILE", output)
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +010047 if library.dexJarFile.IsSet() {
48 entries.SetPath("LOCAL_SOONG_DEX_JAR", library.dexJarFile.Path())
Jiyong Park55bd98b2019-12-11 17:27:07 +090049 }
50 entries.SetPath("LOCAL_SOONG_HEADER_JAR", library.headerJarFile)
51 entries.SetPath("LOCAL_SOONG_CLASSES_JAR", library.implementationAndResourcesJar)
52 entries.SetString("LOCAL_MODULE_STEM", library.Stem()+"-hostdex")
53 },
54 },
55 }
56 }
57 return android.AndroidMkEntries{Disabled: true}
Sundong Ahn054b19a2018-10-19 13:46:09 +090058}
59
Jiyong Park0b0e1b92019-12-03 13:24:29 +090060func (library *Library) AndroidMkEntries() []android.AndroidMkEntries {
Jiyong Park55bd98b2019-12-11 17:27:07 +090061 var entriesList []android.AndroidMkEntries
62
Colin Cross56a83212020-09-15 18:30:11 -070063 if library.hideApexVariantFromMake {
Jiakai Zhang519c5c82021-09-16 06:15:39 +000064 // For a java library built for an APEX, we don't need a Make module for itself. Otherwise, it
65 // will conflict with the platform variant because they have the same module name in the
66 // makefile. However, we need to add its dexpreopt outputs as sub-modules, if it is preopted.
67 dexpreoptEntries := library.dexpreopter.AndroidMkEntriesForApex()
68 if len(dexpreoptEntries) > 0 {
69 entriesList = append(entriesList, dexpreoptEntries...)
70 }
Colin Cross56a83212020-09-15 18:30:11 -070071 entriesList = append(entriesList, android.AndroidMkEntries{Disabled: true})
72 } else if !library.ApexModuleBase.AvailableFor(android.AvailableToPlatform) {
73 // Platform variant. If not available for the platform, we don't need Make module.
Paul Duffin0b58fdb2021-10-02 10:37:58 +010074 entriesList = append(entriesList, android.AndroidMkEntries{Disabled: true})
Colin Crossb549b772020-06-03 17:14:31 +000075 } else {
Colin Cross56a83212020-09-15 18:30:11 -070076 entriesList = append(entriesList, android.AndroidMkEntries{
Jiyong Park55bd98b2019-12-11 17:27:07 +090077 Class: "JAVA_LIBRARIES",
78 OutputFile: android.OptionalPathForPath(library.outputFile),
79 Include: "$(BUILD_SYSTEM)/soong_java_prebuilt.mk",
80 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
Colin Crossaa255532020-07-03 13:18:24 -070081 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Jiyong Park55bd98b2019-12-11 17:27:07 +090082 if len(library.logtagsSrcs) > 0 {
83 var logtags []string
84 for _, l := range library.logtagsSrcs {
85 logtags = append(logtags, l.Rel())
86 }
87 entries.AddStrings("LOCAL_LOGTAGS_FILES", logtags...)
Colin Cross5beccee2017-12-07 15:28:59 -080088 }
Colin Cross5beccee2017-12-07 15:28:59 -080089
Jiyong Park55bd98b2019-12-11 17:27:07 +090090 if library.installFile == nil {
91 entries.SetBoolIfTrue("LOCAL_UNINSTALLABLE_MODULE", true)
92 }
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +010093 if library.dexJarFile.IsSet() {
94 entries.SetPath("LOCAL_SOONG_DEX_JAR", library.dexJarFile.Path())
Jiyong Park55bd98b2019-12-11 17:27:07 +090095 }
96 if len(library.dexpreopter.builtInstalled) > 0 {
97 entries.SetString("LOCAL_SOONG_BUILT_INSTALLED", library.dexpreopter.builtInstalled)
98 }
Jiyong Park92315372021-04-02 08:45:46 +090099 entries.SetString("LOCAL_SDK_VERSION", library.sdkVersion.String())
Jiyong Park55bd98b2019-12-11 17:27:07 +0900100 entries.SetPath("LOCAL_SOONG_CLASSES_JAR", library.implementationAndResourcesJar)
101 entries.SetPath("LOCAL_SOONG_HEADER_JAR", library.headerJarFile)
Colin Crosscb933592017-11-22 13:49:43 -0800102
Jiyong Park55bd98b2019-12-11 17:27:07 +0900103 if library.jacocoReportClassesFile != nil {
104 entries.SetPath("LOCAL_SOONG_JACOCO_REPORT_CLASSES_JAR", library.jacocoReportClassesFile)
105 }
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800106
Ulya Trafimovichfc0f6e32021-08-12 16:16:11 +0100107 requiredUsesLibs, optionalUsesLibs := library.classLoaderContexts.UsesLibs()
108 entries.AddStrings("LOCAL_EXPORT_SDK_LIBRARIES", append(requiredUsesLibs, optionalUsesLibs...)...)
Jiyong Park1be96912018-05-28 18:02:19 +0900109
Colin Crosscb6143a2020-08-14 17:39:29 -0700110 entries.SetOptionalPath("LOCAL_SOONG_PROGUARD_DICT", library.dexer.proguardDictionary)
111 entries.SetOptionalPath("LOCAL_SOONG_PROGUARD_USAGE_ZIP", library.dexer.proguardUsageZip)
Jiyong Park55bd98b2019-12-11 17:27:07 +0900112 entries.SetString("LOCAL_MODULE_STEM", library.Stem())
Colin Crossc0efd1d2020-07-03 11:56:24 -0700113
Colin Cross08dca382020-07-21 20:31:17 -0700114 entries.SetOptionalPaths("LOCAL_SOONG_LINT_REPORTS", library.linter.reports)
Ulya Trafimovich76b08522021-01-14 17:52:43 +0000115
116 if library.dexpreopter.configPath != nil {
117 entries.SetPath("LOCAL_SOONG_DEXPREOPT_CONFIG", library.dexpreopter.configPath)
118 }
Jiyong Park55bd98b2019-12-11 17:27:07 +0900119 },
Colin Crossa18e9cf2017-08-10 17:00:19 -0700120 },
Colin Cross56a83212020-09-15 18:30:11 -0700121 })
Jiyong Park55bd98b2019-12-11 17:27:07 +0900122 }
123
Colin Cross56a83212020-09-15 18:30:11 -0700124 entriesList = append(entriesList, library.AndroidMkEntriesHostDex())
Jiyong Park55bd98b2019-12-11 17:27:07 +0900125
Jiyong Park55bd98b2019-12-11 17:27:07 +0900126 return entriesList
Dan Willemsen218f6562015-07-08 18:13:11 -0700127}
128
Paul Duffin42df1442019-03-20 12:45:53 +0000129// Called for modules that are a component of a test suite.
Colin Crosscfb0f5e2021-09-24 15:47:17 -0700130func testSuiteComponent(entries *android.AndroidMkEntries, test_suites []string, perTestcaseDirectory bool) {
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -0700131 entries.SetString("LOCAL_MODULE_TAGS", "tests")
132 if len(test_suites) > 0 {
Liz Kammer57f5b332020-11-24 12:42:58 -0800133 entries.AddCompatibilityTestSuites(test_suites...)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -0700134 } else {
Liz Kammer57f5b332020-11-24 12:42:58 -0800135 entries.AddCompatibilityTestSuites("null-suite")
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -0700136 }
Colin Crosscfb0f5e2021-09-24 15:47:17 -0700137 entries.SetBoolIfTrue("LOCAL_COMPATIBILITY_PER_TESTCASE_DIRECTORY", perTestcaseDirectory)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -0700138}
139
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900140func (j *Test) AndroidMkEntries() []android.AndroidMkEntries {
141 entriesList := j.Library.AndroidMkEntries()
142 entries := &entriesList[0]
Colin Crossaa255532020-07-03 13:18:24 -0700143 entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Colin Crosscfb0f5e2021-09-24 15:47:17 -0700144 testSuiteComponent(entries, j.testProperties.Test_suites, Bool(j.testProperties.Per_testcase_directory))
Colin Cross303e21f2018-08-07 16:49:25 -0700145 if j.testConfig != nil {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700146 entries.SetPath("LOCAL_FULL_TEST_CONFIG", j.testConfig)
Julien Despreze146e392018-08-02 15:00:46 -0700147 }
Dan Shi95d19422020-08-15 12:24:26 -0700148 androidMkWriteExtraTestConfigs(j.extraTestConfigs, entries)
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700149 androidMkWriteTestData(j.data, entries)
Dan Shi2468d012020-01-06 15:47:57 -0800150 if !BoolDefault(j.testProperties.Auto_gen_config, true) {
151 entries.SetString("LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG", "true")
152 }
kellyhung74b00522020-08-17 18:46:00 +0800153 entries.AddStrings("LOCAL_TEST_MAINLINE_MODULES", j.testProperties.Test_mainline_modules...)
Dan Shid79572f2020-11-13 14:33:46 -0800154 if Bool(j.testProperties.Test_options.Unit_test) {
155 entries.SetBool("LOCAL_IS_UNIT_TEST", true)
156 }
Colin Cross05638fc2018-04-09 18:40:24 -0700157 })
158
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900159 return entriesList
Colin Cross05638fc2018-04-09 18:40:24 -0700160}
161
Dan Shi95d19422020-08-15 12:24:26 -0700162func androidMkWriteExtraTestConfigs(extraTestConfigs android.Paths, entries *android.AndroidMkEntries) {
163 if len(extraTestConfigs) > 0 {
164 entries.AddStrings("LOCAL_EXTRA_FULL_TEST_CONFIGS", extraTestConfigs.Strings()...)
165 }
166}
167
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900168func (j *TestHelperLibrary) AndroidMkEntries() []android.AndroidMkEntries {
169 entriesList := j.Library.AndroidMkEntries()
170 entries := &entriesList[0]
Colin Crossaa255532020-07-03 13:18:24 -0700171 entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Colin Crosscfb0f5e2021-09-24 15:47:17 -0700172 testSuiteComponent(entries, j.testHelperLibraryProperties.Test_suites, Bool(j.testHelperLibraryProperties.Per_testcase_directory))
Paul Duffin42df1442019-03-20 12:45:53 +0000173 })
174
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900175 return entriesList
Paul Duffin42df1442019-03-20 12:45:53 +0000176}
177
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900178func (prebuilt *Import) AndroidMkEntries() []android.AndroidMkEntries {
Colin Cross56a83212020-09-15 18:30:11 -0700179 if prebuilt.hideApexVariantFromMake || !prebuilt.ContainingSdk().Unversioned() {
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900180 return []android.AndroidMkEntries{android.AndroidMkEntries{
Jiyong Park7f7766d2019-07-25 22:02:35 +0900181 Disabled: true,
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900182 }}
Jiyong Park7f7766d2019-07-25 22:02:35 +0900183 }
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900184 return []android.AndroidMkEntries{android.AndroidMkEntries{
Colin Crossa18e9cf2017-08-10 17:00:19 -0700185 Class: "JAVA_LIBRARIES",
186 OutputFile: android.OptionalPathForPath(prebuilt.combinedClasspathFile),
Colin Cross53499412017-09-07 13:20:25 -0700187 Include: "$(BUILD_SYSTEM)/soong_java_prebuilt.mk",
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700188 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
Colin Crossaa255532020-07-03 13:18:24 -0700189 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700190 entries.SetBool("LOCAL_UNINSTALLABLE_MODULE", !Bool(prebuilt.properties.Installable))
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +0100191 if prebuilt.dexJarFile.IsSet() {
192 entries.SetPath("LOCAL_SOONG_DEX_JAR", prebuilt.dexJarFile.Path())
Bill Peckhamfb04df42021-01-11 12:27:24 -0800193 }
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700194 entries.SetPath("LOCAL_SOONG_HEADER_JAR", prebuilt.combinedClasspathFile)
195 entries.SetPath("LOCAL_SOONG_CLASSES_JAR", prebuilt.combinedClasspathFile)
Jiyong Park92315372021-04-02 08:45:46 +0900196 entries.SetString("LOCAL_SDK_VERSION", prebuilt.sdkVersion.String())
Jiyong Park0b238752019-10-29 11:23:10 +0900197 entries.SetString("LOCAL_MODULE_STEM", prebuilt.Stem())
Colin Crossa18e9cf2017-08-10 17:00:19 -0700198 },
199 },
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900200 }}
Dan Willemsen218f6562015-07-08 18:13:11 -0700201}
Colin Cross10a03492017-08-10 17:09:43 -0700202
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900203func (prebuilt *DexImport) AndroidMkEntries() []android.AndroidMkEntries {
Colin Cross56a83212020-09-15 18:30:11 -0700204 if prebuilt.hideApexVariantFromMake {
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900205 return []android.AndroidMkEntries{android.AndroidMkEntries{
Jiyong Park7f7766d2019-07-25 22:02:35 +0900206 Disabled: true,
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900207 }}
Jiyong Park7f7766d2019-07-25 22:02:35 +0900208 }
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900209 return []android.AndroidMkEntries{android.AndroidMkEntries{
Colin Cross42be7612019-02-21 18:12:14 -0800210 Class: "JAVA_LIBRARIES",
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +0100211 OutputFile: android.OptionalPathForPath(prebuilt.dexJarFile.Path()),
Colin Cross42be7612019-02-21 18:12:14 -0800212 Include: "$(BUILD_SYSTEM)/soong_java_prebuilt.mk",
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700213 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
Colin Crossaa255532020-07-03 13:18:24 -0700214 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +0100215 if prebuilt.dexJarFile.IsSet() {
216 entries.SetPath("LOCAL_SOONG_DEX_JAR", prebuilt.dexJarFile.Path())
Colin Cross42be7612019-02-21 18:12:14 -0800217 }
218 if len(prebuilt.dexpreopter.builtInstalled) > 0 {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700219 entries.SetString("LOCAL_SOONG_BUILT_INSTALLED", prebuilt.dexpreopter.builtInstalled)
Colin Cross42be7612019-02-21 18:12:14 -0800220 }
Jiyong Park0b238752019-10-29 11:23:10 +0900221 entries.SetString("LOCAL_MODULE_STEM", prebuilt.Stem())
Colin Cross42be7612019-02-21 18:12:14 -0800222 },
223 },
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900224 }}
Colin Cross42be7612019-02-21 18:12:14 -0800225}
226
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900227func (prebuilt *AARImport) AndroidMkEntries() []android.AndroidMkEntries {
Colin Cross56a83212020-09-15 18:30:11 -0700228 if prebuilt.hideApexVariantFromMake {
Jooyung Hanacc7bbe2020-05-20 09:06:00 +0900229 return []android.AndroidMkEntries{{
230 Disabled: true,
231 }}
232 }
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900233 return []android.AndroidMkEntries{android.AndroidMkEntries{
Colin Crossfabb6082018-02-20 17:22:23 -0800234 Class: "JAVA_LIBRARIES",
235 OutputFile: android.OptionalPathForPath(prebuilt.classpathFile),
236 Include: "$(BUILD_SYSTEM)/soong_java_prebuilt.mk",
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700237 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
Colin Crossaa255532020-07-03 13:18:24 -0700238 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700239 entries.SetBool("LOCAL_UNINSTALLABLE_MODULE", true)
240 entries.SetPath("LOCAL_SOONG_HEADER_JAR", prebuilt.classpathFile)
241 entries.SetPath("LOCAL_SOONG_CLASSES_JAR", prebuilt.classpathFile)
242 entries.SetPath("LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE", prebuilt.exportPackage)
243 entries.SetPath("LOCAL_SOONG_EXPORT_PROGUARD_FLAGS", prebuilt.proguardFlags)
244 entries.SetPath("LOCAL_SOONG_STATIC_LIBRARY_EXTRA_PACKAGES", prebuilt.extraAaptPackagesFile)
245 entries.SetPath("LOCAL_FULL_MANIFEST_FILE", prebuilt.manifest)
Jiyong Park92315372021-04-02 08:45:46 +0900246 entries.SetString("LOCAL_SDK_VERSION", prebuilt.sdkVersion.String())
Colin Crossfabb6082018-02-20 17:22:23 -0800247 },
248 },
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900249 }}
Colin Crossfabb6082018-02-20 17:22:23 -0800250}
251
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900252func (binary *Binary) AndroidMkEntries() []android.AndroidMkEntries {
Colin Cross10a03492017-08-10 17:09:43 -0700253
Colin Cross6b4a32d2017-12-05 13:42:45 -0800254 if !binary.isWrapperVariant {
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900255 return []android.AndroidMkEntries{android.AndroidMkEntries{
Colin Cross6b4a32d2017-12-05 13:42:45 -0800256 Class: "JAVA_LIBRARIES",
Colin Cross331a1212018-08-15 20:40:52 -0700257 OutputFile: android.OptionalPathForPath(binary.outputFile),
Colin Cross6b4a32d2017-12-05 13:42:45 -0800258 Include: "$(BUILD_SYSTEM)/soong_java_prebuilt.mk",
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700259 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
Colin Crossaa255532020-07-03 13:18:24 -0700260 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700261 entries.SetPath("LOCAL_SOONG_HEADER_JAR", binary.headerJarFile)
262 entries.SetPath("LOCAL_SOONG_CLASSES_JAR", binary.implementationAndResourcesJar)
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +0100263 if binary.dexJarFile.IsSet() {
264 entries.SetPath("LOCAL_SOONG_DEX_JAR", binary.dexJarFile.Path())
Colin Cross12fc2af2019-01-14 12:35:45 -0800265 }
266 if len(binary.dexpreopter.builtInstalled) > 0 {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700267 entries.SetString("LOCAL_SOONG_BUILT_INSTALLED", binary.dexpreopter.builtInstalled)
Colin Cross12fc2af2019-01-14 12:35:45 -0800268 }
Colin Cross331a1212018-08-15 20:40:52 -0700269 },
270 },
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700271 ExtraFooters: []android.AndroidMkExtraFootersFunc{
Jaewoong Jung02b11a62020-12-07 10:23:54 -0800272 func(w io.Writer, name, prefix, moduleDir string) {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700273 fmt.Fprintln(w, "jar_installed_module := $(LOCAL_INSTALLED_MODULE)")
274 },
Colin Cross6b4a32d2017-12-05 13:42:45 -0800275 },
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900276 }}
Colin Cross6b4a32d2017-12-05 13:42:45 -0800277 } else {
Colin Cross44b85d02021-02-19 17:37:04 -0800278 outputFile := binary.wrapperFile
279 // Have Make installation trigger Soong installation by using Soong's install path as
280 // the output file.
281 if binary.Host() {
282 outputFile = binary.binaryFile
283 }
284
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900285 return []android.AndroidMkEntries{android.AndroidMkEntries{
Colin Cross6b4a32d2017-12-05 13:42:45 -0800286 Class: "EXECUTABLES",
Colin Cross44b85d02021-02-19 17:37:04 -0800287 OutputFile: android.OptionalPathForPath(outputFile),
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700288 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
Colin Crossaa255532020-07-03 13:18:24 -0700289 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700290 entries.SetBool("LOCAL_STRIP_MODULE", false)
Colin Cross6b4a32d2017-12-05 13:42:45 -0800291 },
292 },
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700293 ExtraFooters: []android.AndroidMkExtraFootersFunc{
Jaewoong Jung02b11a62020-12-07 10:23:54 -0800294 func(w io.Writer, name, prefix, moduleDir string) {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700295 // Ensure that the wrapper script timestamp is always updated when the jar is updated
296 fmt.Fprintln(w, "$(LOCAL_INSTALLED_MODULE): $(jar_installed_module)")
297 fmt.Fprintln(w, "jar_installed_module :=")
298 },
Colin Cross6b4a32d2017-12-05 13:42:45 -0800299 },
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900300 }}
Colin Cross10a03492017-08-10 17:09:43 -0700301 }
302}
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800303
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900304func (app *AndroidApp) AndroidMkEntries() []android.AndroidMkEntries {
Colin Cross56a83212020-09-15 18:30:11 -0700305 if app.hideApexVariantFromMake || app.appProperties.HideFromMake {
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900306 return []android.AndroidMkEntries{android.AndroidMkEntries{
Jiyong Park52cd06f2019-11-11 10:14:32 +0900307 Disabled: true,
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900308 }}
Jiyong Park52cd06f2019-11-11 10:14:32 +0900309 }
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900310 return []android.AndroidMkEntries{android.AndroidMkEntries{
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800311 Class: "APPS",
312 OutputFile: android.OptionalPathForPath(app.outputFile),
313 Include: "$(BUILD_SYSTEM)/soong_app_prebuilt.mk",
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700314 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
Colin Crossaa255532020-07-03 13:18:24 -0700315 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700316 // App module names can be overridden.
317 entries.SetString("LOCAL_MODULE", app.installApkName)
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700318 entries.SetBoolIfTrue("LOCAL_UNINSTALLABLE_MODULE", app.appProperties.PreventInstall)
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700319 entries.SetPath("LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE", app.exportPackage)
Martin Stjernholm8be1e6d2021-09-15 03:34:04 +0100320 if app.dexJarFile.IsSet() {
321 entries.SetPath("LOCAL_SOONG_DEX_JAR", app.dexJarFile.Path())
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800322 }
Colin Cross331a1212018-08-15 20:40:52 -0700323 if app.implementationAndResourcesJar != nil {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700324 entries.SetPath("LOCAL_SOONG_CLASSES_JAR", app.implementationAndResourcesJar)
Colin Cross5dfabfb2017-12-14 13:19:01 -0800325 }
326 if app.headerJarFile != nil {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700327 entries.SetPath("LOCAL_SOONG_HEADER_JAR", app.headerJarFile)
Colin Cross5dfabfb2017-12-14 13:19:01 -0800328 }
Colin Crossf6237212018-10-29 23:14:58 -0700329 if app.bundleFile != nil {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700330 entries.SetPath("LOCAL_SOONG_BUNDLE", app.bundleFile)
Colin Crossf6237212018-10-29 23:14:58 -0700331 }
Colin Cross70798562017-12-13 22:42:59 -0800332 if app.jacocoReportClassesFile != nil {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700333 entries.SetPath("LOCAL_SOONG_JACOCO_REPORT_CLASSES_JAR", app.jacocoReportClassesFile)
Colin Cross70798562017-12-13 22:42:59 -0800334 }
Colin Crosscb6143a2020-08-14 17:39:29 -0700335 entries.SetOptionalPath("LOCAL_SOONG_PROGUARD_DICT", app.dexer.proguardDictionary)
336 entries.SetOptionalPath("LOCAL_SOONG_PROGUARD_USAGE_ZIP", app.dexer.proguardUsageZip)
Colin Cross70798562017-12-13 22:42:59 -0800337
338 if app.Name() == "framework-res" {
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700339 entries.SetString("LOCAL_MODULE_PATH", "$(TARGET_OUT_JAVA_LIBRARIES)")
Colin Cross70798562017-12-13 22:42:59 -0800340 // Make base_rules.mk not put framework-res in a subdirectory called
341 // framework_res.
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700342 entries.SetBoolIfTrue("LOCAL_NO_STANDARD_LIBRARIES", true)
Colin Cross70798562017-12-13 22:42:59 -0800343 }
344
Anton Hansson53c88442019-03-18 15:53:16 +0000345 filterRRO := func(filter overlayType) android.Paths {
346 var paths android.Paths
347 for _, d := range app.rroDirs {
348 if d.overlayType == filter {
349 paths = append(paths, d.path)
350 }
351 }
Colin Crossa140bb02018-04-17 10:52:26 -0700352 // Reverse the order, Soong stores rroDirs in aapt2 order (low to high priority), but Make
353 // expects it in LOCAL_RESOURCE_DIRS order (high to low priority).
Anton Hansson53c88442019-03-18 15:53:16 +0000354 return android.ReversePaths(paths)
355 }
356 deviceRRODirs := filterRRO(device)
357 if len(deviceRRODirs) > 0 {
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700358 entries.AddStrings("LOCAL_SOONG_DEVICE_RRO_DIRS", deviceRRODirs.Strings()...)
Anton Hansson53c88442019-03-18 15:53:16 +0000359 }
360 productRRODirs := filterRRO(product)
361 if len(productRRODirs) > 0 {
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700362 entries.AddStrings("LOCAL_SOONG_PRODUCT_RRO_DIRS", productRRODirs.Strings()...)
Colin Cross70798562017-12-13 22:42:59 -0800363 }
364
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700365 entries.SetBoolIfTrue("LOCAL_EXPORT_PACKAGE_RESOURCES", Bool(app.appProperties.Export_package_resources))
Colin Cross70798562017-12-13 22:42:59 -0800366
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700367 entries.SetPath("LOCAL_FULL_MANIFEST_FILE", app.manifestPath)
Colin Cross70798562017-12-13 22:42:59 -0800368
Jiyong Parkf7487312019-10-17 12:54:30 +0900369 entries.SetBoolIfTrue("LOCAL_PRIVILEGED_MODULE", app.Privileged())
Colin Crosse1731a52017-12-14 11:22:55 -0800370
Jaewoong Jung78ec5d82020-01-31 10:11:47 -0800371 entries.SetString("LOCAL_CERTIFICATE", app.certificate.AndroidMkString())
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700372 entries.AddStrings("LOCAL_OVERRIDES_PACKAGES", app.getOverriddenPackages()...)
Colin Crossa4f08812018-10-02 22:03:40 -0700373
Colin Cross403cc152020-07-06 14:15:24 -0700374 if app.embeddedJniLibs {
375 jniSymbols := app.JNISymbolsInstalls(app.installPathForJNISymbols.String())
376 entries.SetString("LOCAL_SOONG_JNI_LIBS_SYMBOLS", jniSymbols.String())
377 } else {
378 for _, jniLib := range app.jniLibs {
379 entries.AddStrings("LOCAL_SOONG_JNI_LIBS_"+jniLib.target.Arch.ArchType.String(), jniLib.name)
380 }
Colin Crossa4f08812018-10-02 22:03:40 -0700381 }
Colin Cross403cc152020-07-06 14:15:24 -0700382
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700383 if len(app.jniCoverageOutputs) > 0 {
384 entries.AddStrings("LOCAL_PREBUILT_COVERAGE_ARCHIVE", app.jniCoverageOutputs.Strings()...)
385 }
Colin Cross43f08db2018-11-12 10:13:39 -0800386 if len(app.dexpreopter.builtInstalled) > 0 {
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700387 entries.SetString("LOCAL_SOONG_BUILT_INSTALLED", app.dexpreopter.builtInstalled)
Colin Cross43f08db2018-11-12 10:13:39 -0800388 }
Jeongik Chac6246672021-04-08 00:00:19 +0900389 if app.dexpreopter.configPath != nil {
390 entries.SetPath("LOCAL_SOONG_DEXPREOPT_CONFIG", app.dexpreopter.configPath)
391 }
Jaewoong Jung5a498812019-11-07 14:14:38 -0800392 for _, extra := range app.extraOutputFiles {
393 install := app.onDeviceDir + "/" + extra.Base()
394 entries.AddStrings("LOCAL_SOONG_BUILT_INSTALLED", extra.String()+":"+install)
Colin Crosse560c4a2019-03-19 16:03:11 -0700395 }
Colin Crossc0efd1d2020-07-03 11:56:24 -0700396
Colin Cross08dca382020-07-21 20:31:17 -0700397 entries.SetOptionalPaths("LOCAL_SOONG_LINT_REPORTS", app.linter.reports)
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700398 },
399 },
400 ExtraFooters: []android.AndroidMkExtraFootersFunc{
Jaewoong Jung02b11a62020-12-07 10:23:54 -0800401 func(w io.Writer, name, prefix, moduleDir string) {
Jaewoong Jung98772792019-07-01 17:15:13 -0700402 if app.noticeOutputs.Merged.Valid() {
403 fmt.Fprintf(w, "$(call dist-for-goals,%s,%s:%s)\n",
404 app.installApkName, app.noticeOutputs.Merged.String(), app.installApkName+"_NOTICE")
405 }
406 if app.noticeOutputs.TxtOutput.Valid() {
407 fmt.Fprintf(w, "$(call dist-for-goals,%s,%s:%s)\n",
408 app.installApkName, app.noticeOutputs.TxtOutput.String(), app.installApkName+"_NOTICE.txt")
409 }
410 if app.noticeOutputs.HtmlOutput.Valid() {
411 fmt.Fprintf(w, "$(call dist-for-goals,%s,%s:%s)\n",
412 app.installApkName, app.noticeOutputs.HtmlOutput.String(), app.installApkName+"_NOTICE.html")
413 }
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800414 },
415 },
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900416 }}
Colin Crossa97c5d32018-03-28 14:58:31 -0700417}
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800418
Jaewoong Jung9109d722019-01-30 13:13:52 -0800419func (a *AndroidApp) getOverriddenPackages() []string {
420 var overridden []string
421 if len(a.appProperties.Overrides) > 0 {
422 overridden = append(overridden, a.appProperties.Overrides...)
423 }
424 if a.Name() != a.installApkName {
425 overridden = append(overridden, a.Name())
426 }
427 return overridden
428}
429
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900430func (a *AndroidTest) AndroidMkEntries() []android.AndroidMkEntries {
431 entriesList := a.AndroidApp.AndroidMkEntries()
432 entries := &entriesList[0]
Colin Crossaa255532020-07-03 13:18:24 -0700433 entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Colin Crosscfb0f5e2021-09-24 15:47:17 -0700434 testSuiteComponent(entries, a.testProperties.Test_suites, Bool(a.testProperties.Per_testcase_directory))
Colin Cross303e21f2018-08-07 16:49:25 -0700435 if a.testConfig != nil {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700436 entries.SetPath("LOCAL_FULL_TEST_CONFIG", a.testConfig)
Julien Despreze146e392018-08-02 15:00:46 -0700437 }
Dan Shi95d19422020-08-15 12:24:26 -0700438 androidMkWriteExtraTestConfigs(a.extraTestConfigs, entries)
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700439 androidMkWriteTestData(a.data, entries)
kellyhung74b00522020-08-17 18:46:00 +0800440 entries.AddStrings("LOCAL_TEST_MAINLINE_MODULES", a.testProperties.Test_mainline_modules...)
Colin Cross252fc6f2018-10-04 15:22:03 -0700441 })
442
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900443 return entriesList
Colin Cross252fc6f2018-10-04 15:22:03 -0700444}
445
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900446func (a *AndroidTestHelperApp) AndroidMkEntries() []android.AndroidMkEntries {
447 entriesList := a.AndroidApp.AndroidMkEntries()
448 entries := &entriesList[0]
Colin Crossaa255532020-07-03 13:18:24 -0700449 entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Colin Crosscfb0f5e2021-09-24 15:47:17 -0700450 testSuiteComponent(entries, a.appTestHelperAppProperties.Test_suites, Bool(a.appTestHelperAppProperties.Per_testcase_directory))
Yuntao Xu7a318552021-05-27 10:30:26 -0700451 // introduce a flag variable to control the generation of the .config file
452 entries.SetString("LOCAL_DISABLE_TEST_CONFIG", "true")
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700453 })
Colin Crossa97c5d32018-03-28 14:58:31 -0700454
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900455 return entriesList
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700456}
457
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900458func (a *AndroidLibrary) AndroidMkEntries() []android.AndroidMkEntries {
Colin Cross56a83212020-09-15 18:30:11 -0700459 if a.hideApexVariantFromMake {
Jooyung Hanacc7bbe2020-05-20 09:06:00 +0900460 return []android.AndroidMkEntries{{
461 Disabled: true,
462 }}
463 }
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900464 entriesList := a.Library.AndroidMkEntries()
465 entries := &entriesList[0]
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700466
Colin Crossaa255532020-07-03 13:18:24 -0700467 entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Colin Crossa54974c2018-10-29 23:15:37 -0700468 if a.aarFile != nil {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700469 entries.SetPath("LOCAL_SOONG_AAR", a.aarFile)
Colin Crossa54974c2018-10-29 23:15:37 -0700470 }
Colin Crossa97c5d32018-03-28 14:58:31 -0700471
472 if a.Name() == "framework-res" {
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700473 entries.SetString("LOCAL_MODULE_PATH", "$(TARGET_OUT_JAVA_LIBRARIES)")
Colin Crossa97c5d32018-03-28 14:58:31 -0700474 // Make base_rules.mk not put framework-res in a subdirectory called
475 // framework_res.
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700476 entries.SetBoolIfTrue("LOCAL_NO_STANDARD_LIBRARIES", true)
Colin Crossa97c5d32018-03-28 14:58:31 -0700477 }
478
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700479 entries.SetPath("LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE", a.exportPackage)
480 entries.SetPath("LOCAL_SOONG_STATIC_LIBRARY_EXTRA_PACKAGES", a.extraAaptPackagesFile)
481 entries.SetPath("LOCAL_FULL_MANIFEST_FILE", a.mergedManifestFile)
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700482 entries.AddStrings("LOCAL_SOONG_EXPORT_PROGUARD_FLAGS", a.exportedProguardFlagFiles.Strings()...)
483 entries.SetBoolIfTrue("LOCAL_UNINSTALLABLE_MODULE", true)
Colin Crossa97c5d32018-03-28 14:58:31 -0700484 })
485
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900486 return entriesList
Colin Cross5ab4e6d2017-11-22 16:20:45 -0800487}
Nan Zhang581fd212018-01-10 16:06:12 -0800488
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900489func (jd *Javadoc) AndroidMkEntries() []android.AndroidMkEntries {
490 return []android.AndroidMkEntries{android.AndroidMkEntries{
Nan Zhang581fd212018-01-10 16:06:12 -0800491 Class: "JAVA_LIBRARIES",
Nan Zhangccff0f72018-03-08 17:26:16 -0800492 OutputFile: android.OptionalPathForPath(jd.stubsSrcJar),
Colin Cross5fa9d6f2018-08-08 21:44:48 -0700493 Include: "$(BUILD_SYSTEM)/soong_droiddoc_prebuilt.mk",
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700494 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
Colin Crossaa255532020-07-03 13:18:24 -0700495 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Colin Cross38b40df2018-04-10 16:14:46 -0700496 if BoolDefault(jd.properties.Installable, true) {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700497 entries.SetPath("LOCAL_DROIDDOC_DOC_ZIP", jd.docZip)
Nan Zhang581fd212018-01-10 16:06:12 -0800498 }
Nan Zhangccff0f72018-03-08 17:26:16 -0800499 if jd.stubsSrcJar != nil {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700500 entries.SetPath("LOCAL_DROIDDOC_STUBS_SRCJAR", jd.stubsSrcJar)
Nan Zhang581fd212018-01-10 16:06:12 -0800501 }
502 },
503 },
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900504 }}
Nan Zhang581fd212018-01-10 16:06:12 -0800505}
506
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900507func (ddoc *Droiddoc) AndroidMkEntries() []android.AndroidMkEntries {
508 return []android.AndroidMkEntries{android.AndroidMkEntries{
Nan Zhang581fd212018-01-10 16:06:12 -0800509 Class: "JAVA_LIBRARIES",
Liz Kammere1ab2502020-09-10 15:29:25 +0000510 OutputFile: android.OptionalPathForPath(ddoc.Javadoc.docZip),
Colin Cross5fa9d6f2018-08-08 21:44:48 -0700511 Include: "$(BUILD_SYSTEM)/soong_droiddoc_prebuilt.mk",
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700512 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
Colin Crossaa255532020-07-03 13:18:24 -0700513 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Liz Kammere1ab2502020-09-10 15:29:25 +0000514 if ddoc.Javadoc.docZip != nil {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700515 entries.SetPath("LOCAL_DROIDDOC_DOC_ZIP", ddoc.Javadoc.docZip)
Nan Zhang581fd212018-01-10 16:06:12 -0800516 }
Liz Kammere1ab2502020-09-10 15:29:25 +0000517 entries.SetBoolIfTrue("LOCAL_UNINSTALLABLE_MODULE", !BoolDefault(ddoc.Javadoc.properties.Installable, true))
Nan Zhang581fd212018-01-10 16:06:12 -0800518 },
519 },
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900520 }}
Nan Zhang581fd212018-01-10 16:06:12 -0800521}
Colin Crossd96ca352018-08-10 16:06:24 -0700522
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900523func (dstubs *Droidstubs) AndroidMkEntries() []android.AndroidMkEntries {
Paul Duffin3ae29512020-04-08 18:18:03 +0100524 // If the stubsSrcJar is not generated (because generate_stubs is false) then
525 // use the api file as the output file to ensure the relevant phony targets
526 // are created in make if only the api txt file is being generated. This is
527 // needed because an invalid output file would prevent the make entries from
528 // being written.
Jingwen Chen7b27ca72020-07-24 09:13:49 +0000529 //
530 // Note that dstubs.apiFile can be also be nil if WITHOUT_CHECKS_API is true.
Paul Duffin3ae29512020-04-08 18:18:03 +0100531 // TODO(b/146727827): Revert when we do not need to generate stubs and API separately.
Jingwen Chen7b27ca72020-07-24 09:13:49 +0000532
Paul Duffin3ae29512020-04-08 18:18:03 +0100533 outputFile := android.OptionalPathForPath(dstubs.stubsSrcJar)
534 if !outputFile.Valid() {
Jingwen Chen7b27ca72020-07-24 09:13:49 +0000535 outputFile = android.OptionalPathForPath(dstubs.apiFile)
Paul Duffin3ae29512020-04-08 18:18:03 +0100536 }
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900537 return []android.AndroidMkEntries{android.AndroidMkEntries{
Nan Zhang1598a9e2018-09-04 17:14:32 -0700538 Class: "JAVA_LIBRARIES",
Paul Duffin3ae29512020-04-08 18:18:03 +0100539 OutputFile: outputFile,
Nan Zhang1598a9e2018-09-04 17:14:32 -0700540 Include: "$(BUILD_SYSTEM)/soong_droiddoc_prebuilt.mk",
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700541 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
Colin Crossaa255532020-07-03 13:18:24 -0700542 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Nan Zhang1598a9e2018-09-04 17:14:32 -0700543 if dstubs.Javadoc.stubsSrcJar != nil {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700544 entries.SetPath("LOCAL_DROIDDOC_STUBS_SRCJAR", dstubs.Javadoc.stubsSrcJar)
Nan Zhang1598a9e2018-09-04 17:14:32 -0700545 }
Nan Zhangd23ac692018-09-18 10:41:33 -0700546 if dstubs.apiVersionsXml != nil {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700547 entries.SetPath("LOCAL_DROIDDOC_API_VERSIONS_XML", dstubs.apiVersionsXml)
Nan Zhangd23ac692018-09-18 10:41:33 -0700548 }
Nan Zhang1598a9e2018-09-04 17:14:32 -0700549 if dstubs.annotationsZip != nil {
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700550 entries.SetPath("LOCAL_DROIDDOC_ANNOTATIONS_ZIP", dstubs.annotationsZip)
Nan Zhang1598a9e2018-09-04 17:14:32 -0700551 }
Jerome Gaillard0f599032019-10-10 19:29:11 +0100552 if dstubs.metadataZip != nil {
553 entries.SetPath("LOCAL_DROIDDOC_METADATA_ZIP", dstubs.metadataZip)
554 }
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700555 },
556 },
557 ExtraFooters: []android.AndroidMkExtraFootersFunc{
Jaewoong Jung02b11a62020-12-07 10:23:54 -0800558 func(w io.Writer, name, prefix, moduleDir string) {
Anton Hansson27d9ec12020-04-17 11:48:24 +0100559 if dstubs.apiFile != nil {
560 fmt.Fprintf(w, ".PHONY: %s %s.txt\n", dstubs.Name(), dstubs.Name())
561 fmt.Fprintf(w, "%s %s.txt: %s\n", dstubs.Name(), dstubs.Name(), dstubs.apiFile)
562 }
563 if dstubs.removedApiFile != nil {
564 fmt.Fprintf(w, ".PHONY: %s %s.txt\n", dstubs.Name(), dstubs.Name())
565 fmt.Fprintf(w, "%s %s.txt: %s\n", dstubs.Name(), dstubs.Name(), dstubs.removedApiFile)
566 }
Nan Zhang1598a9e2018-09-04 17:14:32 -0700567 if dstubs.checkCurrentApiTimestamp != nil {
568 fmt.Fprintln(w, ".PHONY:", dstubs.Name()+"-check-current-api")
569 fmt.Fprintln(w, dstubs.Name()+"-check-current-api:",
570 dstubs.checkCurrentApiTimestamp.String())
571
572 fmt.Fprintln(w, ".PHONY: checkapi")
573 fmt.Fprintln(w, "checkapi:",
574 dstubs.checkCurrentApiTimestamp.String())
575
576 fmt.Fprintln(w, ".PHONY: droidcore")
577 fmt.Fprintln(w, "droidcore: checkapi")
578 }
579 if dstubs.updateCurrentApiTimestamp != nil {
580 fmt.Fprintln(w, ".PHONY:", dstubs.Name()+"-update-current-api")
581 fmt.Fprintln(w, dstubs.Name()+"-update-current-api:",
582 dstubs.updateCurrentApiTimestamp.String())
583
584 fmt.Fprintln(w, ".PHONY: update-api")
585 fmt.Fprintln(w, "update-api:",
586 dstubs.updateCurrentApiTimestamp.String())
587 }
588 if dstubs.checkLastReleasedApiTimestamp != nil {
589 fmt.Fprintln(w, ".PHONY:", dstubs.Name()+"-check-last-released-api")
590 fmt.Fprintln(w, dstubs.Name()+"-check-last-released-api:",
591 dstubs.checkLastReleasedApiTimestamp.String())
Adrian Roose3fe4812019-01-23 14:51:55 +0100592
Makoto Onukia573f192020-04-21 11:52:39 -0700593 fmt.Fprintln(w, ".PHONY: checkapi")
594 fmt.Fprintln(w, "checkapi:",
595 dstubs.checkLastReleasedApiTimestamp.String())
Adrian Roose3fe4812019-01-23 14:51:55 +0100596
Makoto Onukia573f192020-04-21 11:52:39 -0700597 fmt.Fprintln(w, ".PHONY: droidcore")
598 fmt.Fprintln(w, "droidcore: checkapi")
Nan Zhang1598a9e2018-09-04 17:14:32 -0700599 }
Adrian Roos075eedc2019-10-10 12:07:03 +0200600 if dstubs.apiLintTimestamp != nil {
601 fmt.Fprintln(w, ".PHONY:", dstubs.Name()+"-api-lint")
602 fmt.Fprintln(w, dstubs.Name()+"-api-lint:",
603 dstubs.apiLintTimestamp.String())
604
605 fmt.Fprintln(w, ".PHONY: checkapi")
606 fmt.Fprintln(w, "checkapi:",
Adrian Roos3b8f1cd2019-11-01 13:42:39 +0100607 dstubs.Name()+"-api-lint")
Adrian Roos075eedc2019-10-10 12:07:03 +0200608
609 fmt.Fprintln(w, ".PHONY: droidcore")
610 fmt.Fprintln(w, "droidcore: checkapi")
Adrian Roos3b8f1cd2019-11-01 13:42:39 +0100611
612 if dstubs.apiLintReport != nil {
613 fmt.Fprintf(w, "$(call dist-for-goals,%s,%s:%s)\n", dstubs.Name()+"-api-lint",
614 dstubs.apiLintReport.String(), "apilint/"+dstubs.Name()+"-lint-report.txt")
615 }
Adrian Roos075eedc2019-10-10 12:07:03 +0200616 }
Pete Gillin581d6082018-10-22 15:55:04 +0100617 if dstubs.checkNullabilityWarningsTimestamp != nil {
618 fmt.Fprintln(w, ".PHONY:", dstubs.Name()+"-check-nullability-warnings")
619 fmt.Fprintln(w, dstubs.Name()+"-check-nullability-warnings:",
620 dstubs.checkNullabilityWarningsTimestamp.String())
621
622 fmt.Fprintln(w, ".PHONY:", "droidcore")
623 fmt.Fprintln(w, "droidcore: ", dstubs.Name()+"-check-nullability-warnings")
624 }
Nan Zhang1598a9e2018-09-04 17:14:32 -0700625 },
626 },
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900627 }}
Nan Zhang1598a9e2018-09-04 17:14:32 -0700628}
629
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900630func (a *AndroidAppImport) AndroidMkEntries() []android.AndroidMkEntries {
Colin Cross56a83212020-09-15 18:30:11 -0700631 if a.hideApexVariantFromMake {
Jiyong Park592a6a42020-04-21 22:34:28 +0900632 // The non-platform variant is placed inside APEX. No reason to
633 // make it available to Make.
634 return nil
635 }
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900636 return []android.AndroidMkEntries{android.AndroidMkEntries{
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700637 Class: "APPS",
Jaewoong Jung8aae22e2019-07-17 10:21:49 -0700638 OutputFile: android.OptionalPathForPath(a.outputFile),
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700639 Include: "$(BUILD_SYSTEM)/soong_app_prebuilt.mk",
Jaewoong Junge0dc8df2019-08-27 17:33:16 -0700640 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
Colin Crossaa255532020-07-03 13:18:24 -0700641 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Jiyong Parkf7487312019-10-17 12:54:30 +0900642 entries.SetBoolIfTrue("LOCAL_PRIVILEGED_MODULE", a.Privileged())
Colin Cross503c1d02020-01-28 14:00:53 -0800643 entries.SetString("LOCAL_CERTIFICATE", a.certificate.AndroidMkString())
Jaewoong Junge0dc8df2019-08-27 17:33:16 -0700644 entries.AddStrings("LOCAL_OVERRIDES_PACKAGES", a.properties.Overrides...)
645 if len(a.dexpreopter.builtInstalled) > 0 {
646 entries.SetString("LOCAL_SOONG_BUILT_INSTALLED", a.dexpreopter.builtInstalled)
647 }
648 entries.AddStrings("LOCAL_INSTALLED_MODULE_STEM", a.installPath.Rel())
Bill Peckhama036da92021-01-08 16:09:09 -0800649 if Bool(a.properties.Export_package_resources) {
650 entries.SetPath("LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE", a.outputFile)
651 }
Jaewoong Junge0dc8df2019-08-27 17:33:16 -0700652 },
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700653 },
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900654 }}
Jaewoong Jungccbb3932019-04-15 09:48:31 -0700655}
656
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900657func (a *AndroidTestImport) AndroidMkEntries() []android.AndroidMkEntries {
658 entriesList := a.AndroidAppImport.AndroidMkEntries()
659 entries := &entriesList[0]
Colin Crossaa255532020-07-03 13:18:24 -0700660 entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Colin Crosscfb0f5e2021-09-24 15:47:17 -0700661 testSuiteComponent(entries, a.testProperties.Test_suites, Bool(a.testProperties.Per_testcase_directory))
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700662 androidMkWriteTestData(a.data, entries)
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -0700663 })
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900664 return entriesList
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -0700665}
666
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700667func androidMkWriteTestData(data android.Paths, entries *android.AndroidMkEntries) {
Jaewoong Jungb28eb5f2019-08-27 15:01:50 -0700668 var testFiles []string
669 for _, d := range data {
670 testFiles = append(testFiles, d.String()+":"+d.Rel())
671 }
672 entries.AddStrings("LOCAL_COMPATIBILITY_SUPPORT_FILES", testFiles...)
673}
Jaewoong Jung9befb0c2020-01-18 10:33:43 -0800674
675func (r *RuntimeResourceOverlay) AndroidMkEntries() []android.AndroidMkEntries {
676 return []android.AndroidMkEntries{android.AndroidMkEntries{
677 Class: "ETC",
678 OutputFile: android.OptionalPathForPath(r.outputFile),
679 Include: "$(BUILD_SYSTEM)/soong_app_prebuilt.mk",
680 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
Colin Crossaa255532020-07-03 13:18:24 -0700681 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Jaewoong Jung78ec5d82020-01-31 10:11:47 -0800682 entries.SetString("LOCAL_CERTIFICATE", r.certificate.AndroidMkString())
Jaewoong Jung9befb0c2020-01-18 10:33:43 -0800683 entries.SetPath("LOCAL_MODULE_PATH", r.installDir.ToMakePath())
Jaewoong Jungad0177b2020-04-24 15:22:40 -0700684 entries.AddStrings("LOCAL_OVERRIDES_PACKAGES", r.properties.Overrides...)
Jaewoong Jung9befb0c2020-01-18 10:33:43 -0800685 },
686 },
687 }}
688}
Sasha Smundaka7856c02020-04-23 09:49:59 -0700689
690func (apkSet *AndroidAppSet) AndroidMkEntries() []android.AndroidMkEntries {
691 return []android.AndroidMkEntries{
692 android.AndroidMkEntries{
693 Class: "APPS",
694 OutputFile: android.OptionalPathForPath(apkSet.packedOutput),
695 Include: "$(BUILD_SYSTEM)/soong_android_app_set.mk",
696 ExtraEntries: []android.AndroidMkExtraEntriesFunc{
Colin Crossaa255532020-07-03 13:18:24 -0700697 func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
Sasha Smundaka7856c02020-04-23 09:49:59 -0700698 entries.SetBoolIfTrue("LOCAL_PRIVILEGED_MODULE", apkSet.Privileged())
Liz Kammercada8072020-07-28 15:47:38 -0700699 entries.SetString("LOCAL_APK_SET_INSTALL_FILE", apkSet.InstallFile())
Jaewoong Jung11c1e0f2020-06-29 19:18:44 -0700700 entries.SetPath("LOCAL_APKCERTS_FILE", apkSet.apkcertsFile)
Sasha Smundaka7856c02020-04-23 09:49:59 -0700701 entries.AddStrings("LOCAL_OVERRIDES_PACKAGES", apkSet.properties.Overrides...)
702 },
703 },
704 },
705 }
706}