Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 1 | // 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 | |
| 15 | package apex |
| 16 | |
| 17 | import ( |
| 18 | "fmt" |
| 19 | "io" |
| 20 | "path/filepath" |
| 21 | "strings" |
| 22 | |
| 23 | "android/soong/android" |
| 24 | "android/soong/cc" |
Jaewoong Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 25 | "android/soong/java" |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 26 | |
| 27 | "github.com/google/blueprint/proptools" |
| 28 | ) |
| 29 | |
| 30 | func (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 Park | db33486 | 2020-02-05 17:19:28 +0900 | [diff] [blame] | 46 | func (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 Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 51 | 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 Park | db33486 | 2020-02-05 17:19:28 +0900 | [diff] [blame] | 60 | // 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 Park | 7cd10e3 | 2020-01-14 09:22:18 +0900 | [diff] [blame] | 69 | 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 Park | db33486 | 2020-02-05 17:19:28 +0900 | [diff] [blame] | 74 | linkPath := filepath.Join(a.installDir.ToMakePath().String(), apexBundleName, fi.Path()) |
Jiyong Park | 7cd10e3 | 2020-01-14 09:22:18 +0900 | [diff] [blame] | 75 | mkdirCmd := "mkdir -p " + filepath.Dir(linkPath) |
| 76 | linkCmd := "ln -sfn " + linkTarget + " " + linkPath |
| 77 | postInstallCommands = append(postInstallCommands, mkdirCmd, linkCmd) |
| 78 | } |
| 79 | } |
Jiyong Park | 7cd10e3 | 2020-01-14 09:22:18 +0900 | [diff] [blame] | 80 | |
Liz Kammer | 5bd365f | 2020-05-27 15:15:11 -0700 | [diff] [blame] | 81 | seenDataOutPaths := make(map[string]bool) |
| 82 | |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 83 | for _, fi := range a.filesInfo { |
Sasha Smundak | 18d98bc | 2020-05-27 16:36:07 -0700 | [diff] [blame] | 84 | if ccMod, ok := fi.module.(*cc.Module); ok && ccMod.Properties.HideFromMake { |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 85 | continue |
| 86 | } |
| 87 | |
Jiyong Park | 7cd10e3 | 2020-01-14 09:22:18 +0900 | [diff] [blame] | 88 | linkToSystemLib := a.linkToSystemLib && fi.transitiveDep && fi.AvailableToPlatform() |
| 89 | |
| 90 | var moduleName string |
| 91 | if linkToSystemLib { |
| 92 | moduleName = fi.moduleName |
| 93 | } else { |
Jiyong Park | db33486 | 2020-02-05 17:19:28 +0900 | [diff] [blame] | 94 | moduleName = fi.moduleName + "." + apexBundleName + a.suffix |
Jiyong Park | 7cd10e3 | 2020-01-14 09:22:18 +0900 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | if !android.InList(moduleName, moduleNames) { |
| 98 | moduleNames = append(moduleNames, moduleName) |
| 99 | } |
| 100 | |
| 101 | if linkToSystemLib { |
| 102 | // No need to copy the file since it's linked to the system file |
| 103 | continue |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | fmt.Fprintln(w, "\ninclude $(CLEAR_VARS)") |
Jiyong Park | 1833cef | 2019-12-13 13:28:36 +0900 | [diff] [blame] | 107 | if fi.moduleDir != "" { |
| 108 | fmt.Fprintln(w, "LOCAL_PATH :=", fi.moduleDir) |
| 109 | } else { |
| 110 | fmt.Fprintln(w, "LOCAL_PATH :=", moduleDir) |
| 111 | } |
Jiyong Park | 7cd10e3 | 2020-01-14 09:22:18 +0900 | [diff] [blame] | 112 | fmt.Fprintln(w, "LOCAL_MODULE :=", moduleName) |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 113 | // /apex/<apex_name>/{lib|framework|...} |
| 114 | pathWhenActivated := filepath.Join("$(PRODUCT_OUT)", "apex", apexName, fi.installDir) |
| 115 | if apexType == flattenedApex { |
| 116 | // /system/apex/<name>/{lib|framework|...} |
Liz Kammer | 5bd365f | 2020-05-27 15:15:11 -0700 | [diff] [blame] | 117 | modulePath := filepath.Join(a.installDir.ToMakePath().String(), apexBundleName, fi.installDir) |
| 118 | fmt.Fprintln(w, "LOCAL_MODULE_PATH :=", modulePath) |
Jiyong Park | db33486 | 2020-02-05 17:19:28 +0900 | [diff] [blame] | 119 | if a.primaryApexType && !symbolFilesNotNeeded { |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 120 | fmt.Fprintln(w, "LOCAL_SOONG_SYMBOL_PATH :=", pathWhenActivated) |
| 121 | } |
| 122 | if len(fi.symlinks) > 0 { |
| 123 | fmt.Fprintln(w, "LOCAL_MODULE_SYMLINKS :=", strings.Join(fi.symlinks, " ")) |
| 124 | } |
Liz Kammer | 5bd365f | 2020-05-27 15:15:11 -0700 | [diff] [blame] | 125 | newDataPaths := []android.Path{} |
| 126 | for _, path := range fi.dataPaths { |
| 127 | dataOutPath := modulePath + ":" + path.Rel() |
| 128 | if ok := seenDataOutPaths[dataOutPath]; !ok { |
| 129 | newDataPaths = append(newDataPaths, path) |
| 130 | seenDataOutPaths[dataOutPath] = true |
| 131 | } |
| 132 | } |
| 133 | if len(newDataPaths) > 0 { |
| 134 | fmt.Fprintln(w, "LOCAL_TEST_DATA :=", strings.Join(cc.AndroidMkDataPaths(newDataPaths), " ")) |
Liz Kammer | 1c14a21 | 2020-05-12 15:26:55 -0700 | [diff] [blame] | 135 | } |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 136 | |
Bob Badour | a75b057 | 2020-02-18 20:21:55 -0800 | [diff] [blame] | 137 | if fi.module != nil && len(fi.module.NoticeFiles()) > 0 { |
| 138 | fmt.Fprintln(w, "LOCAL_NOTICE_FILE :=", strings.Join(fi.module.NoticeFiles().Strings(), " ")) |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 139 | } |
| 140 | } else { |
| 141 | fmt.Fprintln(w, "LOCAL_MODULE_PATH :=", pathWhenActivated) |
Jiyong Park | 19972c7 | 2020-01-28 20:05:29 +0900 | [diff] [blame] | 142 | |
| 143 | // For non-flattend APEXes, the merged notice file is attached to the APEX itself. |
| 144 | // We don't need to have notice file for the individual modules in it. Otherwise, |
| 145 | // we will have duplicated notice entries. |
| 146 | fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true") |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 147 | } |
| 148 | fmt.Fprintln(w, "LOCAL_PREBUILT_MODULE_FILE :=", fi.builtFile.String()) |
| 149 | fmt.Fprintln(w, "LOCAL_MODULE_CLASS :=", fi.class.NameInMake()) |
| 150 | if fi.module != nil { |
| 151 | archStr := fi.module.Target().Arch.ArchType.String() |
| 152 | host := false |
| 153 | switch fi.module.Target().Os.Class { |
| 154 | case android.Host: |
| 155 | if fi.module.Target().Arch.ArchType != android.Common { |
| 156 | fmt.Fprintln(w, "LOCAL_MODULE_HOST_ARCH :=", archStr) |
| 157 | } |
| 158 | host = true |
| 159 | case android.HostCross: |
| 160 | if fi.module.Target().Arch.ArchType != android.Common { |
| 161 | fmt.Fprintln(w, "LOCAL_MODULE_HOST_CROSS_ARCH :=", archStr) |
| 162 | } |
| 163 | host = true |
| 164 | case android.Device: |
| 165 | if fi.module.Target().Arch.ArchType != android.Common { |
| 166 | fmt.Fprintln(w, "LOCAL_MODULE_TARGET_ARCH :=", archStr) |
| 167 | } |
| 168 | } |
| 169 | if host { |
| 170 | makeOs := fi.module.Target().Os.String() |
| 171 | if fi.module.Target().Os == android.Linux || fi.module.Target().Os == android.LinuxBionic { |
| 172 | makeOs = "linux" |
| 173 | } |
| 174 | fmt.Fprintln(w, "LOCAL_MODULE_HOST_OS :=", makeOs) |
| 175 | fmt.Fprintln(w, "LOCAL_IS_HOST_MODULE := true") |
| 176 | } |
| 177 | } |
Jiyong Park | 618922e | 2020-01-08 13:35:43 +0900 | [diff] [blame] | 178 | if fi.jacocoReportClassesFile != nil { |
| 179 | fmt.Fprintln(w, "LOCAL_SOONG_JACOCO_REPORT_CLASSES_JAR :=", fi.jacocoReportClassesFile.String()) |
| 180 | } |
Sasha Smundak | 18d98bc | 2020-05-27 16:36:07 -0700 | [diff] [blame] | 181 | switch fi.class { |
| 182 | case javaSharedLib: |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 183 | // soong_java_prebuilt.mk sets LOCAL_MODULE_SUFFIX := .jar Therefore |
| 184 | // we need to remove the suffix from LOCAL_MODULE_STEM, otherwise |
| 185 | // we will have foo.jar.jar |
Jiyong Park | f1493cc | 2020-05-29 21:29:20 +0900 | [diff] [blame] | 186 | fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", strings.TrimSuffix(fi.Stem(), ".jar")) |
Jiyong Park | 9e83f0b | 2020-06-11 00:35:03 +0900 | [diff] [blame] | 187 | if javaModule, ok := fi.module.(java.Dependency); ok { |
| 188 | fmt.Fprintln(w, "LOCAL_SOONG_CLASSES_JAR :=", javaModule.ImplementationAndResourcesJars()[0].String()) |
| 189 | fmt.Fprintln(w, "LOCAL_SOONG_HEADER_JAR :=", javaModule.HeaderJars()[0].String()) |
| 190 | } else { |
| 191 | fmt.Fprintln(w, "LOCAL_SOONG_CLASSES_JAR :=", fi.builtFile.String()) |
| 192 | fmt.Fprintln(w, "LOCAL_SOONG_HEADER_JAR :=", fi.builtFile.String()) |
| 193 | } |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 194 | fmt.Fprintln(w, "LOCAL_SOONG_DEX_JAR :=", fi.builtFile.String()) |
| 195 | fmt.Fprintln(w, "LOCAL_DEX_PREOPT := false") |
| 196 | fmt.Fprintln(w, "include $(BUILD_SYSTEM)/soong_java_prebuilt.mk") |
Sasha Smundak | 18d98bc | 2020-05-27 16:36:07 -0700 | [diff] [blame] | 197 | case app: |
Colin Cross | 503c1d0 | 2020-01-28 14:00:53 -0800 | [diff] [blame] | 198 | fmt.Fprintln(w, "LOCAL_CERTIFICATE :=", fi.certificate.AndroidMkString()) |
Jiyong Park | 618922e | 2020-01-08 13:35:43 +0900 | [diff] [blame] | 199 | // soong_app_prebuilt.mk sets LOCAL_MODULE_SUFFIX := .apk Therefore |
| 200 | // we need to remove the suffix from LOCAL_MODULE_STEM, otherwise |
| 201 | // we will have foo.apk.apk |
Jiyong Park | f1493cc | 2020-05-29 21:29:20 +0900 | [diff] [blame] | 202 | fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", strings.TrimSuffix(fi.Stem(), ".apk")) |
Jaewoong Jung | 87a33e7 | 2020-03-26 14:01:48 -0700 | [diff] [blame] | 203 | if app, ok := fi.module.(*java.AndroidApp); ok && len(app.JniCoverageOutputs()) > 0 { |
| 204 | fmt.Fprintln(w, "LOCAL_PREBUILT_COVERAGE_ARCHIVE :=", strings.Join(app.JniCoverageOutputs().Strings(), " ")) |
| 205 | } |
Jiyong Park | 618922e | 2020-01-08 13:35:43 +0900 | [diff] [blame] | 206 | fmt.Fprintln(w, "include $(BUILD_SYSTEM)/soong_app_prebuilt.mk") |
Sasha Smundak | 18d98bc | 2020-05-27 16:36:07 -0700 | [diff] [blame] | 207 | 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()) |
| 213 | fmt.Fprintln(w, "include $(BUILD_SYSTEM)/soong_android_app_set.mk") |
| 214 | case nativeSharedLib, nativeExecutable, nativeTest: |
Jiyong Park | f1493cc | 2020-05-29 21:29:20 +0900 | [diff] [blame] | 215 | fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", fi.Stem()) |
Sasha Smundak | 18d98bc | 2020-05-27 16:36:07 -0700 | [diff] [blame] | 216 | if ccMod, ok := fi.module.(*cc.Module); ok { |
| 217 | if ccMod.UnstrippedOutputFile() != nil { |
| 218 | fmt.Fprintln(w, "LOCAL_SOONG_UNSTRIPPED_BINARY :=", ccMod.UnstrippedOutputFile().String()) |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 219 | } |
Sasha Smundak | 18d98bc | 2020-05-27 16:36:07 -0700 | [diff] [blame] | 220 | ccMod.AndroidMkWriteAdditionalDependenciesForSourceAbiDiff(w) |
| 221 | if ccMod.CoverageOutputFile().Valid() { |
| 222 | fmt.Fprintln(w, "LOCAL_PREBUILT_COVERAGE_ARCHIVE :=", ccMod.CoverageOutputFile().String()) |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 223 | } |
| 224 | } |
| 225 | fmt.Fprintln(w, "include $(BUILD_SYSTEM)/soong_cc_prebuilt.mk") |
Sasha Smundak | 18d98bc | 2020-05-27 16:36:07 -0700 | [diff] [blame] | 226 | default: |
Jiyong Park | f1493cc | 2020-05-29 21:29:20 +0900 | [diff] [blame] | 227 | fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", fi.Stem()) |
Jiyong Park | 7aa3f76 | 2020-01-28 16:51:34 +0900 | [diff] [blame] | 228 | if fi.builtFile == a.manifestPbOut && apexType == flattenedApex { |
Jooyung Han | 75de261 | 2020-01-24 02:02:45 +0900 | [diff] [blame] | 229 | if a.primaryApexType { |
| 230 | // Make apex_manifest.pb module for this APEX to override all other |
| 231 | // modules in the APEXes being overridden by this APEX |
| 232 | var patterns []string |
| 233 | for _, o := range a.overridableProperties.Overrides { |
| 234 | patterns = append(patterns, "%."+o+a.suffix) |
| 235 | } |
Yo Chiang | 12d9f7a | 2020-06-16 17:32:19 +0800 | [diff] [blame^] | 236 | if len(patterns) > 0 { |
| 237 | fmt.Fprintln(w, "LOCAL_OVERRIDES_MODULES :=", strings.Join(patterns, " ")) |
| 238 | } |
Jiyong Park | 7aa3f76 | 2020-01-28 16:51:34 +0900 | [diff] [blame] | 239 | if len(a.compatSymlinks) > 0 { |
Jooyung Han | 75de261 | 2020-01-24 02:02:45 +0900 | [diff] [blame] | 240 | // For flattened apexes, compat symlinks are attached to apex_manifest.json which is guaranteed for every apex |
| 241 | postInstallCommands = append(postInstallCommands, a.compatSymlinks...) |
| 242 | } |
| 243 | } |
| 244 | if len(postInstallCommands) > 0 { |
Jiyong Park | 7cd10e3 | 2020-01-14 09:22:18 +0900 | [diff] [blame] | 245 | fmt.Fprintln(w, "LOCAL_POST_INSTALL_CMD :=", strings.Join(postInstallCommands, " && ")) |
Jiyong Park | 0abc1b4 | 2020-01-09 17:43:39 +0900 | [diff] [blame] | 246 | } |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 247 | } |
| 248 | fmt.Fprintln(w, "include $(BUILD_PREBUILT)") |
| 249 | } |
Jiyong Park | 31af267 | 2020-02-11 09:36:25 +0900 | [diff] [blame] | 250 | |
| 251 | // m <module_name> will build <module_name>.<apex_name> as well. |
| 252 | if fi.moduleName != moduleName && a.primaryApexType { |
| 253 | fmt.Fprintln(w, ".PHONY: "+fi.moduleName) |
| 254 | fmt.Fprintln(w, fi.moduleName+": "+moduleName) |
| 255 | } |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 256 | } |
| 257 | return moduleNames |
| 258 | } |
| 259 | |
Jiyong Park | 7afd107 | 2019-12-30 16:56:33 +0900 | [diff] [blame] | 260 | func (a *apexBundle) writeRequiredModules(w io.Writer) { |
| 261 | var required []string |
| 262 | var targetRequired []string |
| 263 | var hostRequired []string |
| 264 | for _, fi := range a.filesInfo { |
| 265 | required = append(required, fi.requiredModuleNames...) |
| 266 | targetRequired = append(targetRequired, fi.targetRequiredModuleNames...) |
| 267 | hostRequired = append(hostRequired, fi.hostRequiredModuleNames...) |
| 268 | } |
| 269 | |
| 270 | if len(required) > 0 { |
| 271 | fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES +=", strings.Join(required, " ")) |
| 272 | } |
| 273 | if len(targetRequired) > 0 { |
| 274 | fmt.Fprintln(w, "LOCAL_TARGET_REQUIRED_MODULES +=", strings.Join(targetRequired, " ")) |
| 275 | } |
| 276 | if len(hostRequired) > 0 { |
| 277 | fmt.Fprintln(w, "LOCAL_HOST_REQUIRED_MODULES +=", strings.Join(hostRequired, " ")) |
| 278 | } |
| 279 | } |
| 280 | |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 281 | func (a *apexBundle) androidMkForType() android.AndroidMkData { |
| 282 | return android.AndroidMkData{ |
| 283 | Custom: func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) { |
| 284 | moduleNames := []string{} |
| 285 | apexType := a.properties.ApexType |
| 286 | if a.installable() { |
| 287 | apexName := proptools.StringDefault(a.properties.Apex_name, name) |
Jiyong Park | db33486 | 2020-02-05 17:19:28 +0900 | [diff] [blame] | 288 | moduleNames = a.androidMkForFiles(w, name, apexName, moduleDir) |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | if apexType == flattenedApex { |
| 292 | // Only image APEXes can be flattened. |
| 293 | fmt.Fprintln(w, "\ninclude $(CLEAR_VARS)") |
| 294 | fmt.Fprintln(w, "LOCAL_PATH :=", moduleDir) |
| 295 | fmt.Fprintln(w, "LOCAL_MODULE :=", name+a.suffix) |
| 296 | if len(moduleNames) > 0 { |
| 297 | fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES :=", strings.Join(moduleNames, " ")) |
| 298 | } |
Jiyong Park | 7afd107 | 2019-12-30 16:56:33 +0900 | [diff] [blame] | 299 | a.writeRequiredModules(w) |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 300 | fmt.Fprintln(w, "include $(BUILD_PHONY_PACKAGE)") |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 301 | |
| 302 | } else { |
| 303 | fmt.Fprintln(w, "\ninclude $(CLEAR_VARS)") |
| 304 | fmt.Fprintln(w, "LOCAL_PATH :=", moduleDir) |
| 305 | fmt.Fprintln(w, "LOCAL_MODULE :=", name+a.suffix) |
| 306 | fmt.Fprintln(w, "LOCAL_MODULE_CLASS := ETC") // do we need a new class? |
| 307 | fmt.Fprintln(w, "LOCAL_PREBUILT_MODULE_FILE :=", a.outputFile.String()) |
| 308 | fmt.Fprintln(w, "LOCAL_MODULE_PATH :=", a.installDir.ToMakePath().String()) |
| 309 | fmt.Fprintln(w, "LOCAL_MODULE_STEM :=", name+apexType.suffix()) |
| 310 | fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE :=", !a.installable()) |
Yo Chiang | 12d9f7a | 2020-06-16 17:32:19 +0800 | [diff] [blame^] | 311 | if len(a.overridableProperties.Overrides) > 0 { |
| 312 | fmt.Fprintln(w, "LOCAL_OVERRIDES_MODULES :=", strings.Join(a.overridableProperties.Overrides, " ")) |
| 313 | } |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 314 | if len(moduleNames) > 0 { |
| 315 | fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES +=", strings.Join(moduleNames, " ")) |
| 316 | } |
Jiyong Park | 956305c | 2020-01-09 12:32:06 +0900 | [diff] [blame] | 317 | if len(a.requiredDeps) > 0 { |
| 318 | fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES +=", strings.Join(a.requiredDeps, " ")) |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 319 | } |
Jiyong Park | 7afd107 | 2019-12-30 16:56:33 +0900 | [diff] [blame] | 320 | a.writeRequiredModules(w) |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 321 | var postInstallCommands []string |
| 322 | if a.prebuiltFileToDelete != "" { |
| 323 | postInstallCommands = append(postInstallCommands, "rm -rf "+ |
| 324 | filepath.Join(a.installDir.ToMakePath().String(), a.prebuiltFileToDelete)) |
| 325 | } |
| 326 | // For unflattened apexes, compat symlinks are attached to apex package itself as LOCAL_POST_INSTALL_CMD |
| 327 | postInstallCommands = append(postInstallCommands, a.compatSymlinks...) |
| 328 | if len(postInstallCommands) > 0 { |
| 329 | fmt.Fprintln(w, "LOCAL_POST_INSTALL_CMD :=", strings.Join(postInstallCommands, " && ")) |
| 330 | } |
Jiyong Park | 19972c7 | 2020-01-28 20:05:29 +0900 | [diff] [blame] | 331 | |
| 332 | if a.mergedNotices.Merged.Valid() { |
| 333 | fmt.Fprintln(w, "LOCAL_NOTICE_FILE :=", a.mergedNotices.Merged.Path().String()) |
| 334 | } |
| 335 | |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 336 | fmt.Fprintln(w, "include $(BUILD_PREBUILT)") |
| 337 | |
| 338 | if apexType == imageApex { |
Yo Chiang | ef2d489 | 2020-05-08 15:38:40 +0800 | [diff] [blame] | 339 | fmt.Fprintln(w, "ALL_MODULES.$(my_register_name).BUNDLE :=", a.bundleModuleFile.String()) |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 340 | } |
Jiyong Park | 3a1602e | 2020-01-14 14:39:19 +0900 | [diff] [blame] | 341 | |
| 342 | if a.installedFilesFile != nil { |
Colin Cross | 1c85e8e | 2020-02-26 16:55:51 -0800 | [diff] [blame] | 343 | goal := "checkbuild" |
Jiyong Park | 3a1602e | 2020-01-14 14:39:19 +0900 | [diff] [blame] | 344 | distFile := name + "-installed-files.txt" |
| 345 | fmt.Fprintln(w, ".PHONY:", goal) |
| 346 | fmt.Fprintf(w, "$(call dist-for-goals,%s,%s:%s)\n", |
| 347 | goal, a.installedFilesFile.String(), distFile) |
| 348 | } |
Jiyong Park | 09d7752 | 2019-11-18 11:16:27 +0900 | [diff] [blame] | 349 | } |
| 350 | }} |
| 351 | } |