blob: bb82529adf50bd327e19bd9cdbebb5e39d2cffd4 [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 {
32 Target() android.Target
Colin Crossb916a382016-07-29 17:28:03 -070033 subAndroidMk(*android.AndroidMkData, interface{})
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -070034 useVndk() bool
Colin Crossb916a382016-07-29 17:28:03 -070035}
36
37type subAndroidMkProvider interface {
38 AndroidMk(AndroidMkContext, *android.AndroidMkData)
39}
40
41func (c *Module) subAndroidMk(data *android.AndroidMkData, obj interface{}) {
42 if c.subAndroidMkOnce == nil {
43 c.subAndroidMkOnce = make(map[subAndroidMkProvider]bool)
44 }
45 if androidmk, ok := obj.(subAndroidMkProvider); ok {
46 if !c.subAndroidMkOnce[androidmk] {
47 c.subAndroidMkOnce[androidmk] = true
48 androidmk.AndroidMk(c, data)
49 }
50 }
Dan Willemsenf2c27d72016-07-13 16:50:22 -070051}
52
Colin Crossa18e9cf2017-08-10 17:00:19 -070053func (c *Module) AndroidMk() android.AndroidMkData {
Colin Crossbc6fb162016-05-24 15:39:04 -070054 if c.Properties.HideFromMake {
Colin Crossa18e9cf2017-08-10 17:00:19 -070055 return android.AndroidMkData{
56 Disabled: true,
57 }
Colin Crossbc6fb162016-05-24 15:39:04 -070058 }
59
Colin Crossa18e9cf2017-08-10 17:00:19 -070060 ret := android.AndroidMkData{
61 OutputFile: c.outputFile,
Logan Chien43d34c32017-12-20 01:17:32 +080062 Required: c.Properties.AndroidMkRuntimeLibs,
Colin Crossb60190a2018-09-04 16:28:17 -070063 Include: "$(BUILD_SYSTEM)/soong_cc_prebuilt.mk",
Logan Chien43d34c32017-12-20 01:17:32 +080064
Colin Crossa18e9cf2017-08-10 17:00:19 -070065 Extra: []android.AndroidMkExtraFunc{
66 func(w io.Writer, outputFile android.Path) {
Colin Cross5beccee2017-12-07 15:28:59 -080067 if len(c.Properties.Logtags) > 0 {
68 fmt.Fprintln(w, "LOCAL_LOGTAGS_FILES :=", strings.Join(c.Properties.Logtags, " "))
69 }
Colin Crossa18e9cf2017-08-10 17:00:19 -070070 if len(c.Properties.AndroidMkSharedLibs) > 0 {
71 fmt.Fprintln(w, "LOCAL_SHARED_LIBRARIES := "+strings.Join(c.Properties.AndroidMkSharedLibs, " "))
72 }
Colin Crossb60190a2018-09-04 16:28:17 -070073 fmt.Fprintln(w, "LOCAL_SOONG_LINK_TYPE :=", c.getMakeLinkType())
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -070074 if c.useVndk() {
Colin Crossa18e9cf2017-08-10 17:00:19 -070075 fmt.Fprintln(w, "LOCAL_USE_VNDK := true")
76 }
77 },
78 },
79 }
Colin Crossca860ac2016-01-04 14:34:37 -080080
Colin Crossca860ac2016-01-04 14:34:37 -080081 for _, feature := range c.features {
Colin Crossb916a382016-07-29 17:28:03 -070082 c.subAndroidMk(&ret, feature)
Colin Crossca860ac2016-01-04 14:34:37 -080083 }
84
Colin Crossb916a382016-07-29 17:28:03 -070085 c.subAndroidMk(&ret, c.compiler)
86 c.subAndroidMk(&ret, c.linker)
Colin Cross8ff9ef42017-05-08 13:44:11 -070087 if c.sanitize != nil {
88 c.subAndroidMk(&ret, c.sanitize)
89 }
Colin Crossb916a382016-07-29 17:28:03 -070090 c.subAndroidMk(&ret, c.installer)
Colin Crossca860ac2016-01-04 14:34:37 -080091
Jeff Gastonaf3cc2d2017-09-27 17:01:44 -070092 if c.useVndk() && c.hasVendorVariant() {
Jiyong Park27b188b2017-07-18 13:23:39 +090093 // .vendor suffix is added only when we will have two variants: core and vendor.
94 // The suffix is not added for vendor-only module.
95 ret.SubName += vendorSuffix
Jiyong Parkf9332f12018-02-01 00:54:12 +090096 } else if c.inRecovery() && !c.onlyInRecovery() {
97 ret.SubName += recoverySuffix
Dan Willemsen4416e5d2017-04-06 12:43:22 -070098 }
99
Colin Crossa18e9cf2017-08-10 17:00:19 -0700100 return ret
Colin Crossca860ac2016-01-04 14:34:37 -0800101}
102
Anders Lewisb97e8182017-07-14 15:20:13 -0700103func androidMkWriteTestData(data android.Paths, ctx AndroidMkContext, ret *android.AndroidMkData) {
104 var testFiles []string
105 for _, d := range data {
106 rel := d.Rel()
107 path := d.String()
108 if !strings.HasSuffix(path, rel) {
109 panic(fmt.Errorf("path %q does not end with %q", path, rel))
110 }
111 path = strings.TrimSuffix(path, rel)
112 testFiles = append(testFiles, path+":"+rel)
113 }
114 if len(testFiles) > 0 {
Colin Cross27a4b052017-08-10 16:32:23 -0700115 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Anders Lewisb97e8182017-07-14 15:20:13 -0700116 fmt.Fprintln(w, "LOCAL_TEST_DATA := "+strings.Join(testFiles, " "))
Anders Lewisb97e8182017-07-14 15:20:13 -0700117 })
118 }
119}
120
Dan Willemsen58539402017-03-19 13:44:32 -0700121func (library *libraryDecorator) androidMkWriteExportedFlags(w io.Writer) {
122 exportedFlags := library.exportedFlags()
123 if len(exportedFlags) > 0 {
124 fmt.Fprintln(w, "LOCAL_EXPORT_CFLAGS :=", strings.Join(exportedFlags, " "))
Dan Willemsend5781342017-02-15 16:15:21 -0800125 }
Dan Willemsen58539402017-03-19 13:44:32 -0700126 exportedFlagsDeps := library.exportedFlagsDeps()
127 if len(exportedFlagsDeps) > 0 {
128 fmt.Fprintln(w, "LOCAL_EXPORT_C_INCLUDE_DEPS :=", strings.Join(exportedFlagsDeps.Strings(), " "))
129 }
130}
Dan Willemsend5781342017-02-15 16:15:21 -0800131
Dan Willemsen58539402017-03-19 13:44:32 -0700132func (library *libraryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Dan Willemsend5781342017-02-15 16:15:21 -0800133 if library.static() {
134 ret.Class = "STATIC_LIBRARIES"
135 } else if library.shared() {
Dan Willemsend5781342017-02-15 16:15:21 -0800136 ret.Class = "SHARED_LIBRARIES"
Colin Crossb60190a2018-09-04 16:28:17 -0700137 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
138 fmt.Fprintln(w, "LOCAL_SOONG_TOC :=", library.toc().String())
139 fmt.Fprintln(w, "LOCAL_SOONG_UNSTRIPPED_BINARY :=", library.unstrippedOutputFile.String())
140 })
Dan Willemsend5781342017-02-15 16:15:21 -0800141 } else if library.header() {
Colin Crossb60190a2018-09-04 16:28:17 -0700142 ret.Class = "HEADER_LIBRARIES"
Dan Willemsend5781342017-02-15 16:15:21 -0800143 }
144
Colin Cross27a4b052017-08-10 16:32:23 -0700145 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Dan Willemsen58539402017-03-19 13:44:32 -0700146 library.androidMkWriteExportedFlags(w)
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800147 fmt.Fprintln(w, "LOCAL_ADDITIONAL_DEPENDENCIES := ")
148 if library.sAbiOutputFile.Valid() {
149 fmt.Fprintln(w, "LOCAL_ADDITIONAL_DEPENDENCIES += ", library.sAbiOutputFile.String())
150 if library.sAbiDiff.Valid() && !library.static() {
151 fmt.Fprintln(w, "LOCAL_ADDITIONAL_DEPENDENCIES += ", library.sAbiDiff.String())
Jayant Chowdhary715cac32017-04-20 06:53:59 -0700152 fmt.Fprintln(w, "HEADER_ABI_DIFFS += ", library.sAbiDiff.String())
Jayant Chowdhary3e231fd2017-02-08 13:45:53 -0800153 }
154 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700155
Logan Chien031d2b32018-07-26 00:19:50 +0800156 _, _, ext := splitFileExt(outputFile.Base())
157
158 fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+ext)
Dan Willemsen218f6562015-07-08 18:13:11 -0700159
Dan Willemsen581341d2017-02-09 16:16:31 -0800160 if library.coverageOutputFile.Valid() {
161 fmt.Fprintln(w, "LOCAL_PREBUILT_COVERAGE_ARCHIVE :=", library.coverageOutputFile.String())
162 }
Colin Crossca860ac2016-01-04 14:34:37 -0800163 })
Colin Crossb916a382016-07-29 17:28:03 -0700164
Colin Cross4ac44802017-02-15 14:06:12 -0800165 if library.shared() {
Colin Crossb916a382016-07-29 17:28:03 -0700166 ctx.subAndroidMk(ret, library.baseInstaller)
Colin Crossb60190a2018-09-04 16:28:17 -0700167 } else {
168 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
169 fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
170 })
Colin Crossb916a382016-07-29 17:28:03 -0700171 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700172}
173
Dan Willemsenf2c27d72016-07-13 16:50:22 -0700174func (object *objectLinker) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Colin Cross0f86d182017-08-10 17:07:28 -0700175 ret.Custom = func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) {
Colin Crossca860ac2016-01-04 14:34:37 -0800176 out := ret.OutputFile.Path()
Dan Willemsen218f6562015-07-08 18:13:11 -0700177
Colin Cross0f86d182017-08-10 17:07:28 -0700178 fmt.Fprintln(w, "\n$("+prefix+"OUT_INTERMEDIATE_LIBRARIES)/"+name+data.SubName+objectExtension+":", out.String())
Dan Willemsen97750522016-02-09 17:43:51 -0800179 fmt.Fprintln(w, "\t$(copy-file-to-target)")
Dan Willemsen218f6562015-07-08 18:13:11 -0700180 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700181}
182
Colin Crossb916a382016-07-29 17:28:03 -0700183func (binary *binaryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Colin Cross1e7d3702016-08-24 15:25:47 -0700184 ctx.subAndroidMk(ret, binary.baseInstaller)
Dan Willemsen7517ed02016-06-10 17:20:30 -0700185
Dan Willemsen218f6562015-07-08 18:13:11 -0700186 ret.Class = "EXECUTABLES"
Colin Cross27a4b052017-08-10 16:32:23 -0700187 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Crossb60190a2018-09-04 16:28:17 -0700188 fmt.Fprintln(w, "LOCAL_SOONG_UNSTRIPPED_BINARY :=", binary.unstrippedOutputFile.String())
Colin Cross9b09f242016-12-07 13:37:42 -0800189 if len(binary.symlinks) > 0 {
190 fmt.Fprintln(w, "LOCAL_MODULE_SYMLINKS := "+strings.Join(binary.symlinks, " "))
191 }
192
Dan Willemsen581341d2017-02-09 16:16:31 -0800193 if binary.coverageOutputFile.Valid() {
194 fmt.Fprintln(w, "LOCAL_PREBUILT_COVERAGE_ARCHIVE :=", binary.coverageOutputFile.String())
195 }
Yifan Hong946e32e2018-04-03 13:22:50 -0700196
197 if len(binary.Properties.Overrides) > 0 {
198 fmt.Fprintln(w, "LOCAL_OVERRIDES_MODULES := "+strings.Join(binary.Properties.Overrides, " "))
199 }
Colin Crossca860ac2016-01-04 14:34:37 -0800200 })
201}
202
Colin Crossb916a382016-07-29 17:28:03 -0700203func (benchmark *benchmarkDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
204 ctx.subAndroidMk(ret, benchmark.binaryDecorator)
Dan Willemsen58a5c8b2017-05-23 15:10:37 -0700205 ret.Class = "NATIVE_TESTS"
Colin Cross27a4b052017-08-10 16:32:23 -0700206 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Crosse28f4e22017-04-24 18:10:29 -0700207 if len(benchmark.Properties.Test_suites) > 0 {
208 fmt.Fprintln(w, "LOCAL_COMPATIBILITY_SUITE :=",
209 strings.Join(benchmark.Properties.Test_suites, " "))
210 }
Colin Cross303e21f2018-08-07 16:49:25 -0700211 if benchmark.testConfig != nil {
212 fmt.Fprintln(w, "LOCAL_FULL_TEST_CONFIG :=", benchmark.testConfig.String())
Julien Despreze146e392018-08-02 15:00:46 -0700213 }
Nelson Li1f6b14e2018-04-18 16:55:21 +0000214 fmt.Fprintln(w, "LOCAL_NATIVE_BENCHMARK := true")
Colin Crosse28f4e22017-04-24 18:10:29 -0700215 })
Anders Lewisb97e8182017-07-14 15:20:13 -0700216
217 androidMkWriteTestData(benchmark.data, ctx, ret)
Colin Crossb916a382016-07-29 17:28:03 -0700218}
219
220func (test *testBinary) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
221 ctx.subAndroidMk(ret, test.binaryDecorator)
Dan Willemsen0fe72532017-01-17 13:25:49 -0800222 ret.Class = "NATIVE_TESTS"
Colin Crossb916a382016-07-29 17:28:03 -0700223 if Bool(test.Properties.Test_per_src) {
Nan Zhang0007d812017-11-07 10:57:05 -0800224 ret.SubName = "_" + String(test.binaryDecorator.Properties.Stem)
Colin Crossa2344662016-03-24 13:14:12 -0700225 }
Colin Crossfaeb7aa2017-02-01 14:12:44 -0800226
Colin Cross27a4b052017-08-10 16:32:23 -0700227 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Crossa929db02017-03-27 16:27:50 -0700228 if len(test.Properties.Test_suites) > 0 {
Dan Shi4df566d2017-04-03 12:29:25 -0700229 fmt.Fprintln(w, "LOCAL_COMPATIBILITY_SUITE :=",
Colin Crossa929db02017-03-27 16:27:50 -0700230 strings.Join(test.Properties.Test_suites, " "))
231 }
Colin Cross303e21f2018-08-07 16:49:25 -0700232 if test.testConfig != nil {
233 fmt.Fprintln(w, "LOCAL_FULL_TEST_CONFIG :=", test.testConfig.String())
Julien Despreze146e392018-08-02 15:00:46 -0700234 }
Colin Crossa929db02017-03-27 16:27:50 -0700235 })
236
Anders Lewisb97e8182017-07-14 15:20:13 -0700237 androidMkWriteTestData(test.data, ctx, ret)
Colin Crossa2344662016-03-24 13:14:12 -0700238}
239
Colin Crossb916a382016-07-29 17:28:03 -0700240func (test *testLibrary) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
241 ctx.subAndroidMk(ret, test.libraryDecorator)
242}
Dan Willemsene7932e82016-05-16 15:56:53 -0700243
Colin Crossb916a382016-07-29 17:28:03 -0700244func (library *toolchainLibraryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
245 ret.Class = "STATIC_LIBRARIES"
Colin Cross27a4b052017-08-10 16:32:23 -0700246 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Logan Chien031d2b32018-07-26 00:19:50 +0800247 _, suffix, _ := splitFileExt(outputFile.Base())
248 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Dan Willemsen7517ed02016-06-10 17:20:30 -0700249 })
250}
251
Dan Willemsenf2c27d72016-07-13 16:50:22 -0700252func (installer *baseInstaller) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Dan Willemsen03ce63e2016-09-29 12:17:49 -0700253 // Soong installation is only supported for host modules. Have Make
254 // installation trigger Soong installation.
255 if ctx.Target().Os.Class == android.Host {
256 ret.OutputFile = android.OptionalPathForPath(installer.path)
257 }
258
Colin Cross27a4b052017-08-10 16:32:23 -0700259 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Crossa2344662016-03-24 13:14:12 -0700260 path := installer.path.RelPathString()
Colin Crossbf305de2016-03-29 17:32:06 -0700261 dir, file := filepath.Split(path)
Logan Chien031d2b32018-07-26 00:19:50 +0800262 stem, suffix, _ := splitFileExt(file)
263 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Colin Crosse14388b2016-05-03 14:08:40 -0700264 fmt.Fprintln(w, "LOCAL_MODULE_PATH := $(OUT_DIR)/"+filepath.Clean(dir))
Colin Crossbf305de2016-03-29 17:32:06 -0700265 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
Colin Crossa2344662016-03-24 13:14:12 -0700266 })
Dan Willemsen218f6562015-07-08 18:13:11 -0700267}
Dan Albert914449f2016-06-17 16:45:24 -0700268
Colin Crossb916a382016-07-29 17:28:03 -0700269func (c *stubDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Dan Willemsen01a90592017-04-07 15:21:13 -0700270 ret.SubName = ndkLibrarySuffix + "." + c.properties.ApiLevel
Dan Albert705c84b2016-08-08 10:45:03 -0700271 ret.Class = "SHARED_LIBRARIES"
Dan Albert914449f2016-06-17 16:45:24 -0700272
Colin Cross27a4b052017-08-10 16:32:23 -0700273 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Cross0875c522017-11-28 17:34:01 -0800274 path, file := filepath.Split(c.installPath.String())
Logan Chien031d2b32018-07-26 00:19:50 +0800275 stem, suffix, _ := splitFileExt(file)
Logan Chien031d2b32018-07-26 00:19:50 +0800276 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Dan Albert914449f2016-06-17 16:45:24 -0700277 fmt.Fprintln(w, "LOCAL_MODULE_PATH := "+path)
278 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
Dan Willemsen866810d2017-04-04 14:13:45 -0700279 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
Dan Albert914449f2016-06-17 16:45:24 -0700280
281 // Prevent make from installing the libraries to obj/lib (since we have
282 // dozens of libraries with the same name, they'll clobber each other
283 // and the real versions of the libraries from the platform).
284 fmt.Fprintln(w, "LOCAL_COPY_TO_INTERMEDIATE_LIBRARIES := false")
Dan Albert914449f2016-06-17 16:45:24 -0700285 })
286}
Dan Willemsenb916b802017-03-19 13:44:32 -0700287
288func (c *llndkStubDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
289 ret.Class = "SHARED_LIBRARIES"
Jiyong Parkf9332f12018-02-01 00:54:12 +0900290 ret.SubName = vendorSuffix
Dan Willemsenb916b802017-03-19 13:44:32 -0700291
Colin Cross27a4b052017-08-10 16:32:23 -0700292 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Dan Willemsenb916b802017-03-19 13:44:32 -0700293 c.libraryDecorator.androidMkWriteExportedFlags(w)
Logan Chien031d2b32018-07-26 00:19:50 +0800294 _, _, ext := splitFileExt(outputFile.Base())
Dan Willemsenb916b802017-03-19 13:44:32 -0700295
Logan Chien031d2b32018-07-26 00:19:50 +0800296 fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+ext)
Dan Willemsenb916b802017-03-19 13:44:32 -0700297 fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
298 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
Colin Crossb60190a2018-09-04 16:28:17 -0700299 fmt.Fprintln(w, "LOCAL_SOONG_TOC :=", c.toc().String())
Dan Willemsenb916b802017-03-19 13:44:32 -0700300 })
301}
Justin Yun71549282017-11-17 12:10:28 +0900302
303func (c *vndkPrebuiltLibraryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
304 ret.Class = "SHARED_LIBRARIES"
305
Jae Shin43ef2642017-12-29 16:20:21 +0900306 ret.SubName = c.NameSuffix()
Justin Yun71549282017-11-17 12:10:28 +0900307
308 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
309 c.libraryDecorator.androidMkWriteExportedFlags(w)
310
311 path := c.path.RelPathString()
312 dir, file := filepath.Split(path)
Logan Chien031d2b32018-07-26 00:19:50 +0800313 stem, suffix, ext := splitFileExt(file)
Logan Chien031d2b32018-07-26 00:19:50 +0800314 fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+ext)
315 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Justin Yun71549282017-11-17 12:10:28 +0900316 fmt.Fprintln(w, "LOCAL_MODULE_PATH := $(OUT_DIR)/"+filepath.Clean(dir))
317 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
318 })
Colin Cross7a6fcbe2017-12-06 13:08:00 -0800319}
Dan Albert8ba131b2017-12-14 13:23:15 -0800320
321func (c *ndkPrebuiltStlLinker) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
322 ret.Class = "SHARED_LIBRARIES"
323
324 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
325 // Prevent make from installing the libraries to obj/lib (since we have
326 // dozens of libraries with the same name, they'll clobber each other
327 // and the real versions of the libraries from the platform).
328 fmt.Fprintln(w, "LOCAL_COPY_TO_INTERMEDIATE_LIBRARIES := false")
329 })
330}
Jiyong Park374510b2018-03-19 18:23:01 +0900331
332func (c *vendorPublicLibraryStubDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
333 ret.Class = "SHARED_LIBRARIES"
334 ret.SubName = vendorPublicLibrarySuffix
335
336 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
337 c.libraryDecorator.androidMkWriteExportedFlags(w)
Logan Chien031d2b32018-07-26 00:19:50 +0800338 _, _, ext := splitFileExt(outputFile.Base())
Jiyong Park374510b2018-03-19 18:23:01 +0900339
Logan Chien031d2b32018-07-26 00:19:50 +0800340 fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+ext)
Jiyong Park374510b2018-03-19 18:23:01 +0900341 fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
342 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
343 })
344}