blob: 5daacb7e4c1226e57933c25edefcb5a346cffb8c [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 Willemsen2e224ca2018-09-06 00:26:20 -0700177 varname := fmt.Sprintf("SOONG_%sOBJECT_%s%s", prefix, name, data.SubName)
Dan Willemsen218f6562015-07-08 18:13:11 -0700178
Dan Willemsen2e224ca2018-09-06 00:26:20 -0700179 fmt.Fprintf(w, "\n%s := %s\n", varname, out.String())
180 fmt.Fprintln(w, ".KATI_READONLY: "+varname)
Dan Willemsen218f6562015-07-08 18:13:11 -0700181 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700182}
183
Colin Crossb916a382016-07-29 17:28:03 -0700184func (binary *binaryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Colin Cross1e7d3702016-08-24 15:25:47 -0700185 ctx.subAndroidMk(ret, binary.baseInstaller)
Dan Willemsen7517ed02016-06-10 17:20:30 -0700186
Dan Willemsen218f6562015-07-08 18:13:11 -0700187 ret.Class = "EXECUTABLES"
Colin Cross27a4b052017-08-10 16:32:23 -0700188 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Crossb60190a2018-09-04 16:28:17 -0700189 fmt.Fprintln(w, "LOCAL_SOONG_UNSTRIPPED_BINARY :=", binary.unstrippedOutputFile.String())
Colin Cross9b09f242016-12-07 13:37:42 -0800190 if len(binary.symlinks) > 0 {
191 fmt.Fprintln(w, "LOCAL_MODULE_SYMLINKS := "+strings.Join(binary.symlinks, " "))
192 }
193
Dan Willemsen581341d2017-02-09 16:16:31 -0800194 if binary.coverageOutputFile.Valid() {
195 fmt.Fprintln(w, "LOCAL_PREBUILT_COVERAGE_ARCHIVE :=", binary.coverageOutputFile.String())
196 }
Yifan Hong946e32e2018-04-03 13:22:50 -0700197
198 if len(binary.Properties.Overrides) > 0 {
199 fmt.Fprintln(w, "LOCAL_OVERRIDES_MODULES := "+strings.Join(binary.Properties.Overrides, " "))
200 }
Colin Crossca860ac2016-01-04 14:34:37 -0800201 })
202}
203
Colin Crossb916a382016-07-29 17:28:03 -0700204func (benchmark *benchmarkDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
205 ctx.subAndroidMk(ret, benchmark.binaryDecorator)
Dan Willemsen58a5c8b2017-05-23 15:10:37 -0700206 ret.Class = "NATIVE_TESTS"
Colin Cross27a4b052017-08-10 16:32:23 -0700207 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Crosse28f4e22017-04-24 18:10:29 -0700208 if len(benchmark.Properties.Test_suites) > 0 {
209 fmt.Fprintln(w, "LOCAL_COMPATIBILITY_SUITE :=",
210 strings.Join(benchmark.Properties.Test_suites, " "))
211 }
Colin Cross303e21f2018-08-07 16:49:25 -0700212 if benchmark.testConfig != nil {
213 fmt.Fprintln(w, "LOCAL_FULL_TEST_CONFIG :=", benchmark.testConfig.String())
Julien Despreze146e392018-08-02 15:00:46 -0700214 }
Nelson Li1f6b14e2018-04-18 16:55:21 +0000215 fmt.Fprintln(w, "LOCAL_NATIVE_BENCHMARK := true")
Colin Crosse28f4e22017-04-24 18:10:29 -0700216 })
Anders Lewisb97e8182017-07-14 15:20:13 -0700217
218 androidMkWriteTestData(benchmark.data, ctx, ret)
Colin Crossb916a382016-07-29 17:28:03 -0700219}
220
221func (test *testBinary) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
222 ctx.subAndroidMk(ret, test.binaryDecorator)
Dan Willemsen0fe72532017-01-17 13:25:49 -0800223 ret.Class = "NATIVE_TESTS"
Colin Crossb916a382016-07-29 17:28:03 -0700224 if Bool(test.Properties.Test_per_src) {
Nan Zhang0007d812017-11-07 10:57:05 -0800225 ret.SubName = "_" + String(test.binaryDecorator.Properties.Stem)
Colin Crossa2344662016-03-24 13:14:12 -0700226 }
Colin Crossfaeb7aa2017-02-01 14:12:44 -0800227
Colin Cross27a4b052017-08-10 16:32:23 -0700228 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Crossa929db02017-03-27 16:27:50 -0700229 if len(test.Properties.Test_suites) > 0 {
Dan Shi4df566d2017-04-03 12:29:25 -0700230 fmt.Fprintln(w, "LOCAL_COMPATIBILITY_SUITE :=",
Colin Crossa929db02017-03-27 16:27:50 -0700231 strings.Join(test.Properties.Test_suites, " "))
232 }
Colin Cross303e21f2018-08-07 16:49:25 -0700233 if test.testConfig != nil {
234 fmt.Fprintln(w, "LOCAL_FULL_TEST_CONFIG :=", test.testConfig.String())
Julien Despreze146e392018-08-02 15:00:46 -0700235 }
Colin Crossa929db02017-03-27 16:27:50 -0700236 })
237
Anders Lewisb97e8182017-07-14 15:20:13 -0700238 androidMkWriteTestData(test.data, ctx, ret)
Colin Crossa2344662016-03-24 13:14:12 -0700239}
240
Colin Crossb916a382016-07-29 17:28:03 -0700241func (test *testLibrary) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
242 ctx.subAndroidMk(ret, test.libraryDecorator)
243}
Dan Willemsene7932e82016-05-16 15:56:53 -0700244
Colin Crossb916a382016-07-29 17:28:03 -0700245func (library *toolchainLibraryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
246 ret.Class = "STATIC_LIBRARIES"
Colin Cross27a4b052017-08-10 16:32:23 -0700247 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Logan Chien031d2b32018-07-26 00:19:50 +0800248 _, suffix, _ := splitFileExt(outputFile.Base())
249 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Dan Willemsen7517ed02016-06-10 17:20:30 -0700250 })
251}
252
Dan Willemsenf2c27d72016-07-13 16:50:22 -0700253func (installer *baseInstaller) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Dan Willemsen03ce63e2016-09-29 12:17:49 -0700254 // Soong installation is only supported for host modules. Have Make
255 // installation trigger Soong installation.
256 if ctx.Target().Os.Class == android.Host {
257 ret.OutputFile = android.OptionalPathForPath(installer.path)
258 }
259
Colin Cross27a4b052017-08-10 16:32:23 -0700260 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Crossa2344662016-03-24 13:14:12 -0700261 path := installer.path.RelPathString()
Colin Crossbf305de2016-03-29 17:32:06 -0700262 dir, file := filepath.Split(path)
Logan Chien031d2b32018-07-26 00:19:50 +0800263 stem, suffix, _ := splitFileExt(file)
264 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Colin Crosse14388b2016-05-03 14:08:40 -0700265 fmt.Fprintln(w, "LOCAL_MODULE_PATH := $(OUT_DIR)/"+filepath.Clean(dir))
Colin Crossbf305de2016-03-29 17:32:06 -0700266 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
Colin Crossa2344662016-03-24 13:14:12 -0700267 })
Dan Willemsen218f6562015-07-08 18:13:11 -0700268}
Dan Albert914449f2016-06-17 16:45:24 -0700269
Colin Crossb916a382016-07-29 17:28:03 -0700270func (c *stubDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
Dan Willemsen01a90592017-04-07 15:21:13 -0700271 ret.SubName = ndkLibrarySuffix + "." + c.properties.ApiLevel
Dan Albert705c84b2016-08-08 10:45:03 -0700272 ret.Class = "SHARED_LIBRARIES"
Dan Albert914449f2016-06-17 16:45:24 -0700273
Colin Cross27a4b052017-08-10 16:32:23 -0700274 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Colin Cross0875c522017-11-28 17:34:01 -0800275 path, file := filepath.Split(c.installPath.String())
Logan Chien031d2b32018-07-26 00:19:50 +0800276 stem, suffix, _ := splitFileExt(file)
Logan Chien031d2b32018-07-26 00:19:50 +0800277 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Dan Albert914449f2016-06-17 16:45:24 -0700278 fmt.Fprintln(w, "LOCAL_MODULE_PATH := "+path)
279 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
Dan Willemsen866810d2017-04-04 14:13:45 -0700280 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
Dan Albert914449f2016-06-17 16:45:24 -0700281 })
282}
Dan Willemsenb916b802017-03-19 13:44:32 -0700283
284func (c *llndkStubDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
285 ret.Class = "SHARED_LIBRARIES"
Jiyong Parkf9332f12018-02-01 00:54:12 +0900286 ret.SubName = vendorSuffix
Dan Willemsenb916b802017-03-19 13:44:32 -0700287
Colin Cross27a4b052017-08-10 16:32:23 -0700288 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
Dan Willemsenb916b802017-03-19 13:44:32 -0700289 c.libraryDecorator.androidMkWriteExportedFlags(w)
Logan Chien031d2b32018-07-26 00:19:50 +0800290 _, _, ext := splitFileExt(outputFile.Base())
Dan Willemsenb916b802017-03-19 13:44:32 -0700291
Logan Chien031d2b32018-07-26 00:19:50 +0800292 fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+ext)
Dan Willemsenb916b802017-03-19 13:44:32 -0700293 fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
294 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
Colin Crossb60190a2018-09-04 16:28:17 -0700295 fmt.Fprintln(w, "LOCAL_SOONG_TOC :=", c.toc().String())
Dan Willemsenb916b802017-03-19 13:44:32 -0700296 })
297}
Justin Yun71549282017-11-17 12:10:28 +0900298
299func (c *vndkPrebuiltLibraryDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
300 ret.Class = "SHARED_LIBRARIES"
301
Jae Shin43ef2642017-12-29 16:20:21 +0900302 ret.SubName = c.NameSuffix()
Justin Yun71549282017-11-17 12:10:28 +0900303
304 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
305 c.libraryDecorator.androidMkWriteExportedFlags(w)
306
307 path := c.path.RelPathString()
308 dir, file := filepath.Split(path)
Logan Chien031d2b32018-07-26 00:19:50 +0800309 stem, suffix, ext := splitFileExt(file)
Logan Chien031d2b32018-07-26 00:19:50 +0800310 fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+ext)
311 fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+suffix)
Justin Yun71549282017-11-17 12:10:28 +0900312 fmt.Fprintln(w, "LOCAL_MODULE_PATH := $(OUT_DIR)/"+filepath.Clean(dir))
313 fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
314 })
Colin Cross7a6fcbe2017-12-06 13:08:00 -0800315}
Dan Albert8ba131b2017-12-14 13:23:15 -0800316
317func (c *ndkPrebuiltStlLinker) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
318 ret.Class = "SHARED_LIBRARIES"
Dan Albert8ba131b2017-12-14 13:23:15 -0800319}
Jiyong Park374510b2018-03-19 18:23:01 +0900320
321func (c *vendorPublicLibraryStubDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkData) {
322 ret.Class = "SHARED_LIBRARIES"
323 ret.SubName = vendorPublicLibrarySuffix
324
325 ret.Extra = append(ret.Extra, func(w io.Writer, outputFile android.Path) {
326 c.libraryDecorator.androidMkWriteExportedFlags(w)
Logan Chien031d2b32018-07-26 00:19:50 +0800327 _, _, ext := splitFileExt(outputFile.Base())
Jiyong Park374510b2018-03-19 18:23:01 +0900328
Logan Chien031d2b32018-07-26 00:19:50 +0800329 fmt.Fprintln(w, "LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)"+ext)
Jiyong Park374510b2018-03-19 18:23:01 +0900330 fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
331 fmt.Fprintln(w, "LOCAL_NO_NOTICE_FILE := true")
332 })
333}