blob: 7844756126245cd4dd1859bb0ca0062d7d9c07e7 [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 (
Jiyong Parkf9332f12018-02-01 00:54:12 +090027 vendorSuffix = ".vendor"
28 recoverySuffix = ".recovery"
Jiyong Park27b188b2017-07-18 13:23:39 +090029)
30
Dan Willemsenf2c27d72016-07-13 16:50:22 -070031type AndroidMkContext interface {
Jiyong Parkb0788572018-12-20 22:10:17 +090032 Name() string
Dan Willemsenf2c27d72016-07-13 16:50:22 -070033 Target() android.Target
Colin Crossb916a382016-07-29 17:28:03 -070034 subAndroidMk(*android.AndroidMkData, interface{})
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -070035 useVndk() bool
Jiyong Parkb0788572018-12-20 22:10:17 +090036 static() bool
37 inRecovery() bool
Colin Crossb916a382016-07-29 17:28:03 -070038}
39
40type subAndroidMkProvider interface {
41 AndroidMk(AndroidMkContext, *android.AndroidMkData)
42}
43
44func (c *Module) subAndroidMk(data *android.AndroidMkData, obj interface{}) {
45 if c.subAndroidMkOnce == nil {
46 c.subAndroidMkOnce = make(map[subAndroidMkProvider]bool)
47 }
48 if androidmk, ok := obj.(subAndroidMkProvider); ok {
49 if !c.subAndroidMkOnce[androidmk] {
50 c.subAndroidMkOnce[androidmk] = true
51 androidmk.AndroidMk(c, data)
52 }
53 }
Dan Willemsenf2c27d72016-07-13 16:50:22 -070054}
55
Colin Crossa18e9cf2017-08-10 17:00:19 -070056func (c *Module) AndroidMk() android.AndroidMkData {
Jiyong Park9d452992018-10-03 00:38:19 +090057 if c.Properties.HideFromMake || !c.IsForPlatform() {
Colin Crossa18e9cf2017-08-10 17:00:19 -070058 return android.AndroidMkData{
59 Disabled: true,
60 }
Colin Crossbc6fb162016-05-24 15:39:04 -070061 }
62
Colin Crossa18e9cf2017-08-10 17:00:19 -070063 ret := android.AndroidMkData{
64 OutputFile: c.outputFile,
Jiyong Parkb0788572018-12-20 22:10:17 +090065 // TODO(jiyong): add the APEXes providing shared libs to the required modules
66 // Currently, adding c.Properties.ApexesProvidingSharedLibs is causing multiple
67 // runtime APEXes (com.android.runtime.debug|release) to be installed. And this
68 // is breaking some older devices (like marlin) where system.img is small.
69 Required: c.Properties.AndroidMkRuntimeLibs,
70 Include: "$(BUILD_SYSTEM)/soong_cc_prebuilt.mk",
Logan Chien43d34c32017-12-20 01:17:32 +080071
Colin Crossa18e9cf2017-08-10 17:00:19 -070072 Extra: []android.AndroidMkExtraFunc{
73 func(w io.Writer, outputFile android.Path) {
Colin Cross5beccee2017-12-07 15:28:59 -080074 if len(c.Properties.Logtags) > 0 {
75 fmt.Fprintln(w, "LOCAL_LOGTAGS_FILES :=", strings.Join(c.Properties.Logtags, " "))
76 }
Colin Crossa18e9cf2017-08-10 17:00:19 -070077 if len(c.Properties.AndroidMkSharedLibs) > 0 {
78 fmt.Fprintln(w, "LOCAL_SHARED_LIBRARIES := "+strings.Join(c.Properties.AndroidMkSharedLibs, " "))
79 }
Jaewoong Jung16c7d3d2018-11-16 01:19:56 +000080 if len(c.Properties.AndroidMkStaticLibs) > 0 {
81 fmt.Fprintln(w, "LOCAL_STATIC_LIBRARIES := "+strings.Join(c.Properties.AndroidMkStaticLibs, " "))
82 }
83 if len(c.Properties.AndroidMkWholeStaticLibs) > 0 {
84 fmt.Fprintln(w, "LOCAL_WHOLE_STATIC_LIBRARIES := "+strings.Join(c.Properties.AndroidMkWholeStaticLibs, " "))
85 }
Colin Crossb60190a2018-09-04 16:28:17 -070086 fmt.Fprintln(w, "LOCAL_SOONG_LINK_TYPE :=", c.getMakeLinkType())
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -070087 if c.useVndk() {
Colin Crossa18e9cf2017-08-10 17:00:19 -070088 fmt.Fprintln(w, "LOCAL_USE_VNDK := true")
89 }
90 },
91 },
92 }
Colin Crossca860ac2016-01-04 14:34:37 -080093
Colin Crossca860ac2016-01-04 14:34:37 -080094 for _, feature := range c.features {
Colin Crossb916a382016-07-29 17:28:03 -070095 c.subAndroidMk(&ret, feature)
Colin Crossca860ac2016-01-04 14:34:37 -080096 }
97
Colin Crossb916a382016-07-29 17:28:03 -070098 c.subAndroidMk(&ret, c.compiler)
99 c.subAndroidMk(&ret, c.linker)
Colin Cross8ff9ef42017-05-08 13:44:11 -0700100 if c.sanitize != nil {
101 c.subAndroidMk(&ret, c.sanitize)
102 }
Colin Crossb916a382016-07-29 17:28:03 -0700103 c.subAndroidMk(&ret, c.installer)
Colin Crossca860ac2016-01-04 14:34:37 -0800104
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -0700105 if c.useVndk() && c.hasVendorVariant() {
Jiyong Park27b188b2017-07-18 13:23:39 +0900106 // .vendor suffix is added only when we will have two variants: core and vendor.
107 // The suffix is not added for vendor-only module.
108 ret.SubName += vendorSuffix
Jiyong Parkf9332f12018-02-01 00:54:12 +0900109 } else if c.inRecovery() && !c.onlyInRecovery() {
110 ret.SubName += recoverySuffix
Dan Willemsen4416e5d2017-04-06 12:43:22 -0700111 }
112
Colin Crossa18e9cf2017-08-10 17:00:19 -0700113 return ret
Colin Crossca860ac2016-01-04 14:34:37 -0800114}
115
Anders Lewisb97e8182017-07-14 15:20:13 -0700116func androidMkWriteTestData(data android.Paths, ctx AndroidMkContext, ret *android.AndroidMkData) {
117 var testFiles []string
118 for _, d := range data {
119 rel := d.Rel()
120 path := d.String()
121 if !strings.HasSuffix(path, rel) {
122 panic(fmt.Errorf("path %q does not end with %q", path, rel))
123 }
124 path = strings.TrimSuffix(path, rel)
125 testFiles = append(testFiles, path+":"+rel)
126 }
127 if len(testFiles) > 0 {
Colin Cross27a4b052017-08-10 16:32:23 -0700128 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Anders Lewisb97e8182017-07-14 15:20:13 -0700129 fmt.Fprintln(w, "LOCAL_TEST_DATA := "+strings.Join(testFiles, " "))
Anders Lewisb97e8182017-07-14 15:20:13 -0700130 })
131 }
132}
133
Dan Willemsen58539402017-03-19 13:44:32 -0700134func (library *libraryDecorator) androidMkWriteExportedFlags(w io.Writer) {
135 exportedFlags := library.exportedFlags()
136 if len(exportedFlags) > 0 {
137 fmt.Fprintln(w, "LOCAL_EXPORT_CFLAGS :=", strings.Join(exportedFlags, " "))
Dan Willemsend5781342017-02-15 16:15:21 -0800138 }
Dan Willemsen58539402017-03-19 13:44:32 -0700139 exportedFlagsDeps := library.exportedFlagsDeps()
140 if len(exportedFlagsDeps) > 0 {
141 fmt.Fprintln(w, "LOCAL_EXPORT_C_INCLUDE_DEPS :=", strings.Join(exportedFlagsDeps.Strings(), " "))
142 }
143}
Dan Willemsend5781342017-02-15 16:15:21 -0800144
Dan Willemsen58539402017-03-19 13:44:32 -0700145func (library *libraryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Dan Willemsend5781342017-02-15 16:15:21 -0800146 if library.static() {
147 ret.Class = "STATIC_LIBRARIES"
148 } else if library.shared() {
Dan Willemsend5781342017-02-15 16:15:21 -0800149 ret.Class = "SHARED_LIBRARIES"
Colin Crossb60190a2018-09-04 16:28:17 -0700150 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
151 fmt.Fprintln(w, "LOCAL_SOONG_TOC :=", library.toc().String())
152 fmt.Fprintln(w, "LOCAL_SOONG_UNSTRIPPED_BINARY :=", library.unstrippedOutputFile.String())
dimitryd95964a2018-11-07 13:43:34 +0100153 if len(library.Properties.Overrides) > 0 {
154 fmt.Fprintln(w, "LOCAL_OVERRIDES_MODULES := "+strings.Join(library.Properties.Overrides, " "))
155 }
Colin Crossb60190a2018-09-04 16:28:17 -0700156 })
Dan Willemsend5781342017-02-15 16:15:21 -0800157 } else if library.header() {
Colin Crossb60190a2018-09-04 16:28:17 -0700158 ret.Class = "HEADER_LIBRARIES"
Dan Willemsend5781342017-02-15 16:15:21 -0800159 }
160
Dan Willemsen569edc52018-11-19 09:33:29 -0800161 ret.DistFile = library.distFile
Colin Cross27a4b052017-08-10 16:32:23 -0700162 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Dan Willemsen58539402017-03-19 13:44:32 -0700163 library.androidMkWriteExportedFlags(w)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800164 fmt.Fprintln(w, "LOCAL_ADDITIONAL_DEPENDENCIES := ")
165 if library.sAbiOutputFile.Valid() {
166 fmt.Fprintln(w, "LOCAL_ADDITIONAL_DEPENDENCIES += ", library.sAbiOutputFile.String())
167 if library.sAbiDiff.Valid() && !library.static() {
168 fmt.Fprintln(w, "LOCAL_ADDITIONAL_DEPENDENCIES += ", library.sAbiDiff.String())
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700169 fmt.Fprintln(w, "HEADER_ABI_DIFFS += ", library.sAbiDiff.String())
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800170 }
171 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700172
Logan Chien031d2b32018-07-26 00:19:50 +0800173 _, _, ext := splitFileExt(outputFile.Base())
174
175 fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+ext)
Dan Willemsen218f6562015-07-08 18:13:11 -0700176
Dan Willemsen581341d2017-02-09 16:16:31 -0800177 if library.coverageOutputFile.Valid() {
178 fmt.Fprintln(w, "LOCAL_PREBUILT_COVERAGE_ARCHIVE :=", library.coverageOutputFile.String())
179 }
Colin Crossca860ac2016-01-04 14:34:37 -0800180 })
Colin Crossb916a382016-07-29 17:28:03 -0700181
Jiyong Parkb0788572018-12-20 22:10:17 +0900182 if library.shared() && !library.buildStubs() {
Colin Crossb916a382016-07-29 17:28:03 -0700183 ctx.subAndroidMk(ret, library.baseInstaller)
Colin Crossb60190a2018-09-04 16:28:17 -0700184 } else {
185 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
186 fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
Jiyong Parkb0788572018-12-20 22:10:17 +0900187 if library.buildStubs() {
188 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
189 }
Colin Crossb60190a2018-09-04 16:28:17 -0700190 })
Colin Crossb916a382016-07-29 17:28:03 -0700191 }
Jiyong Parkb0788572018-12-20 22:10:17 +0900192
193 if len(library.Properties.Stubs.Versions) > 0 && android.DirectlyInAnyApex(ctx.Name()) &&
194 !ctx.inRecovery() && !ctx.useVndk() && !ctx.static() {
195 if !library.buildStubs() {
196 ret.SubName = ".bootstrap"
197 }
198 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700199}
200
Dan Willemsenf2c27d72016-07-13 16:50:22 -0700201func (object *objectLinker) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Colin Cross0f86d182017-08-10 17:07:28 -0700202 ret.Custom = func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) {
Colin Crossca860ac2016-01-04 14:34:37 -0800203 out := ret.OutputFile.Path()
Dan Willemsen2e224ca2018-09-06 00:26:20 -0700204 varname := fmt.Sprintf("SOONG_%sOBJECT_%s%s", prefix, name, data.SubName)
Dan Willemsen218f6562015-07-08 18:13:11 -0700205
Dan Willemsen2e224ca2018-09-06 00:26:20 -0700206 fmt.Fprintf(w, "\n%s := %s\n", varname, out.String())
207 fmt.Fprintln(w, ".KATI_READONLY: "+varname)
Dan Willemsen218f6562015-07-08 18:13:11 -0700208 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700209}
210
Colin Crossb916a382016-07-29 17:28:03 -0700211func (binary *binaryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Colin Cross1e7d3702016-08-24 15:25:47 -0700212 ctx.subAndroidMk(ret, binary.baseInstaller)
Dan Willemsen7517ed02016-06-10 17:20:30 -0700213
Dan Willemsen218f6562015-07-08 18:13:11 -0700214 ret.Class = "EXECUTABLES"
Dan Willemsen569edc52018-11-19 09:33:29 -0800215 ret.DistFile = binary.distFile
Colin Cross27a4b052017-08-10 16:32:23 -0700216 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Crossb60190a2018-09-04 16:28:17 -0700217 fmt.Fprintln(w, "LOCAL_SOONG_UNSTRIPPED_BINARY :=", binary.unstrippedOutputFile.String())
Colin Cross9b09f242016-12-07 13:37:42 -0800218 if len(binary.symlinks) > 0 {
219 fmt.Fprintln(w, "LOCAL_MODULE_SYMLINKS := "+strings.Join(binary.symlinks, " "))
220 }
221
Dan Willemsen581341d2017-02-09 16:16:31 -0800222 if binary.coverageOutputFile.Valid() {
223 fmt.Fprintln(w, "LOCAL_PREBUILT_COVERAGE_ARCHIVE :=", binary.coverageOutputFile.String())
224 }
Yifan Hong946e32e2018-04-03 13:22:50 -0700225
226 if len(binary.Properties.Overrides) > 0 {
227 fmt.Fprintln(w, "LOCAL_OVERRIDES_MODULES := "+strings.Join(binary.Properties.Overrides, " "))
228 }
Colin Crossca860ac2016-01-04 14:34:37 -0800229 })
230}
231
Colin Crossb916a382016-07-29 17:28:03 -0700232func (benchmark *benchmarkDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
233 ctx.subAndroidMk(ret, benchmark.binaryDecorator)
Dan Willemsen58a5c8b2017-05-23 15:10:37 -0700234 ret.Class = "NATIVE_TESTS"
Colin Cross27a4b052017-08-10 16:32:23 -0700235 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Crosse28f4e22017-04-24 18:10:29 -0700236 if len(benchmark.Properties.Test_suites) > 0 {
237 fmt.Fprintln(w, "LOCAL_COMPATIBILITY_SUITE :=",
238 strings.Join(benchmark.Properties.Test_suites, " "))
239 }
Colin Cross303e21f2018-08-07 16:49:25 -0700240 if benchmark.testConfig != nil {
241 fmt.Fprintln(w, "LOCAL_FULL_TEST_CONFIG :=", benchmark.testConfig.String())
Julien Despreze146e392018-08-02 15:00:46 -0700242 }
Nelson Li1f6b14e2018-04-18 16:55:21 +0000243 fmt.Fprintln(w, "LOCAL_NATIVE_BENCHMARK := true")
Colin Crosse28f4e22017-04-24 18:10:29 -0700244 })
Anders Lewisb97e8182017-07-14 15:20:13 -0700245
246 androidMkWriteTestData(benchmark.data, ctx, ret)
Colin Crossb916a382016-07-29 17:28:03 -0700247}
248
249func (test *testBinary) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
250 ctx.subAndroidMk(ret, test.binaryDecorator)
Dan Willemsen0fe72532017-01-17 13:25:49 -0800251 ret.Class = "NATIVE_TESTS"
Colin Crossb916a382016-07-29 17:28:03 -0700252 if Bool(test.Properties.Test_per_src) {
Nan Zhang0007d812017-11-07 10:57:05 -0800253 ret.SubName = "_" + String(test.binaryDecorator.Properties.Stem)
Colin Crossa2344662016-03-24 13:14:12 -0700254 }
Colin Crossfaeb7aa2017-02-01 14:12:44 -0800255
Colin Cross27a4b052017-08-10 16:32:23 -0700256 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Crossa929db02017-03-27 16:27:50 -0700257 if len(test.Properties.Test_suites) > 0 {
Dan Shi4df566d2017-04-03 12:29:25 -0700258 fmt.Fprintln(w, "LOCAL_COMPATIBILITY_SUITE :=",
Colin Crossa929db02017-03-27 16:27:50 -0700259 strings.Join(test.Properties.Test_suites, " "))
260 }
Colin Cross303e21f2018-08-07 16:49:25 -0700261 if test.testConfig != nil {
262 fmt.Fprintln(w, "LOCAL_FULL_TEST_CONFIG :=", test.testConfig.String())
Julien Despreze146e392018-08-02 15:00:46 -0700263 }
Colin Crossa929db02017-03-27 16:27:50 -0700264 })
265
Anders Lewisb97e8182017-07-14 15:20:13 -0700266 androidMkWriteTestData(test.data, ctx, ret)
Colin Crossa2344662016-03-24 13:14:12 -0700267}
268
Colin Crossb916a382016-07-29 17:28:03 -0700269func (test *testLibrary) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
270 ctx.subAndroidMk(ret, test.libraryDecorator)
271}
Dan Willemsene7932e82016-05-16 15:56:53 -0700272
Colin Crossb916a382016-07-29 17:28:03 -0700273func (library *toolchainLibraryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
274 ret.Class = "STATIC_LIBRARIES"
Colin Cross27a4b052017-08-10 16:32:23 -0700275 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Logan Chien031d2b32018-07-26 00:19:50 +0800276 _, suffix, _ := splitFileExt(outputFile.Base())
277 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Dan Willemsen7517ed02016-06-10 17:20:30 -0700278 })
279}
280
Dan Willemsenf2c27d72016-07-13 16:50:22 -0700281func (installer *baseInstaller) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Dan Willemsen03ce63e2016-09-29 12:17:49 -0700282 // Soong installation is only supported for host modules. Have Make
283 // installation trigger Soong installation.
284 if ctx.Target().Os.Class == android.Host {
285 ret.OutputFile = android.OptionalPathForPath(installer.path)
286 }
287
Colin Cross27a4b052017-08-10 16:32:23 -0700288 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Crossa2344662016-03-24 13:14:12 -0700289 path := installer.path.RelPathString()
Colin Crossbf305de2016-03-29 17:32:06 -0700290 dir, file := filepath.Split(path)
Logan Chien031d2b32018-07-26 00:19:50 +0800291 stem, suffix, _ := splitFileExt(file)
292 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Colin Crosse14388b2016-05-03 14:08:40 -0700293 fmt.Fprintln(w, "LOCAL_MODULE_PATH := $(OUT_DIR)/"+filepath.Clean(dir))
Colin Crossbf305de2016-03-29 17:32:06 -0700294 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
Colin Crossa2344662016-03-24 13:14:12 -0700295 })
Dan Willemsen218f6562015-07-08 18:13:11 -0700296}
Dan Albert914449f2016-06-17 16:45:24 -0700297
Colin Crossb916a382016-07-29 17:28:03 -0700298func (c *stubDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Dan Willemsen01a90592017-04-07 15:21:13 -0700299 ret.SubName = ndkLibrarySuffix + "." + c.properties.ApiLevel
Dan Albert705c84b2016-08-08 10:45:03 -0700300 ret.Class = "SHARED_LIBRARIES"
Dan Albert914449f2016-06-17 16:45:24 -0700301
Colin Cross27a4b052017-08-10 16:32:23 -0700302 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Cross0875c522017-11-28 17:34:01 -0800303 path, file := filepath.Split(c.installPath.String())
Logan Chien031d2b32018-07-26 00:19:50 +0800304 stem, suffix, _ := splitFileExt(file)
Logan Chien031d2b32018-07-26 00:19:50 +0800305 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Dan Albert914449f2016-06-17 16:45:24 -0700306 fmt.Fprintln(w, "LOCAL_MODULE_PATH := "+path)
307 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
Dan Willemsen866810d2017-04-04 14:13:45 -0700308 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
Dan Albert914449f2016-06-17 16:45:24 -0700309 })
310}
Dan Willemsenb916b802017-03-19 13:44:32 -0700311
312func (c *llndkStubDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
313 ret.Class = "SHARED_LIBRARIES"
Jiyong Parkf9332f12018-02-01 00:54:12 +0900314 ret.SubName = vendorSuffix
Dan Willemsenb916b802017-03-19 13:44:32 -0700315
Colin Cross27a4b052017-08-10 16:32:23 -0700316 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Dan Willemsenb916b802017-03-19 13:44:32 -0700317 c.libraryDecorator.androidMkWriteExportedFlags(w)
Logan Chien031d2b32018-07-26 00:19:50 +0800318 _, _, ext := splitFileExt(outputFile.Base())
Dan Willemsenb916b802017-03-19 13:44:32 -0700319
Logan Chien031d2b32018-07-26 00:19:50 +0800320 fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+ext)
Dan Willemsenb916b802017-03-19 13:44:32 -0700321 fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
322 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
Colin Crossb60190a2018-09-04 16:28:17 -0700323 fmt.Fprintln(w, "LOCAL_SOONG_TOC :=", c.toc().String())
Dan Willemsenb916b802017-03-19 13:44:32 -0700324 })
325}
Justin Yun71549282017-11-17 12:10:28 +0900326
327func (c *vndkPrebuiltLibraryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
328 ret.Class = "SHARED_LIBRARIES"
329
Jae Shin43ef2642017-12-29 16:20:21 +0900330 ret.SubName = c.NameSuffix()
Justin Yun71549282017-11-17 12:10:28 +0900331
332 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
333 c.libraryDecorator.androidMkWriteExportedFlags(w)
334
335 path := c.path.RelPathString()
336 dir, file := filepath.Split(path)
Logan Chien031d2b32018-07-26 00:19:50 +0800337 stem, suffix, ext := splitFileExt(file)
Logan Chien031d2b32018-07-26 00:19:50 +0800338 fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+ext)
339 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Justin Yun71549282017-11-17 12:10:28 +0900340 fmt.Fprintln(w, "LOCAL_MODULE_PATH := $(OUT_DIR)/"+filepath.Clean(dir))
341 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
342 })
Colin Cross7a6fcbe2017-12-06 13:08:00 -0800343}
Dan Albert8ba131b2017-12-14 13:23:15 -0800344
345func (c *ndkPrebuiltStlLinker) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
346 ret.Class = "SHARED_LIBRARIES"
Dan Albert8ba131b2017-12-14 13:23:15 -0800347}
Jiyong Park374510b2018-03-19 18:23:01 +0900348
349func (c *vendorPublicLibraryStubDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
350 ret.Class = "SHARED_LIBRARIES"
351 ret.SubName = vendorPublicLibrarySuffix
352
353 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
354 c.libraryDecorator.androidMkWriteExportedFlags(w)
Logan Chien031d2b32018-07-26 00:19:50 +0800355 _, _, ext := splitFileExt(outputFile.Base())
Jiyong Park374510b2018-03-19 18:23:01 +0900356
Logan Chien031d2b32018-07-26 00:19:50 +0800357 fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+ext)
Jiyong Park374510b2018-03-19 18:23:01 +0900358 fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
359 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
360 })
361}