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