blob: a78e4552ad09e5377512c9636fcd35337e5cd0f3 [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 cc
16
17import (
Dan Willemsen97750522016-02-09 17:43:51 -080018 "fmt"
Dan Willemsen218f6562015-07-08 18:13:11 -070019 "io"
Colin Crossa2344662016-03-24 13:14:12 -070020 "path/filepath"
Dan Willemsen218f6562015-07-08 18:13:11 -070021 "strings"
22
Colin Cross635c3b02016-05-18 15:37:25 -070023 "android/soong/android"
Dan Willemsen218f6562015-07-08 18:13:11 -070024)
25
Jiyong Park27b188b2017-07-18 13:23:39 +090026var (
dimitry43204492019-05-23 13:24:38 +020027 nativeBridgeSuffix = ".native_bridge"
Justin Yun5f7f7e82019-11-18 19:52:14 +090028 productSuffix = ".product"
dimitry43204492019-05-23 13:24:38 +020029 vendorSuffix = ".vendor"
Yifan Hong1b3348d2020-01-21 15:53:22 -080030 ramdiskSuffix = ".ramdisk"
dimitry43204492019-05-23 13:24:38 +020031 recoverySuffix = ".recovery"
Jiyong Park27b188b2017-07-18 13:23:39 +090032)
33
Dan Willemsenf2c27d72016-07-13 16:50:22 -070034type AndroidMkContext interface {
Jiyong Parkb0788572018-12-20 22:10:17 +090035 Name() string
Dan Willemsenf2c27d72016-07-13 16:50:22 -070036 Target() android.Target
Colin Crossb916a382016-07-29 17:28:03 -070037 subAndroidMk(*android.AndroidMkData, interface{})
Nicolas Geoffrayc22c1bf2019-01-15 19:53:23 +000038 Arch() android.Arch
39 Os() android.OsType
40 Host() bool
Ivan Lozano52767be2019-10-18 14:49:46 -070041 UseVndk() bool
Justin Yun5f7f7e82019-11-18 19:52:14 +090042 VndkVersion() string
Jiyong Parkb0788572018-12-20 22:10:17 +090043 static() bool
Yifan Hong1b3348d2020-01-21 15:53:22 -080044 InRamdisk() bool
Ivan Lozano52767be2019-10-18 14:49:46 -070045 InRecovery() bool
Colin Crossb916a382016-07-29 17:28:03 -070046}
47
48type subAndroidMkProvider interface {
49 AndroidMk(AndroidMkContext, *android.AndroidMkData)
50}
51
52func (c *Module) subAndroidMk(data *android.AndroidMkData, obj interface{}) {
53 if c.subAndroidMkOnce == nil {
54 c.subAndroidMkOnce = make(map[subAndroidMkProvider]bool)
55 }
56 if androidmk, ok := obj.(subAndroidMkProvider); ok {
57 if !c.subAndroidMkOnce[androidmk] {
58 c.subAndroidMkOnce[androidmk] = true
59 androidmk.AndroidMk(c, data)
60 }
61 }
Dan Willemsenf2c27d72016-07-13 16:50:22 -070062}
63
Colin Crossa18e9cf2017-08-10 17:00:19 -070064func (c *Module) AndroidMk() android.AndroidMkData {
Jiyong Park9d452992018-10-03 00:38:19 +090065 if c.Properties.HideFromMake || !c.IsForPlatform() {
Colin Crossa18e9cf2017-08-10 17:00:19 -070066 return android.AndroidMkData{
67 Disabled: true,
68 }
Colin Crossbc6fb162016-05-24 15:39:04 -070069 }
70
Colin Crossa18e9cf2017-08-10 17:00:19 -070071 ret := android.AndroidMkData{
72 OutputFile: c.outputFile,
Jiyong Parkb0788572018-12-20 22:10:17 +090073 // TODO(jiyong): add the APEXes providing shared libs to the required modules
74 // Currently, adding c.Properties.ApexesProvidingSharedLibs is causing multiple
Martin Stjernholmcc4b0ad2019-07-05 22:38:25 +010075 // ART APEXes (com.android.art.debug|release) to be installed. And this
Jiyong Parkb0788572018-12-20 22:10:17 +090076 // is breaking some older devices (like marlin) where system.img is small.
77 Required: c.Properties.AndroidMkRuntimeLibs,
78 Include: "$(BUILD_SYSTEM)/soong_cc_prebuilt.mk",
Logan Chien43d34c32017-12-20 01:17:32 +080079
Colin Crossa18e9cf2017-08-10 17:00:19 -070080 Extra: []android.AndroidMkExtraFunc{
81 func(w io.Writer, outputFile android.Path) {
Colin Cross5beccee2017-12-07 15:28:59 -080082 if len(c.Properties.Logtags) > 0 {
83 fmt.Fprintln(w, "LOCAL_LOGTAGS_FILES :=", strings.Join(c.Properties.Logtags, " "))
84 }
Colin Crossa18e9cf2017-08-10 17:00:19 -070085 if len(c.Properties.AndroidMkSharedLibs) > 0 {
86 fmt.Fprintln(w, "LOCAL_SHARED_LIBRARIES := "+strings.Join(c.Properties.AndroidMkSharedLibs, " "))
87 }
Jaewoong Jung16c7d3d2018-11-16 01:19:56 +000088 if len(c.Properties.AndroidMkStaticLibs) > 0 {
89 fmt.Fprintln(w, "LOCAL_STATIC_LIBRARIES := "+strings.Join(c.Properties.AndroidMkStaticLibs, " "))
90 }
91 if len(c.Properties.AndroidMkWholeStaticLibs) > 0 {
92 fmt.Fprintln(w, "LOCAL_WHOLE_STATIC_LIBRARIES := "+strings.Join(c.Properties.AndroidMkWholeStaticLibs, " "))
93 }
Inseob Kim9516ee92019-05-09 10:56:13 +090094 fmt.Fprintln(w, "LOCAL_SOONG_LINK_TYPE :=", c.makeLinkType)
Ivan Lozano52767be2019-10-18 14:49:46 -070095 if c.UseVndk() {
Colin Crossa18e9cf2017-08-10 17:00:19 -070096 fmt.Fprintln(w, "LOCAL_USE_VNDK := true")
Ivan Lozano52767be2019-10-18 14:49:46 -070097 if c.IsVndk() && !c.static() {
Justin Yun5f7f7e82019-11-18 19:52:14 +090098 fmt.Fprintln(w, "LOCAL_SOONG_VNDK_VERSION := "+c.VndkVersion())
Jooyung Hanb01c1142019-10-29 05:24:42 +090099 // VNDK libraries available to vendor are not installed because
100 // they are packaged in VNDK APEX and installed by APEX packages (apex/apex.go)
101 if !c.isVndkExt() {
102 fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
103 }
Jooyung Han76106d92019-05-20 18:49:10 +0900104 }
Colin Crossa18e9cf2017-08-10 17:00:19 -0700105 }
106 },
107 },
108 }
Colin Crossca860ac2016-01-04 14:34:37 -0800109
Colin Crossca860ac2016-01-04 14:34:37 -0800110 for _, feature := range c.features {
Colin Crossb916a382016-07-29 17:28:03 -0700111 c.subAndroidMk(&ret, feature)
Colin Crossca860ac2016-01-04 14:34:37 -0800112 }
113
Colin Crossb916a382016-07-29 17:28:03 -0700114 c.subAndroidMk(&ret, c.compiler)
115 c.subAndroidMk(&ret, c.linker)
Colin Cross8ff9ef42017-05-08 13:44:11 -0700116 if c.sanitize != nil {
117 c.subAndroidMk(&ret, c.sanitize)
118 }
Colin Crossb916a382016-07-29 17:28:03 -0700119 c.subAndroidMk(&ret, c.installer)
Colin Crossca860ac2016-01-04 14:34:37 -0800120
Inseob Kim64c43952019-08-26 16:52:35 +0900121 ret.SubName += c.Properties.SubName
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700122
Colin Crossa18e9cf2017-08-10 17:00:19 -0700123 return ret
Colin Crossca860ac2016-01-04 14:34:37 -0800124}
125
Anders Lewisb97e8182017-07-14 15:20:13 -0700126func androidMkWriteTestData(data android.Paths, ctx AndroidMkContext, ret *android.AndroidMkData) {
127 var testFiles []string
128 for _, d := range data {
129 rel := d.Rel()
130 path := d.String()
131 if !strings.HasSuffix(path, rel) {
132 panic(fmt.Errorf("path %q does not end with %q", path, rel))
133 }
134 path = strings.TrimSuffix(path, rel)
135 testFiles = append(testFiles, path+":"+rel)
136 }
137 if len(testFiles) > 0 {
Colin Cross27a4b052017-08-10 16:32:23 -0700138 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Anders Lewisb97e8182017-07-14 15:20:13 -0700139 fmt.Fprintln(w, "LOCAL_TEST_DATA := "+strings.Join(testFiles, " "))
Anders Lewisb97e8182017-07-14 15:20:13 -0700140 })
141 }
142}
143
dimitrydb417472019-05-20 16:16:47 +0200144func makeOverrideModuleNames(ctx AndroidMkContext, overrides []string) []string {
145 if ctx.Target().NativeBridge == android.NativeBridgeEnabled {
146 var result []string
147 for _, override := range overrides {
148 result = append(result, override+nativeBridgeSuffix)
149 }
150 return result
151 }
152
153 return overrides
154}
155
Dan Willemsen58539402017-03-19 13:44:32 -0700156func (library *libraryDecorator) androidMkWriteExportedFlags(w io.Writer) {
157 exportedFlags := library.exportedFlags()
Inseob Kim69378442019-06-03 19:10:47 +0900158 for _, dir := range library.exportedDirs() {
Jiyong Park74955042019-10-22 20:19:51 +0900159 exportedFlags = append(exportedFlags, "-I"+dir.String())
Inseob Kim69378442019-06-03 19:10:47 +0900160 }
161 for _, dir := range library.exportedSystemDirs() {
Jiyong Park74955042019-10-22 20:19:51 +0900162 exportedFlags = append(exportedFlags, "-isystem "+dir.String())
Inseob Kim69378442019-06-03 19:10:47 +0900163 }
Dan Willemsen58539402017-03-19 13:44:32 -0700164 if len(exportedFlags) > 0 {
165 fmt.Fprintln(w, "LOCAL_EXPORT_CFLAGS :=", strings.Join(exportedFlags, " "))
Dan Willemsend5781342017-02-15 16:15:21 -0800166 }
Inseob Kim69378442019-06-03 19:10:47 +0900167 exportedDeps := library.exportedDeps()
168 if len(exportedDeps) > 0 {
169 fmt.Fprintln(w, "LOCAL_EXPORT_C_INCLUDE_DEPS :=", strings.Join(exportedDeps.Strings(), " "))
Dan Willemsen58539402017-03-19 13:44:32 -0700170 }
171}
Dan Willemsend5781342017-02-15 16:15:21 -0800172
Logan Chien41eabe62019-04-10 13:33:58 +0800173func (library *libraryDecorator) androidMkWriteAdditionalDependenciesForSourceAbiDiff(w io.Writer) {
174 if library.sAbiOutputFile.Valid() {
175 fmt.Fprintln(w, "LOCAL_ADDITIONAL_DEPENDENCIES +=", library.sAbiOutputFile.String())
176 if library.sAbiDiff.Valid() && !library.static() {
177 fmt.Fprintln(w, "LOCAL_ADDITIONAL_DEPENDENCIES +=", library.sAbiDiff.String())
178 fmt.Fprintln(w, "HEADER_ABI_DIFFS +=", library.sAbiDiff.String())
179 }
180 }
181}
182
Dan Willemsen58539402017-03-19 13:44:32 -0700183func (library *libraryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Dan Willemsend5781342017-02-15 16:15:21 -0800184 if library.static() {
185 ret.Class = "STATIC_LIBRARIES"
186 } else if library.shared() {
Dan Willemsend5781342017-02-15 16:15:21 -0800187 ret.Class = "SHARED_LIBRARIES"
Colin Crossb60190a2018-09-04 16:28:17 -0700188 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
189 fmt.Fprintln(w, "LOCAL_SOONG_TOC :=", library.toc().String())
Jiyong Park47e4fcb2019-02-05 22:33:10 +0900190 if !library.buildStubs() {
191 fmt.Fprintln(w, "LOCAL_SOONG_UNSTRIPPED_BINARY :=", library.unstrippedOutputFile.String())
192 }
dimitryd95964a2018-11-07 13:43:34 +0100193 if len(library.Properties.Overrides) > 0 {
dimitrydb417472019-05-20 16:16:47 +0200194 fmt.Fprintln(w, "LOCAL_OVERRIDES_MODULES := "+strings.Join(makeOverrideModuleNames(ctx, library.Properties.Overrides), " "))
dimitryd95964a2018-11-07 13:43:34 +0100195 }
Jiyong Parkf1194352019-02-25 11:05:47 +0900196 if len(library.post_install_cmds) > 0 {
197 fmt.Fprintln(w, "LOCAL_POST_INSTALL_CMD := "+strings.Join(library.post_install_cmds, "&& "))
198 }
Colin Crossb60190a2018-09-04 16:28:17 -0700199 })
Dan Willemsend5781342017-02-15 16:15:21 -0800200 } else if library.header() {
Colin Crossb60190a2018-09-04 16:28:17 -0700201 ret.Class = "HEADER_LIBRARIES"
Dan Willemsend5781342017-02-15 16:15:21 -0800202 }
203
Dan Willemsen569edc52018-11-19 09:33:29 -0800204 ret.DistFile = library.distFile
Colin Cross27a4b052017-08-10 16:32:23 -0700205 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Dan Willemsen58539402017-03-19 13:44:32 -0700206 library.androidMkWriteExportedFlags(w)
Logan Chien41eabe62019-04-10 13:33:58 +0800207 library.androidMkWriteAdditionalDependenciesForSourceAbiDiff(w)
Dan Willemsen218f6562015-07-08 18:13:11 -0700208
Ivan Lozano022a73b2019-09-09 20:29:31 -0700209 _, _, ext := android.SplitFileExt(outputFile.Base())
Logan Chien031d2b32018-07-26 00:19:50 +0800210
211 fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+ext)
Dan Willemsen218f6562015-07-08 18:13:11 -0700212
Dan Willemsen581341d2017-02-09 16:16:31 -0800213 if library.coverageOutputFile.Valid() {
214 fmt.Fprintln(w, "LOCAL_PREBUILT_COVERAGE_ARCHIVE :=", library.coverageOutputFile.String())
215 }
Vic Yangefd249e2018-11-12 20:19:56 -0800216
217 if library.useCoreVariant {
218 fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
219 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
220 fmt.Fprintln(w, "LOCAL_VNDK_DEPEND_ON_CORE_VARIANT := true")
221 }
Vic Yangd92090f2020-01-08 14:32:28 -0800222 if library.checkSameCoreVariant {
223 fmt.Fprintln(w, "LOCAL_CHECK_SAME_VNDK_VARIANTS := true")
224 }
Colin Crossca860ac2016-01-04 14:34:37 -0800225 })
Colin Crossb916a382016-07-29 17:28:03 -0700226
Jiyong Parkb0788572018-12-20 22:10:17 +0900227 if library.shared() && !library.buildStubs() {
Colin Crossb916a382016-07-29 17:28:03 -0700228 ctx.subAndroidMk(ret, library.baseInstaller)
Colin Crossb60190a2018-09-04 16:28:17 -0700229 } else {
230 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
231 fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
Jiyong Parkb0788572018-12-20 22:10:17 +0900232 if library.buildStubs() {
233 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
234 }
Colin Crossb60190a2018-09-04 16:28:17 -0700235 })
Colin Crossb916a382016-07-29 17:28:03 -0700236 }
Nicolas Geoffrayc22c1bf2019-01-15 19:53:23 +0000237 if len(library.Properties.Stubs.Versions) > 0 &&
Yifan Hong1b3348d2020-01-21 15:53:22 -0800238 android.DirectlyInAnyApex(ctx, ctx.Name()) && !ctx.InRamdisk() && !ctx.InRecovery() && !ctx.UseVndk() &&
Nicolas Geoffrayc22c1bf2019-01-15 19:53:23 +0000239 !ctx.static() {
Jiyong Parkb0788572018-12-20 22:10:17 +0900240 if !library.buildStubs() {
241 ret.SubName = ".bootstrap"
242 }
243 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700244}
245
Dan Willemsenf2c27d72016-07-13 16:50:22 -0700246func (object *objectLinker) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Colin Cross0f86d182017-08-10 17:07:28 -0700247 ret.Custom = func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) {
Colin Crossca860ac2016-01-04 14:34:37 -0800248 out := ret.OutputFile.Path()
Dan Willemsen2e224ca2018-09-06 00:26:20 -0700249 varname := fmt.Sprintf("SOONG_%sOBJECT_%s%s", prefix, name, data.SubName)
Dan Willemsen218f6562015-07-08 18:13:11 -0700250
Dan Willemsen2e224ca2018-09-06 00:26:20 -0700251 fmt.Fprintf(w, "\n%s := %s\n", varname, out.String())
252 fmt.Fprintln(w, ".KATI_READONLY: "+varname)
Dan Willemsen218f6562015-07-08 18:13:11 -0700253 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700254}
255
Colin Crossb916a382016-07-29 17:28:03 -0700256func (binary *binaryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Colin Cross1e7d3702016-08-24 15:25:47 -0700257 ctx.subAndroidMk(ret, binary.baseInstaller)
Dan Willemsen7517ed02016-06-10 17:20:30 -0700258
Dan Willemsen218f6562015-07-08 18:13:11 -0700259 ret.Class = "EXECUTABLES"
Dan Willemsen569edc52018-11-19 09:33:29 -0800260 ret.DistFile = binary.distFile
Colin Cross27a4b052017-08-10 16:32:23 -0700261 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Crossb60190a2018-09-04 16:28:17 -0700262 fmt.Fprintln(w, "LOCAL_SOONG_UNSTRIPPED_BINARY :=", binary.unstrippedOutputFile.String())
Colin Cross9b09f242016-12-07 13:37:42 -0800263 if len(binary.symlinks) > 0 {
264 fmt.Fprintln(w, "LOCAL_MODULE_SYMLINKS := "+strings.Join(binary.symlinks, " "))
265 }
266
Dan Willemsen581341d2017-02-09 16:16:31 -0800267 if binary.coverageOutputFile.Valid() {
268 fmt.Fprintln(w, "LOCAL_PREBUILT_COVERAGE_ARCHIVE :=", binary.coverageOutputFile.String())
269 }
Yifan Hong946e32e2018-04-03 13:22:50 -0700270
271 if len(binary.Properties.Overrides) > 0 {
dimitrydb417472019-05-20 16:16:47 +0200272 fmt.Fprintln(w, "LOCAL_OVERRIDES_MODULES := "+strings.Join(makeOverrideModuleNames(ctx, binary.Properties.Overrides), " "))
Yifan Hong946e32e2018-04-03 13:22:50 -0700273 }
Jiyong Parkf1194352019-02-25 11:05:47 +0900274 if len(binary.post_install_cmds) > 0 {
275 fmt.Fprintln(w, "LOCAL_POST_INSTALL_CMD := "+strings.Join(binary.post_install_cmds, "&& "))
276 }
Colin Crossca860ac2016-01-04 14:34:37 -0800277 })
278}
279
Colin Crossb916a382016-07-29 17:28:03 -0700280func (benchmark *benchmarkDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
281 ctx.subAndroidMk(ret, benchmark.binaryDecorator)
Dan Willemsen58a5c8b2017-05-23 15:10:37 -0700282 ret.Class = "NATIVE_TESTS"
Colin Cross27a4b052017-08-10 16:32:23 -0700283 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Crosse28f4e22017-04-24 18:10:29 -0700284 if len(benchmark.Properties.Test_suites) > 0 {
285 fmt.Fprintln(w, "LOCAL_COMPATIBILITY_SUITE :=",
286 strings.Join(benchmark.Properties.Test_suites, " "))
287 }
Colin Cross303e21f2018-08-07 16:49:25 -0700288 if benchmark.testConfig != nil {
289 fmt.Fprintln(w, "LOCAL_FULL_TEST_CONFIG :=", benchmark.testConfig.String())
Julien Despreze146e392018-08-02 15:00:46 -0700290 }
Nelson Li1f6b14e2018-04-18 16:55:21 +0000291 fmt.Fprintln(w, "LOCAL_NATIVE_BENCHMARK := true")
Dan Shi2468d012020-01-06 15:47:57 -0800292 if !BoolDefault(benchmark.Properties.Auto_gen_config, true) {
293 fmt.Fprintln(w, "LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG := true")
294 }
Colin Crosse28f4e22017-04-24 18:10:29 -0700295 })
Anders Lewisb97e8182017-07-14 15:20:13 -0700296
297 androidMkWriteTestData(benchmark.data, ctx, ret)
Colin Crossb916a382016-07-29 17:28:03 -0700298}
299
300func (test *testBinary) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
301 ctx.subAndroidMk(ret, test.binaryDecorator)
Dan Willemsen0fe72532017-01-17 13:25:49 -0800302 ret.Class = "NATIVE_TESTS"
Colin Crossb916a382016-07-29 17:28:03 -0700303 if Bool(test.Properties.Test_per_src) {
Nan Zhang0007d812017-11-07 10:57:05 -0800304 ret.SubName = "_" + String(test.binaryDecorator.Properties.Stem)
Colin Crossa2344662016-03-24 13:14:12 -0700305 }
Colin Crossfaeb7aa2017-02-01 14:12:44 -0800306
Colin Cross27a4b052017-08-10 16:32:23 -0700307 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Crossa929db02017-03-27 16:27:50 -0700308 if len(test.Properties.Test_suites) > 0 {
Dan Shi4df566d2017-04-03 12:29:25 -0700309 fmt.Fprintln(w, "LOCAL_COMPATIBILITY_SUITE :=",
Colin Crossa929db02017-03-27 16:27:50 -0700310 strings.Join(test.Properties.Test_suites, " "))
311 }
Colin Cross303e21f2018-08-07 16:49:25 -0700312 if test.testConfig != nil {
313 fmt.Fprintln(w, "LOCAL_FULL_TEST_CONFIG :=", test.testConfig.String())
Julien Despreze146e392018-08-02 15:00:46 -0700314 }
Dan Shi2468d012020-01-06 15:47:57 -0800315 if !BoolDefault(test.Properties.Auto_gen_config, true) {
316 fmt.Fprintln(w, "LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG := true")
317 }
Colin Crossa929db02017-03-27 16:27:50 -0700318 })
319
Anders Lewisb97e8182017-07-14 15:20:13 -0700320 androidMkWriteTestData(test.data, ctx, ret)
Colin Crossa2344662016-03-24 13:14:12 -0700321}
322
Mitch Phillips4e4ab8a2019-09-13 17:32:50 -0700323func (fuzz *fuzzBinary) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
324 ctx.subAndroidMk(ret, fuzz.binaryDecorator)
325
326 var fuzzFiles []string
327 for _, d := range fuzz.corpus {
Mitch Phillips8a2bc0b2019-10-17 15:04:01 -0700328 fuzzFiles = append(fuzzFiles,
329 filepath.Dir(fuzz.corpusIntermediateDir.String())+":corpus/"+d.Base())
Mitch Phillips4e4ab8a2019-09-13 17:32:50 -0700330 }
331
Tri Voad172d82019-11-27 13:45:45 -0800332 for _, d := range fuzz.data {
333 fuzzFiles = append(fuzzFiles,
334 filepath.Dir(fuzz.dataIntermediateDir.String())+":data/"+d.Rel())
335 }
336
Mitch Phillips4e4ab8a2019-09-13 17:32:50 -0700337 if fuzz.dictionary != nil {
Mitch Phillips8a2bc0b2019-10-17 15:04:01 -0700338 fuzzFiles = append(fuzzFiles,
339 filepath.Dir(fuzz.dictionary.String())+":"+fuzz.dictionary.Base())
Mitch Phillips4e4ab8a2019-09-13 17:32:50 -0700340 }
341
Kris Alderf979ee32019-10-22 10:52:01 -0700342 if fuzz.config != nil {
343 fuzzFiles = append(fuzzFiles,
344 filepath.Dir(fuzz.config.String())+":config.json")
345 }
346
Mitch Phillips4e4ab8a2019-09-13 17:32:50 -0700347 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
348 fmt.Fprintln(w, "LOCAL_IS_FUZZ_TARGET := true")
Mitch Phillipse1ee1a12019-10-17 19:20:41 -0700349 if len(fuzzFiles) > 0 {
350 fmt.Fprintln(w, "LOCAL_TEST_DATA := "+strings.Join(fuzzFiles, " "))
351 }
352 if fuzz.installedSharedDeps != nil {
353 fmt.Fprintln(w, "LOCAL_FUZZ_INSTALLED_SHARED_DEPS :="+
354 strings.Join(fuzz.installedSharedDeps, " "))
355 }
Mitch Phillips4e4ab8a2019-09-13 17:32:50 -0700356 })
357}
358
Colin Crossb916a382016-07-29 17:28:03 -0700359func (test *testLibrary) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
360 ctx.subAndroidMk(ret, test.libraryDecorator)
361}
Dan Willemsene7932e82016-05-16 15:56:53 -0700362
Colin Crossb916a382016-07-29 17:28:03 -0700363func (library *toolchainLibraryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
364 ret.Class = "STATIC_LIBRARIES"
Colin Cross27a4b052017-08-10 16:32:23 -0700365 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Ivan Lozano022a73b2019-09-09 20:29:31 -0700366 _, suffix, _ := android.SplitFileExt(outputFile.Base())
Logan Chien031d2b32018-07-26 00:19:50 +0800367 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Dan Willemsen7517ed02016-06-10 17:20:30 -0700368 })
369}
370
Dan Willemsenf2c27d72016-07-13 16:50:22 -0700371func (installer *baseInstaller) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Dan Willemsen03ce63e2016-09-29 12:17:49 -0700372 // Soong installation is only supported for host modules. Have Make
373 // installation trigger Soong installation.
374 if ctx.Target().Os.Class == android.Host {
375 ret.OutputFile = android.OptionalPathForPath(installer.path)
376 }
377
Colin Cross27a4b052017-08-10 16:32:23 -0700378 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Crossff6c33d2019-10-02 16:01:35 -0700379 path, file := filepath.Split(installer.path.ToMakePath().String())
Ivan Lozano022a73b2019-09-09 20:29:31 -0700380 stem, suffix, _ := android.SplitFileExt(file)
Logan Chien031d2b32018-07-26 00:19:50 +0800381 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Colin Crossff6c33d2019-10-02 16:01:35 -0700382 fmt.Fprintln(w, "LOCAL_MODULE_PATH := "+path)
Colin Crossbf305de2016-03-29 17:32:06 -0700383 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
Colin Crossa2344662016-03-24 13:14:12 -0700384 })
Dan Willemsen218f6562015-07-08 18:13:11 -0700385}
Dan Albert914449f2016-06-17 16:45:24 -0700386
Colin Crossb916a382016-07-29 17:28:03 -0700387func (c *stubDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Dan Willemsen01a90592017-04-07 15:21:13 -0700388 ret.SubName = ndkLibrarySuffix + "." + c.properties.ApiLevel
Dan Albert705c84b2016-08-08 10:45:03 -0700389 ret.Class = "SHARED_LIBRARIES"
Dan Albert914449f2016-06-17 16:45:24 -0700390
Colin Cross27a4b052017-08-10 16:32:23 -0700391 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Cross0875c522017-11-28 17:34:01 -0800392 path, file := filepath.Split(c.installPath.String())
Ivan Lozano022a73b2019-09-09 20:29:31 -0700393 stem, suffix, _ := android.SplitFileExt(file)
Logan Chien031d2b32018-07-26 00:19:50 +0800394 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Dan Albert914449f2016-06-17 16:45:24 -0700395 fmt.Fprintln(w, "LOCAL_MODULE_PATH := "+path)
396 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
Dan Willemsen866810d2017-04-04 14:13:45 -0700397 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
Dan Albert914449f2016-06-17 16:45:24 -0700398 })
399}
Dan Willemsenb916b802017-03-19 13:44:32 -0700400
401func (c *llndkStubDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
402 ret.Class = "SHARED_LIBRARIES"
403
Colin Cross27a4b052017-08-10 16:32:23 -0700404 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Dan Willemsenb916b802017-03-19 13:44:32 -0700405 c.libraryDecorator.androidMkWriteExportedFlags(w)
Ivan Lozano022a73b2019-09-09 20:29:31 -0700406 _, _, ext := android.SplitFileExt(outputFile.Base())
Dan Willemsenb916b802017-03-19 13:44:32 -0700407
Logan Chien031d2b32018-07-26 00:19:50 +0800408 fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+ext)
Dan Willemsenb916b802017-03-19 13:44:32 -0700409 fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
410 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
Colin Crossb60190a2018-09-04 16:28:17 -0700411 fmt.Fprintln(w, "LOCAL_SOONG_TOC :=", c.toc().String())
Dan Willemsenb916b802017-03-19 13:44:32 -0700412 })
413}
Justin Yun71549282017-11-17 12:10:28 +0900414
415func (c *vndkPrebuiltLibraryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
416 ret.Class = "SHARED_LIBRARIES"
417
Inseob Kim2b96bf52020-02-17 18:00:39 +0900418 ret.SubName = c.androidMkSuffix
Justin Yun71549282017-11-17 12:10:28 +0900419
420 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
421 c.libraryDecorator.androidMkWriteExportedFlags(w)
422
Colin Crossff6c33d2019-10-02 16:01:35 -0700423 path, file := filepath.Split(c.path.ToMakePath().String())
Ivan Lozano022a73b2019-09-09 20:29:31 -0700424 stem, suffix, ext := android.SplitFileExt(file)
Logan Chien031d2b32018-07-26 00:19:50 +0800425 fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+ext)
426 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Colin Crossff6c33d2019-10-02 16:01:35 -0700427 fmt.Fprintln(w, "LOCAL_MODULE_PATH := "+path)
Justin Yun71549282017-11-17 12:10:28 +0900428 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
Inseob Kimeec88e12020-01-22 11:11:29 +0900429 if c.tocFile.Valid() {
430 fmt.Fprintln(w, "LOCAL_SOONG_TOC := "+c.tocFile.String())
431 }
432 })
433}
434
435func (c *vendorSnapshotLibraryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
436 // Each vendor snapshot is exported to androidMk only when BOARD_VNDK_VERSION != current
437 // and the version of the prebuilt is same as BOARD_VNDK_VERSION.
438 if c.shared() {
439 ret.Class = "SHARED_LIBRARIES"
440 } else if c.static() {
441 ret.Class = "STATIC_LIBRARIES"
442 } else if c.header() {
443 ret.Class = "HEADER_LIBRARIES"
444 }
445
446 if c.androidMkVendorSuffix {
447 ret.SubName = vendorSuffix
448 } else {
449 ret.SubName = ""
450 }
451
452 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
453 c.libraryDecorator.androidMkWriteExportedFlags(w)
454
Inseob Kimc3b1a162020-02-18 12:42:54 +0900455 if c.shared() || c.static() {
Inseob Kimeec88e12020-01-22 11:11:29 +0900456 path, file := filepath.Split(c.path.ToMakePath().String())
457 stem, suffix, ext := android.SplitFileExt(file)
458 fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+ext)
459 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Inseob Kimc3b1a162020-02-18 12:42:54 +0900460 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
Inseob Kimeec88e12020-01-22 11:11:29 +0900461 if c.shared() {
462 fmt.Fprintln(w, "LOCAL_MODULE_PATH := "+path)
Inseob Kimeec88e12020-01-22 11:11:29 +0900463 }
464 if c.tocFile.Valid() {
465 fmt.Fprintln(w, "LOCAL_SOONG_TOC := "+c.tocFile.String())
466 }
Inseob Kimc3b1a162020-02-18 12:42:54 +0900467 }
468
469 if !c.shared() { // static or header
Inseob Kimeec88e12020-01-22 11:11:29 +0900470 fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
471 }
472 })
473}
474
475func (c *vendorSnapshotBinaryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
476 ret.Class = "EXECUTABLES"
477
478 if c.androidMkVendorSuffix {
479 ret.SubName = vendorSuffix
480 } else {
481 ret.SubName = ""
482 }
483
484 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
485 fmt.Fprintln(w, "LOCAL_MODULE_SYMLINKS := "+strings.Join(c.Properties.Symlinks, " "))
Justin Yun71549282017-11-17 12:10:28 +0900486 })
Colin Cross7a6fcbe2017-12-06 13:08:00 -0800487}
Dan Albert8ba131b2017-12-14 13:23:15 -0800488
489func (c *ndkPrebuiltStlLinker) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
490 ret.Class = "SHARED_LIBRARIES"
Dan Albert8ba131b2017-12-14 13:23:15 -0800491}
Jiyong Park374510b2018-03-19 18:23:01 +0900492
493func (c *vendorPublicLibraryStubDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
494 ret.Class = "SHARED_LIBRARIES"
495 ret.SubName = vendorPublicLibrarySuffix
496
497 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
498 c.libraryDecorator.androidMkWriteExportedFlags(w)
Ivan Lozano022a73b2019-09-09 20:29:31 -0700499 _, _, ext := android.SplitFileExt(outputFile.Base())
Jiyong Park374510b2018-03-19 18:23:01 +0900500
Logan Chien031d2b32018-07-26 00:19:50 +0800501 fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+ext)
Jiyong Park374510b2018-03-19 18:23:01 +0900502 fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
503 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
504 })
505}
Logan Chien4fcea3d2018-11-20 11:59:08 +0800506
507func (p *prebuiltLinker) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
508 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
509 if p.properties.Check_elf_files != nil {
510 fmt.Fprintln(w, "LOCAL_CHECK_ELF_FILES :=", *p.properties.Check_elf_files)
511 } else {
512 // soong_cc_prebuilt.mk does not include check_elf_file.mk by default
513 // because cc_library_shared and cc_binary use soong_cc_prebuilt.mk as well.
514 // In order to turn on prebuilt ABI checker, set `LOCAL_CHECK_ELF_FILES` to
515 // true if `p.properties.Check_elf_files` is not specified.
516 fmt.Fprintln(w, "LOCAL_CHECK_ELF_FILES := true")
517 }
518 })
519}
520
521func (p *prebuiltLibraryLinker) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
522 ctx.subAndroidMk(ret, p.libraryDecorator)
523 if p.shared() {
524 ctx.subAndroidMk(ret, &p.prebuiltLinker)
525 androidMkWriteAllowUndefinedSymbols(p.baseLinker, ret)
526 }
527}
528
529func (p *prebuiltBinaryLinker) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
530 ctx.subAndroidMk(ret, p.binaryDecorator)
531 ctx.subAndroidMk(ret, &p.prebuiltLinker)
532 androidMkWriteAllowUndefinedSymbols(p.baseLinker, ret)
533}
534
535func androidMkWriteAllowUndefinedSymbols(linker *baseLinker, ret *android.AndroidMkData) {
536 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
537 allow := linker.Properties.Allow_undefined_symbols
538 if allow != nil {
539 fmt.Fprintln(w, "LOCAL_ALLOW_UNDEFINED_SYMBOLS :=", *allow)
540 }
541 })
542}