blob: 5774809aa4fc2b013de87643ac85e19dd099b62a [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 }
36 writers := []android.AndroidMkData{}
37 writers = append(writers, a.androidMkForType())
38 return android.AndroidMkData{
39 Custom: func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) {
40 for _, data := range writers {
41 data.Custom(w, name, prefix, moduleDir, data)
42 }
43 }}
44}
45
Jiyong Parkdb334862020-02-05 17:19:28 +090046func (a *apexBundle) androidMkForFiles(w io.Writer, apexBundleName, apexName, moduleDir string) []string {
47 // apexBundleName comes from the 'name' property; apexName comes from 'apex_name' property.
48 // An apex is installed to /system/apex/<apexBundleName> and is activated at /apex/<apexName>
49 // In many cases, the two names are the same, but could be different in general.
50
Jiyong Park09d77522019-11-18 11:16:27 +090051 moduleNames := []string{}
52 apexType := a.properties.ApexType
53 // To avoid creating duplicate build rules, run this function only when primaryApexType is true
54 // to install symbol files in $(PRODUCT_OUT}/apex.
55 // And if apexType is flattened, run this function to install files in $(PRODUCT_OUT}/system/apex.
56 if !a.primaryApexType && apexType != flattenedApex {
57 return moduleNames
58 }
59
Jiyong Parkdb334862020-02-05 17:19:28 +090060 // b/140136207. When there are overriding APEXes for a VNDK APEX, the symbols file for the overridden
61 // APEX and the overriding APEX will have the same installation paths at /apex/com.android.vndk.v<ver>
62 // as their apexName will be the same. To avoid the path conflicts, skip installing the symbol files
63 // for the overriding VNDK APEXes.
64 symbolFilesNotNeeded := a.vndkApex && len(a.overridableProperties.Overrides) > 0
65 if symbolFilesNotNeeded && apexType != flattenedApex {
66 return moduleNames
67 }
68
Jiyong Park7cd10e32020-01-14 09:22:18 +090069 var postInstallCommands []string
70 for _, fi := range a.filesInfo {
71 if a.linkToSystemLib && fi.transitiveDep && fi.AvailableToPlatform() {
72 // TODO(jiyong): pathOnDevice should come from fi.module, not being calculated here
73 linkTarget := filepath.Join("/system", fi.Path())
Jiyong Parkdb334862020-02-05 17:19:28 +090074 linkPath := filepath.Join(a.installDir.ToMakePath().String(), apexBundleName, fi.Path())
Jiyong Park7cd10e32020-01-14 09:22:18 +090075 mkdirCmd := "mkdir -p " + filepath.Dir(linkPath)
76 linkCmd := "ln -sfn " + linkTarget + " " + linkPath
77 postInstallCommands = append(postInstallCommands, mkdirCmd, linkCmd)
78 }
79 }
Jiyong Park7cd10e32020-01-14 09:22:18 +090080
Jiyong Park09d77522019-11-18 11:16:27 +090081 for _, fi := range a.filesInfo {
82 if cc, ok := fi.module.(*cc.Module); ok && cc.Properties.HideFromMake {
83 continue
84 }
85
Jiyong Park7cd10e32020-01-14 09:22:18 +090086 linkToSystemLib := a.linkToSystemLib && fi.transitiveDep && fi.AvailableToPlatform()
87
88 var moduleName string
89 if linkToSystemLib {
90 moduleName = fi.moduleName
91 } else {
Jiyong Parkdb334862020-02-05 17:19:28 +090092 moduleName = fi.moduleName + "." + apexBundleName + a.suffix
Jiyong Park7cd10e32020-01-14 09:22:18 +090093 }
94
95 if !android.InList(moduleName, moduleNames) {
96 moduleNames = append(moduleNames, moduleName)
97 }
98
99 if linkToSystemLib {
100 // No need to copy the file since it's linked to the system file
101 continue
Jiyong Park09d77522019-11-18 11:16:27 +0900102 }
103
104 fmt.Fprintln(w, "\ninclude $(CLEAR_VARS)")
Jiyong Park1833cef2019-12-13 13:28:36 +0900105 if fi.moduleDir != "" {
106 fmt.Fprintln(w, "LOCAL_PATH :=", fi.moduleDir)
107 } else {
108 fmt.Fprintln(w, "LOCAL_PATH :=", moduleDir)
109 }
Jiyong Park7cd10e32020-01-14 09:22:18 +0900110 fmt.Fprintln(w, "LOCAL_MODULE :=", moduleName)
Jiyong Park09d77522019-11-18 11:16:27 +0900111 // /apex/<apex_name>/{lib|framework|...}
112 pathWhenActivated := filepath.Join("$(PRODUCT_OUT)", "apex", apexName, fi.installDir)
113 if apexType == flattenedApex {
114 // /system/apex/<name>/{lib|framework|...}
115 fmt.Fprintln(w, "LOCAL_MODULE_PATH :=", filepath.Join(a.installDir.ToMakePath().String(),
Jiyong Parkdb334862020-02-05 17:19:28 +0900116 apexBundleName, fi.installDir))
117 if a.primaryApexType && !symbolFilesNotNeeded {
Jiyong Park09d77522019-11-18 11:16:27 +0900118 fmt.Fprintln(w, "LOCAL_SOONG_SYMBOL_PATH :=", pathWhenActivated)
119 }
120 if len(fi.symlinks) > 0 {
121 fmt.Fprintln(w, "LOCAL_MODULE_SYMLINKS :=", strings.Join(fi.symlinks, " "))
122 }
Liz Kammer1c14a212020-05-12 15:26:55 -0700123 if len(fi.dataPaths) > 0 {
124 fmt.Println(w, "LOCAL_TEST_DATA :=", strings.Join(cc.AndroidMkDataPaths(fi.dataPaths), " "))
125 }
Jiyong Park09d77522019-11-18 11:16:27 +0900126
Bob Badoura75b0572020-02-18 20:21:55 -0800127 if fi.module != nil && len(fi.module.NoticeFiles()) > 0 {
128 fmt.Fprintln(w, "LOCAL_NOTICE_FILE :=", strings.Join(fi.module.NoticeFiles().Strings(), " "))
Jiyong Park09d77522019-11-18 11:16:27 +0900129 }
130 } else {
131 fmt.Fprintln(w, "LOCAL_MODULE_PATH :=", pathWhenActivated)
Jiyong Park19972c72020-01-28 20:05:29 +0900132
133 // For non-flattend APEXes, the merged notice file is attached to the APEX itself.
134 // We don't need to have notice file for the individual modules in it. Otherwise,
135 // we will have duplicated notice entries.
136 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
Jiyong Park09d77522019-11-18 11:16:27 +0900137 }
138 fmt.Fprintln(w, "LOCAL_PREBUILT_MODULE_FILE :=", fi.builtFile.String())
139 fmt.Fprintln(w, "LOCAL_MODULE_CLASS :=", fi.class.NameInMake())
140 if fi.module != nil {
141 archStr := fi.module.Target().Arch.ArchType.String()
142 host := false
143 switch fi.module.Target().Os.Class {
144 case android.Host:
145 if fi.module.Target().Arch.ArchType != android.Common {
146 fmt.Fprintln(w, "LOCAL_MODULE_HOST_ARCH :=", archStr)
147 }
148 host = true
149 case android.HostCross:
150 if fi.module.Target().Arch.ArchType != android.Common {
151 fmt.Fprintln(w, "LOCAL_MODULE_HOST_CROSS_ARCH :=", archStr)
152 }
153 host = true
154 case android.Device:
155 if fi.module.Target().Arch.ArchType != android.Common {
156 fmt.Fprintln(w, "LOCAL_MODULE_TARGET_ARCH :=", archStr)
157 }
158 }
159 if host {
160 makeOs := fi.module.Target().Os.String()
161 if fi.module.Target().Os == android.Linux || fi.module.Target().Os == android.LinuxBionic {
162 makeOs = "linux"
163 }
164 fmt.Fprintln(w, "LOCAL_MODULE_HOST_OS :=", makeOs)
165 fmt.Fprintln(w, "LOCAL_IS_HOST_MODULE := true")
166 }
167 }
Jiyong Park618922e2020-01-08 13:35:43 +0900168 if fi.jacocoReportClassesFile != nil {
169 fmt.Fprintln(w, "LOCAL_SOONG_JACOCO_REPORT_CLASSES_JAR :=", fi.jacocoReportClassesFile.String())
170 }
Jiyong Park09d77522019-11-18 11:16:27 +0900171 if fi.class == javaSharedLib {
Jooyung Han58f26ab2019-12-18 15:34:32 +0900172 javaModule := fi.module.(javaLibrary)
Jiyong Park09d77522019-11-18 11:16:27 +0900173 // soong_java_prebuilt.mk sets LOCAL_MODULE_SUFFIX := .jar Therefore
174 // we need to remove the suffix from LOCAL_MODULE_STEM, otherwise
175 // we will have foo.jar.jar
176 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", strings.TrimSuffix(fi.builtFile.Base(), ".jar"))
177 fmt.Fprintln(w, "LOCAL_SOONG_CLASSES_JAR :=", javaModule.ImplementationAndResourcesJars()[0].String())
178 fmt.Fprintln(w, "LOCAL_SOONG_HEADER_JAR :=", javaModule.HeaderJars()[0].String())
179 fmt.Fprintln(w, "LOCAL_SOONG_DEX_JAR :=", fi.builtFile.String())
180 fmt.Fprintln(w, "LOCAL_DEX_PREOPT := false")
181 fmt.Fprintln(w, "include $(BUILD_SYSTEM)/soong_java_prebuilt.mk")
Jiyong Park618922e2020-01-08 13:35:43 +0900182 } else if fi.class == app {
Colin Cross503c1d02020-01-28 14:00:53 -0800183 fmt.Fprintln(w, "LOCAL_CERTIFICATE :=", fi.certificate.AndroidMkString())
Jiyong Park618922e2020-01-08 13:35:43 +0900184 // soong_app_prebuilt.mk sets LOCAL_MODULE_SUFFIX := .apk Therefore
185 // we need to remove the suffix from LOCAL_MODULE_STEM, otherwise
186 // we will have foo.apk.apk
187 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", strings.TrimSuffix(fi.builtFile.Base(), ".apk"))
Jaewoong Jung87a33e72020-03-26 14:01:48 -0700188 if app, ok := fi.module.(*java.AndroidApp); ok && len(app.JniCoverageOutputs()) > 0 {
189 fmt.Fprintln(w, "LOCAL_PREBUILT_COVERAGE_ARCHIVE :=", strings.Join(app.JniCoverageOutputs().Strings(), " "))
190 }
Jiyong Park618922e2020-01-08 13:35:43 +0900191 fmt.Fprintln(w, "include $(BUILD_SYSTEM)/soong_app_prebuilt.mk")
Jiyong Park09d77522019-11-18 11:16:27 +0900192 } else if fi.class == nativeSharedLib || fi.class == nativeExecutable || fi.class == nativeTest {
193 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", fi.builtFile.Base())
194 if cc, ok := fi.module.(*cc.Module); ok {
195 if cc.UnstrippedOutputFile() != nil {
196 fmt.Fprintln(w, "LOCAL_SOONG_UNSTRIPPED_BINARY :=", cc.UnstrippedOutputFile().String())
197 }
198 cc.AndroidMkWriteAdditionalDependenciesForSourceAbiDiff(w)
199 if cc.CoverageOutputFile().Valid() {
200 fmt.Fprintln(w, "LOCAL_PREBUILT_COVERAGE_ARCHIVE :=", cc.CoverageOutputFile().String())
201 }
202 }
203 fmt.Fprintln(w, "include $(BUILD_SYSTEM)/soong_cc_prebuilt.mk")
204 } else {
205 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", fi.builtFile.Base())
Jiyong Park7aa3f762020-01-28 16:51:34 +0900206 if fi.builtFile == a.manifestPbOut && apexType == flattenedApex {
Jooyung Han75de2612020-01-24 02:02:45 +0900207 if a.primaryApexType {
208 // Make apex_manifest.pb module for this APEX to override all other
209 // modules in the APEXes being overridden by this APEX
210 var patterns []string
211 for _, o := range a.overridableProperties.Overrides {
212 patterns = append(patterns, "%."+o+a.suffix)
213 }
214 fmt.Fprintln(w, "LOCAL_OVERRIDES_MODULES :=", strings.Join(patterns, " "))
Jiyong Park0abc1b42020-01-09 17:43:39 +0900215
Jiyong Park7aa3f762020-01-28 16:51:34 +0900216 if len(a.compatSymlinks) > 0 {
Jooyung Han75de2612020-01-24 02:02:45 +0900217 // For flattened apexes, compat symlinks are attached to apex_manifest.json which is guaranteed for every apex
218 postInstallCommands = append(postInstallCommands, a.compatSymlinks...)
219 }
220 }
221 if len(postInstallCommands) > 0 {
Jiyong Park7cd10e32020-01-14 09:22:18 +0900222 fmt.Fprintln(w, "LOCAL_POST_INSTALL_CMD :=", strings.Join(postInstallCommands, " && "))
Jiyong Park0abc1b42020-01-09 17:43:39 +0900223 }
Jiyong Park09d77522019-11-18 11:16:27 +0900224 }
225 fmt.Fprintln(w, "include $(BUILD_PREBUILT)")
226 }
Jiyong Park31af2672020-02-11 09:36:25 +0900227
228 // m <module_name> will build <module_name>.<apex_name> as well.
229 if fi.moduleName != moduleName && a.primaryApexType {
230 fmt.Fprintln(w, ".PHONY: "+fi.moduleName)
231 fmt.Fprintln(w, fi.moduleName+": "+moduleName)
232 }
Jiyong Park09d77522019-11-18 11:16:27 +0900233 }
234 return moduleNames
235}
236
Jiyong Park7afd1072019-12-30 16:56:33 +0900237func (a *apexBundle) writeRequiredModules(w io.Writer) {
238 var required []string
239 var targetRequired []string
240 var hostRequired []string
241 for _, fi := range a.filesInfo {
242 required = append(required, fi.requiredModuleNames...)
243 targetRequired = append(targetRequired, fi.targetRequiredModuleNames...)
244 hostRequired = append(hostRequired, fi.hostRequiredModuleNames...)
245 }
246
247 if len(required) > 0 {
248 fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES +=", strings.Join(required, " "))
249 }
250 if len(targetRequired) > 0 {
251 fmt.Fprintln(w, "LOCAL_TARGET_REQUIRED_MODULES +=", strings.Join(targetRequired, " "))
252 }
253 if len(hostRequired) > 0 {
254 fmt.Fprintln(w, "LOCAL_HOST_REQUIRED_MODULES +=", strings.Join(hostRequired, " "))
255 }
256}
257
Jiyong Park09d77522019-11-18 11:16:27 +0900258func (a *apexBundle) androidMkForType() android.AndroidMkData {
259 return android.AndroidMkData{
260 Custom: func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) {
261 moduleNames := []string{}
262 apexType := a.properties.ApexType
263 if a.installable() {
264 apexName := proptools.StringDefault(a.properties.Apex_name, name)
Jiyong Parkdb334862020-02-05 17:19:28 +0900265 moduleNames = a.androidMkForFiles(w, name, apexName, moduleDir)
Jiyong Park09d77522019-11-18 11:16:27 +0900266 }
267
268 if apexType == flattenedApex {
269 // Only image APEXes can be flattened.
270 fmt.Fprintln(w, "\ninclude $(CLEAR_VARS)")
271 fmt.Fprintln(w, "LOCAL_PATH :=", moduleDir)
272 fmt.Fprintln(w, "LOCAL_MODULE :=", name+a.suffix)
273 if len(moduleNames) > 0 {
274 fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES :=", strings.Join(moduleNames, " "))
275 }
Jiyong Park7afd1072019-12-30 16:56:33 +0900276 a.writeRequiredModules(w)
Jiyong Park09d77522019-11-18 11:16:27 +0900277 fmt.Fprintln(w, "include $(BUILD_PHONY_PACKAGE)")
Jiyong Park09d77522019-11-18 11:16:27 +0900278
279 } else {
280 fmt.Fprintln(w, "\ninclude $(CLEAR_VARS)")
281 fmt.Fprintln(w, "LOCAL_PATH :=", moduleDir)
282 fmt.Fprintln(w, "LOCAL_MODULE :=", name+a.suffix)
283 fmt.Fprintln(w, "LOCAL_MODULE_CLASS := ETC") // do we need a new class?
284 fmt.Fprintln(w, "LOCAL_PREBUILT_MODULE_FILE :=", a.outputFile.String())
285 fmt.Fprintln(w, "LOCAL_MODULE_PATH :=", a.installDir.ToMakePath().String())
286 fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", name+apexType.suffix())
287 fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE :=", !a.installable())
Jaewoong Jung7abcf8e2019-12-19 17:32:06 -0800288 fmt.Fprintln(w, "LOCAL_OVERRIDES_MODULES :=", strings.Join(a.overridableProperties.Overrides, " "))
Jiyong Park09d77522019-11-18 11:16:27 +0900289 if len(moduleNames) > 0 {
290 fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES +=", strings.Join(moduleNames, " "))
291 }
Jiyong Park956305c2020-01-09 12:32:06 +0900292 if len(a.requiredDeps) > 0 {
293 fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES +=", strings.Join(a.requiredDeps, " "))
Jiyong Park09d77522019-11-18 11:16:27 +0900294 }
Jiyong Park7afd1072019-12-30 16:56:33 +0900295 a.writeRequiredModules(w)
Jiyong Park09d77522019-11-18 11:16:27 +0900296 var postInstallCommands []string
297 if a.prebuiltFileToDelete != "" {
298 postInstallCommands = append(postInstallCommands, "rm -rf "+
299 filepath.Join(a.installDir.ToMakePath().String(), a.prebuiltFileToDelete))
300 }
301 // For unflattened apexes, compat symlinks are attached to apex package itself as LOCAL_POST_INSTALL_CMD
302 postInstallCommands = append(postInstallCommands, a.compatSymlinks...)
303 if len(postInstallCommands) > 0 {
304 fmt.Fprintln(w, "LOCAL_POST_INSTALL_CMD :=", strings.Join(postInstallCommands, " && "))
305 }
Jiyong Park19972c72020-01-28 20:05:29 +0900306
307 if a.mergedNotices.Merged.Valid() {
308 fmt.Fprintln(w, "LOCAL_NOTICE_FILE :=", a.mergedNotices.Merged.Path().String())
309 }
310
Jiyong Park09d77522019-11-18 11:16:27 +0900311 fmt.Fprintln(w, "include $(BUILD_PREBUILT)")
312
313 if apexType == imageApex {
Yo Chiangef2d4892020-05-08 15:38:40 +0800314 fmt.Fprintln(w, "ALL_MODULES.$(my_register_name).BUNDLE :=", a.bundleModuleFile.String())
Jiyong Park09d77522019-11-18 11:16:27 +0900315 }
Jiyong Park3a1602e2020-01-14 14:39:19 +0900316
317 if a.installedFilesFile != nil {
Colin Cross1c85e8e2020-02-26 16:55:51 -0800318 goal := "checkbuild"
Jiyong Park3a1602e2020-01-14 14:39:19 +0900319 distFile := name + "-installed-files.txt"
320 fmt.Fprintln(w, ".PHONY:", goal)
321 fmt.Fprintf(w, "$(call dist-for-goals,%s,%s:%s)\n",
322 goal, a.installedFilesFile.String(), distFile)
323 }
Jiyong Park09d77522019-11-18 11:16:27 +0900324 }
325 }}
326}