blob: e739e2ba529c243900a4d09640273d4f6ce6d2f2 [file] [log] [blame]
Jiyong Park09d77522019-11-18 11:16:27 +09001// Copyright (C) 2019 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package apex
16
17import (
18 "fmt"
19 "io"
20 "path/filepath"
21 "strings"
22
23 "android/soong/android"
24 "android/soong/cc"
Jaewoong Jung87a33e72020-03-26 14:01:48 -070025 "android/soong/java"
Jiyong Park09d77522019-11-18 11:16:27 +090026
27 "github.com/google/blueprint/proptools"
28)
29
30func (a *apexBundle) AndroidMk() android.AndroidMkData {
31 if a.properties.HideFromMake {
32 return android.AndroidMkData{
33 Disabled: true,
34 }
35 }
Jooyung Han2ed99d02020-06-24 23:26:26 +090036 return a.androidMkForType()
Jiyong Park09d77522019-11-18 11:16:27 +090037}
38
Jiyong Parkdb334862020-02-05 17:19:28 +090039func (a *apexBundle) androidMkForFiles(w io.Writer, apexBundleName, apexName, moduleDir string) []string {
40 // apexBundleName comes from the 'name' property; apexName comes from 'apex_name' property.
41 // An apex is installed to /system/apex/<apexBundleName> and is activated at /apex/<apexName>
42 // In many cases, the two names are the same, but could be different in general.
43
Jiyong Park09d77522019-11-18 11:16:27 +090044 moduleNames := []string{}
45 apexType := a.properties.ApexType
46 // To avoid creating duplicate build rules, run this function only when primaryApexType is true
47 // to install symbol files in $(PRODUCT_OUT}/apex.
48 // And if apexType is flattened, run this function to install files in $(PRODUCT_OUT}/system/apex.
49 if !a.primaryApexType && apexType != flattenedApex {
50 return moduleNames
51 }
52
Jiyong Parkdb334862020-02-05 17:19:28 +090053 // b/140136207. When there are overriding APEXes for a VNDK APEX, the symbols file for the overridden
54 // APEX and the overriding APEX will have the same installation paths at /apex/com.android.vndk.v<ver>
55 // as their apexName will be the same. To avoid the path conflicts, skip installing the symbol files
56 // for the overriding VNDK APEXes.
57 symbolFilesNotNeeded := a.vndkApex && len(a.overridableProperties.Overrides) > 0
58 if symbolFilesNotNeeded && apexType != flattenedApex {
59 return moduleNames
60 }
61
Jiyong Park7cd10e32020-01-14 09:22:18 +090062 var postInstallCommands []string
63 for _, fi := range a.filesInfo {
64 if a.linkToSystemLib && fi.transitiveDep && fi.AvailableToPlatform() {
65 // TODO(jiyong): pathOnDevice should come from fi.module, not being calculated here
66 linkTarget := filepath.Join("/system", fi.Path())
Jiyong Parkdb334862020-02-05 17:19:28 +090067 linkPath := filepath.Join(a.installDir.ToMakePath().String(), apexBundleName, fi.Path())
Jiyong Park7cd10e32020-01-14 09:22:18 +090068 mkdirCmd := "mkdir -p " + filepath.Dir(linkPath)
69 linkCmd := "ln -sfn " + linkTarget + " " + linkPath
70 postInstallCommands = append(postInstallCommands, mkdirCmd, linkCmd)
71 }
72 }
Jiyong Park7cd10e32020-01-14 09:22:18 +090073
Liz Kammer5bd365f2020-05-27 15:15:11 -070074 seenDataOutPaths := make(map[string]bool)
75
Jiyong Park09d77522019-11-18 11:16:27 +090076 for _, fi := range a.filesInfo {
Sasha Smundak18d98bc2020-05-27 16:36:07 -070077 if ccMod, ok := fi.module.(*cc.Module); ok && ccMod.Properties.HideFromMake {
Jiyong Park09d77522019-11-18 11:16:27 +090078 continue
79 }
80
Jiyong Park7cd10e32020-01-14 09:22:18 +090081 linkToSystemLib := a.linkToSystemLib && fi.transitiveDep && fi.AvailableToPlatform()
82
83 var moduleName string
84 if linkToSystemLib {
85 moduleName = fi.moduleName
86 } else {
Jiyong Parkdb334862020-02-05 17:19:28 +090087 moduleName = fi.moduleName + "." + apexBundleName + a.suffix
Jiyong Park7cd10e32020-01-14 09:22:18 +090088 }
89
90 if !android.InList(moduleName, moduleNames) {
91 moduleNames = append(moduleNames, moduleName)
92 }
93
94 if linkToSystemLib {
95 // No need to copy the file since it's linked to the system file
96 continue
Jiyong Park09d77522019-11-18 11:16:27 +090097 }
98
99 fmt.Fprintln(w, "\ninclude $(CLEAR_VARS)")
Jiyong Park1833cef2019-12-13 13:28:36 +0900100 if fi.moduleDir != "" {
101 fmt.Fprintln(w, "LOCAL_PATH :=", fi.moduleDir)
102 } else {
103 fmt.Fprintln(w, "LOCAL_PATH :=", moduleDir)
104 }
Jiyong Park7cd10e32020-01-14 09:22:18 +0900105 fmt.Fprintln(w, "LOCAL_MODULE :=", moduleName)
Jiyong Park09d77522019-11-18 11:16:27 +0900106 // /apex/<apex_name>/{lib|framework|...}
107 pathWhenActivated := filepath.Join("$(PRODUCT_OUT)", "apex", apexName, fi.installDir)
Colin Cross403cc152020-07-06 14:15:24 -0700108 var modulePath string
Jiyong Park09d77522019-11-18 11:16:27 +0900109 if apexType == flattenedApex {
110 // /system/apex/<name>/{lib|framework|...}
Colin Cross403cc152020-07-06 14:15:24 -0700111 modulePath = filepath.Join(a.installDir.ToMakePath().String(), apexBundleName, fi.installDir)
Liz Kammer5bd365f2020-05-27 15:15:11 -0700112 fmt.Fprintln(w, "LOCAL_MODULE_PATH :=", modulePath)
Jiyong Parkdb334862020-02-05 17:19:28 +0900113 if a.primaryApexType && !symbolFilesNotNeeded {
Jiyong Park09d77522019-11-18 11:16:27 +0900114 fmt.Fprintln(w, "LOCAL_SOONG_SYMBOL_PATH :=", pathWhenActivated)
115 }
116 if len(fi.symlinks) > 0 {
117 fmt.Fprintln(w, "LOCAL_MODULE_SYMLINKS :=", strings.Join(fi.symlinks, " "))
118 }
Chris Parsons216e10a2020-07-09 17:12:52 -0400119 newDataPaths := []android.DataPath{}
Liz Kammer5bd365f2020-05-27 15:15:11 -0700120 for _, path := range fi.dataPaths {
Chris Parsons216e10a2020-07-09 17:12:52 -0400121 dataOutPath := modulePath + ":" + path.SrcPath.Rel()
Liz Kammer5bd365f2020-05-27 15:15:11 -0700122 if ok := seenDataOutPaths[dataOutPath]; !ok {
123 newDataPaths = append(newDataPaths, path)
124 seenDataOutPaths[dataOutPath] = true
125 }
126 }
127 if len(newDataPaths) > 0 {
128 fmt.Fprintln(w, "LOCAL_TEST_DATA :=", strings.Join(cc.AndroidMkDataPaths(newDataPaths), " "))
Liz Kammer1c14a212020-05-12 15:26:55 -0700129 }
Jiyong Park09d77522019-11-18 11:16:27 +0900130
Bob Badoura75b0572020-02-18 20:21:55 -0800131 if fi.module != nil && len(fi.module.NoticeFiles()) > 0 {
132 fmt.Fprintln(w, "LOCAL_NOTICE_FILE :=", strings.Join(fi.module.NoticeFiles().Strings(), " "))
Jiyong Park09d77522019-11-18 11:16:27 +0900133 }
134 } else {
Colin Cross403cc152020-07-06 14:15:24 -0700135 modulePath = pathWhenActivated
Jiyong Park09d77522019-11-18 11:16:27 +0900136 fmt.Fprintln(w, "LOCAL_MODULE_PATH :=", pathWhenActivated)
Jiyong Park19972c72020-01-28 20:05:29 +0900137
138 // For non-flattend APEXes, the merged notice file is attached to the APEX itself.
139 // We don't need to have notice file for the individual modules in it. Otherwise,
140 // we will have duplicated notice entries.
141 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
Jiyong Park09d77522019-11-18 11:16:27 +0900142 }
143 fmt.Fprintln(w, "LOCAL_PREBUILT_MODULE_FILE :=", fi.builtFile.String())
144 fmt.Fprintln(w, "LOCAL_MODULE_CLASS :=", fi.class.NameInMake())
145 if fi.module != nil {
146 archStr := fi.module.Target().Arch.ArchType.String()
147 host := false
148 switch fi.module.Target().Os.Class {
149 case android.Host:
150 if fi.module.Target().Arch.ArchType != android.Common {
151 fmt.Fprintln(w, "LOCAL_MODULE_HOST_ARCH :=", archStr)
152 }
153 host = true
154 case android.HostCross:
155 if fi.module.Target().Arch.ArchType != android.Common {
156 fmt.Fprintln(w, "LOCAL_MODULE_HOST_CROSS_ARCH :=", archStr)
157 }
158 host = true
159 case android.Device:
160 if fi.module.Target().Arch.ArchType != android.Common {
161 fmt.Fprintln(w, "LOCAL_MODULE_TARGET_ARCH :=", archStr)
162 }
163 }
164 if host {
165 makeOs := fi.module.Target().Os.String()
166 if fi.module.Target().Os == android.Linux || fi.module.Target().Os == android.LinuxBionic {
167 makeOs = "linux"
168 }
169 fmt.Fprintln(w, "LOCAL_MODULE_HOST_OS :=", makeOs)
170 fmt.Fprintln(w, "LOCAL_IS_HOST_MODULE := true")
171 }
172 }
Jiyong Park618922e2020-01-08 13:35:43 +0900173 if fi.jacocoReportClassesFile != nil {
174 fmt.Fprintln(w, "LOCAL_SOONG_JACOCO_REPORT_CLASSES_JAR :=", fi.jacocoReportClassesFile.String())
175 }
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700176 switch fi.class {
177 case javaSharedLib:
Jiyong Park09d77522019-11-18 11:16:27 +0900178 // soong_java_prebuilt.mk sets LOCAL_MODULE_SUFFIX := .jar Therefore
179 // we need to remove the suffix from LOCAL_MODULE_STEM, otherwise
180 // we will have foo.jar.jar
Jiyong Parkf1493cc2020-05-29 21:29:20 +0900181 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", strings.TrimSuffix(fi.Stem(), ".jar"))
Paul Duffin44b481b2020-06-17 16:59:43 +0100182 if javaModule, ok := fi.module.(java.ApexDependency); ok {
Jiyong Park9e83f0b2020-06-11 00:35:03 +0900183 fmt.Fprintln(w, "LOCAL_SOONG_CLASSES_JAR :=", javaModule.ImplementationAndResourcesJars()[0].String())
184 fmt.Fprintln(w, "LOCAL_SOONG_HEADER_JAR :=", javaModule.HeaderJars()[0].String())
185 } else {
186 fmt.Fprintln(w, "LOCAL_SOONG_CLASSES_JAR :=", fi.builtFile.String())
187 fmt.Fprintln(w, "LOCAL_SOONG_HEADER_JAR :=", fi.builtFile.String())
188 }
Jiyong Park09d77522019-11-18 11:16:27 +0900189 fmt.Fprintln(w, "LOCAL_SOONG_DEX_JAR :=", fi.builtFile.String())
190 fmt.Fprintln(w, "LOCAL_DEX_PREOPT := false")
191 fmt.Fprintln(w, "include $(BUILD_SYSTEM)/soong_java_prebuilt.mk")
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700192 case app:
Colin Cross503c1d02020-01-28 14:00:53 -0800193 fmt.Fprintln(w, "LOCAL_CERTIFICATE :=", fi.certificate.AndroidMkString())
Jiyong Park618922e2020-01-08 13:35:43 +0900194 // soong_app_prebuilt.mk sets LOCAL_MODULE_SUFFIX := .apk Therefore
195 // we need to remove the suffix from LOCAL_MODULE_STEM, otherwise
196 // we will have foo.apk.apk
Jiyong Parkf1493cc2020-05-29 21:29:20 +0900197 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", strings.TrimSuffix(fi.Stem(), ".apk"))
Colin Cross403cc152020-07-06 14:15:24 -0700198 if app, ok := fi.module.(*java.AndroidApp); ok {
199 if jniCoverageOutputs := app.JniCoverageOutputs(); len(jniCoverageOutputs) > 0 {
200 fmt.Fprintln(w, "LOCAL_PREBUILT_COVERAGE_ARCHIVE :=", strings.Join(jniCoverageOutputs.Strings(), " "))
201 }
202 if jniLibSymbols := app.JNISymbolsInstalls(modulePath); len(jniLibSymbols) > 0 {
203 fmt.Fprintln(w, "LOCAL_SOONG_JNI_LIBS_SYMBOLS :=", jniLibSymbols.String())
204 }
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700205 }
Jiyong Park618922e2020-01-08 13:35:43 +0900206 fmt.Fprintln(w, "include $(BUILD_SYSTEM)/soong_app_prebuilt.mk")
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700207 case appSet:
208 as, ok := fi.module.(*java.AndroidAppSet)
209 if !ok {
210 panic(fmt.Sprintf("Expected %s to be AndroidAppSet", fi.module))
211 }
212 fmt.Fprintln(w, "LOCAL_APK_SET_MASTER_FILE :=", as.MasterFile())
Colin Cross4fb652d2020-07-09 19:05:35 -0700213 fmt.Fprintln(w, "LOCAL_APKCERTS_FILE :=", as.APKCertsFile().String())
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700214 fmt.Fprintln(w, "include $(BUILD_SYSTEM)/soong_android_app_set.mk")
215 case nativeSharedLib, nativeExecutable, nativeTest:
Jiyong Parkf1493cc2020-05-29 21:29:20 +0900216 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", fi.Stem())
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700217 if ccMod, ok := fi.module.(*cc.Module); ok {
218 if ccMod.UnstrippedOutputFile() != nil {
219 fmt.Fprintln(w, "LOCAL_SOONG_UNSTRIPPED_BINARY :=", ccMod.UnstrippedOutputFile().String())
Jiyong Park09d77522019-11-18 11:16:27 +0900220 }
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700221 ccMod.AndroidMkWriteAdditionalDependenciesForSourceAbiDiff(w)
222 if ccMod.CoverageOutputFile().Valid() {
223 fmt.Fprintln(w, "LOCAL_PREBUILT_COVERAGE_ARCHIVE :=", ccMod.CoverageOutputFile().String())
Jiyong Park09d77522019-11-18 11:16:27 +0900224 }
225 }
226 fmt.Fprintln(w, "include $(BUILD_SYSTEM)/soong_cc_prebuilt.mk")
Sasha Smundak18d98bc2020-05-27 16:36:07 -0700227 default:
Jiyong Parkf1493cc2020-05-29 21:29:20 +0900228 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", fi.Stem())
Jiyong Park7aa3f762020-01-28 16:51:34 +0900229 if fi.builtFile == a.manifestPbOut && apexType == flattenedApex {
Jooyung Han75de2612020-01-24 02:02:45 +0900230 if a.primaryApexType {
231 // Make apex_manifest.pb module for this APEX to override all other
232 // modules in the APEXes being overridden by this APEX
233 var patterns []string
234 for _, o := range a.overridableProperties.Overrides {
235 patterns = append(patterns, "%."+o+a.suffix)
236 }
Yo Chiang12d9f7a2020-06-16 17:32:19 +0800237 if len(patterns) > 0 {
238 fmt.Fprintln(w, "LOCAL_OVERRIDES_MODULES :=", strings.Join(patterns, " "))
239 }
Jiyong Park7aa3f762020-01-28 16:51:34 +0900240 if len(a.compatSymlinks) > 0 {
Jooyung Han75de2612020-01-24 02:02:45 +0900241 // For flattened apexes, compat symlinks are attached to apex_manifest.json which is guaranteed for every apex
242 postInstallCommands = append(postInstallCommands, a.compatSymlinks...)
243 }
244 }
245 if len(postInstallCommands) > 0 {
Jiyong Park7cd10e32020-01-14 09:22:18 +0900246 fmt.Fprintln(w, "LOCAL_POST_INSTALL_CMD :=", strings.Join(postInstallCommands, " && "))
Jiyong Park0abc1b42020-01-09 17:43:39 +0900247 }
Jiyong Park09d77522019-11-18 11:16:27 +0900248 }
249 fmt.Fprintln(w, "include $(BUILD_PREBUILT)")
250 }
Jiyong Park31af2672020-02-11 09:36:25 +0900251
252 // m <module_name> will build <module_name>.<apex_name> as well.
253 if fi.moduleName != moduleName && a.primaryApexType {
254 fmt.Fprintln(w, ".PHONY: "+fi.moduleName)
255 fmt.Fprintln(w, fi.moduleName+": "+moduleName)
256 }
Jiyong Park09d77522019-11-18 11:16:27 +0900257 }
258 return moduleNames
259}
260
Jiyong Park7afd1072019-12-30 16:56:33 +0900261func (a *apexBundle) writeRequiredModules(w io.Writer) {
262 var required []string
263 var targetRequired []string
264 var hostRequired []string
265 for _, fi := range a.filesInfo {
266 required = append(required, fi.requiredModuleNames...)
267 targetRequired = append(targetRequired, fi.targetRequiredModuleNames...)
268 hostRequired = append(hostRequired, fi.hostRequiredModuleNames...)
269 }
270
271 if len(required) > 0 {
272 fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES +=", strings.Join(required, " "))
273 }
274 if len(targetRequired) > 0 {
275 fmt.Fprintln(w, "LOCAL_TARGET_REQUIRED_MODULES +=", strings.Join(targetRequired, " "))
276 }
277 if len(hostRequired) > 0 {
278 fmt.Fprintln(w, "LOCAL_HOST_REQUIRED_MODULES +=", strings.Join(hostRequired, " "))
279 }
280}
281
Jiyong Park09d77522019-11-18 11:16:27 +0900282func (a *apexBundle) androidMkForType() android.AndroidMkData {
283 return android.AndroidMkData{
284 Custom: func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) {
285 moduleNames := []string{}
286 apexType := a.properties.ApexType
287 if a.installable() {
288 apexName := proptools.StringDefault(a.properties.Apex_name, name)
Jiyong Parkdb334862020-02-05 17:19:28 +0900289 moduleNames = a.androidMkForFiles(w, name, apexName, moduleDir)
Jiyong Park09d77522019-11-18 11:16:27 +0900290 }
291
292 if apexType == flattenedApex {
293 // Only image APEXes can be flattened.
294 fmt.Fprintln(w, "\ninclude $(CLEAR_VARS)")
295 fmt.Fprintln(w, "LOCAL_PATH :=", moduleDir)
296 fmt.Fprintln(w, "LOCAL_MODULE :=", name+a.suffix)
297 if len(moduleNames) > 0 {
298 fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES :=", strings.Join(moduleNames, " "))
299 }
Jiyong Park7afd1072019-12-30 16:56:33 +0900300 a.writeRequiredModules(w)
Jiyong Park09d77522019-11-18 11:16:27 +0900301 fmt.Fprintln(w, "include $(BUILD_PHONY_PACKAGE)")
Jiyong Park09d77522019-11-18 11:16:27 +0900302
303 } else {
304 fmt.Fprintln(w, "\ninclude $(CLEAR_VARS)")
305 fmt.Fprintln(w, "LOCAL_PATH :=", moduleDir)
306 fmt.Fprintln(w, "LOCAL_MODULE :=", name+a.suffix)
307 fmt.Fprintln(w, "LOCAL_MODULE_CLASS := ETC") // do we need a new class?
308 fmt.Fprintln(w, "LOCAL_PREBUILT_MODULE_FILE :=", a.outputFile.String())
309 fmt.Fprintln(w, "LOCAL_MODULE_PATH :=", a.installDir.ToMakePath().String())
310 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", name+apexType.suffix())
311 fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE :=", !a.installable())
Jooyung Han2ed99d02020-06-24 23:26:26 +0900312
313 // Because apex writes .mk with Custom(), we need to write manually some common properties
314 // which are available via data.Entries
315 commonProperties := []string{
316 "LOCAL_INIT_RC", "LOCAL_VINTF_FRAGMENTS",
317 "LOCAL_PROPRIETARY_MODULE", "LOCAL_VENDOR_MODULE", "LOCAL_ODM_MODULE", "LOCAL_PRODUCT_MODULE", "LOCAL_SYSTEM_EXT_MODULE",
318 "LOCAL_MODULE_OWNER",
319 }
320 for _, name := range commonProperties {
321 if value, ok := data.Entries.EntryMap[name]; ok {
322 fmt.Fprintln(w, name+" := "+strings.Join(value, " "))
323 }
324 }
325
Yo Chiang12d9f7a2020-06-16 17:32:19 +0800326 if len(a.overridableProperties.Overrides) > 0 {
327 fmt.Fprintln(w, "LOCAL_OVERRIDES_MODULES :=", strings.Join(a.overridableProperties.Overrides, " "))
328 }
Jiyong Park09d77522019-11-18 11:16:27 +0900329 if len(moduleNames) > 0 {
330 fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES +=", strings.Join(moduleNames, " "))
331 }
Jiyong Park956305c2020-01-09 12:32:06 +0900332 if len(a.requiredDeps) > 0 {
333 fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES +=", strings.Join(a.requiredDeps, " "))
Jiyong Park09d77522019-11-18 11:16:27 +0900334 }
Jiyong Park7afd1072019-12-30 16:56:33 +0900335 a.writeRequiredModules(w)
Jiyong Park09d77522019-11-18 11:16:27 +0900336 var postInstallCommands []string
337 if a.prebuiltFileToDelete != "" {
338 postInstallCommands = append(postInstallCommands, "rm -rf "+
339 filepath.Join(a.installDir.ToMakePath().String(), a.prebuiltFileToDelete))
340 }
341 // For unflattened apexes, compat symlinks are attached to apex package itself as LOCAL_POST_INSTALL_CMD
342 postInstallCommands = append(postInstallCommands, a.compatSymlinks...)
343 if len(postInstallCommands) > 0 {
344 fmt.Fprintln(w, "LOCAL_POST_INSTALL_CMD :=", strings.Join(postInstallCommands, " && "))
345 }
Jiyong Park19972c72020-01-28 20:05:29 +0900346
347 if a.mergedNotices.Merged.Valid() {
348 fmt.Fprintln(w, "LOCAL_NOTICE_FILE :=", a.mergedNotices.Merged.Path().String())
349 }
350
Jiyong Park09d77522019-11-18 11:16:27 +0900351 fmt.Fprintln(w, "include $(BUILD_PREBUILT)")
352
353 if apexType == imageApex {
Yo Chiangef2d4892020-05-08 15:38:40 +0800354 fmt.Fprintln(w, "ALL_MODULES.$(my_register_name).BUNDLE :=", a.bundleModuleFile.String())
Jiyong Park09d77522019-11-18 11:16:27 +0900355 }
Colin Cross08dca382020-07-21 20:31:17 -0700356 if len(a.lintReports) > 0 {
357 fmt.Fprintln(w, "ALL_MODULES.$(my_register_name).LINT_REPORTS :=",
358 strings.Join(a.lintReports.Strings(), " "))
359 }
Jiyong Park3a1602e2020-01-14 14:39:19 +0900360
361 if a.installedFilesFile != nil {
Colin Cross1c85e8e2020-02-26 16:55:51 -0800362 goal := "checkbuild"
Jiyong Park3a1602e2020-01-14 14:39:19 +0900363 distFile := name + "-installed-files.txt"
364 fmt.Fprintln(w, ".PHONY:", goal)
365 fmt.Fprintf(w, "$(call dist-for-goals,%s,%s:%s)\n",
366 goal, a.installedFilesFile.String(), distFile)
367 }
Jiyong Park09d77522019-11-18 11:16:27 +0900368 }
369 }}
370}