blob: f3c15e471228991f839c3d751c4c546628f4a4ac [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
Colin Cross635c3b02016-05-18 15:37:25 -070015package android
Dan Willemsen218f6562015-07-08 18:13:11 -070016
17import (
18 "bytes"
Dan Willemsen97750522016-02-09 17:43:51 -080019 "fmt"
Dan Willemsen218f6562015-07-08 18:13:11 -070020 "io"
21 "io/ioutil"
22 "os"
23 "path/filepath"
24 "sort"
Dan Willemsen0fda89f2016-06-01 15:25:32 -070025 "strings"
Dan Willemsen218f6562015-07-08 18:13:11 -070026
Dan Willemsen218f6562015-07-08 18:13:11 -070027 "github.com/google/blueprint"
Colin Cross2465c3d2018-09-28 10:19:18 -070028 "github.com/google/blueprint/bootstrap"
Dan Willemsen218f6562015-07-08 18:13:11 -070029)
30
31func init() {
Colin Cross798bfce2016-10-12 14:28:16 -070032 RegisterSingletonType("androidmk", AndroidMkSingleton)
Dan Willemsen218f6562015-07-08 18:13:11 -070033}
34
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -070035// Deprecated: consider using AndroidMkEntriesProvider instead, especially if you're not going to
36// use the Custom function.
Dan Willemsen218f6562015-07-08 18:13:11 -070037type AndroidMkDataProvider interface {
Colin Crossa18e9cf2017-08-10 17:00:19 -070038 AndroidMk() AndroidMkData
Colin Crossce75d2c2016-10-06 16:12:58 -070039 BaseModuleName() string
Dan Willemsen218f6562015-07-08 18:13:11 -070040}
41
42type AndroidMkData struct {
Sasha Smundakb6d23052019-04-01 18:37:36 -070043 Class string
44 SubName string
45 DistFile OptionalPath
46 OutputFile OptionalPath
47 Disabled bool
48 Include string
49 Required []string
50 Host_required []string
51 Target_required []string
Dan Willemsen218f6562015-07-08 18:13:11 -070052
Colin Cross0f86d182017-08-10 17:07:28 -070053 Custom func(w io.Writer, name, prefix, moduleDir string, data AndroidMkData)
Dan Willemsen218f6562015-07-08 18:13:11 -070054
Colin Cross27a4b052017-08-10 16:32:23 -070055 Extra []AndroidMkExtraFunc
Colin Cross0f86d182017-08-10 17:07:28 -070056
57 preamble bytes.Buffer
Dan Willemsen218f6562015-07-08 18:13:11 -070058}
59
Colin Cross27a4b052017-08-10 16:32:23 -070060type AndroidMkExtraFunc func(w io.Writer, outputFile Path)
61
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -070062// Allows modules to customize their Android*.mk output.
63type AndroidMkEntriesProvider interface {
Jiyong Park0b0e1b92019-12-03 13:24:29 +090064 AndroidMkEntries() []AndroidMkEntries
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -070065 BaseModuleName() string
66}
67
68type AndroidMkEntries struct {
69 Class string
70 SubName string
71 DistFile OptionalPath
72 OutputFile OptionalPath
73 Disabled bool
74 Include string
75 Required []string
76 Host_required []string
77 Target_required []string
78
79 header bytes.Buffer
80 footer bytes.Buffer
81
Jaewoong Junge0dc8df2019-08-27 17:33:16 -070082 ExtraEntries []AndroidMkExtraEntriesFunc
Jaewoong Jungb0c127c2019-08-29 14:56:03 -070083 ExtraFooters []AndroidMkExtraFootersFunc
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -070084
85 EntryMap map[string][]string
86 entryOrder []string
87}
88
Jaewoong Junge0dc8df2019-08-27 17:33:16 -070089type AndroidMkExtraEntriesFunc func(entries *AndroidMkEntries)
Jaewoong Jungb0c127c2019-08-29 14:56:03 -070090type AndroidMkExtraFootersFunc func(w io.Writer, name, prefix, moduleDir string, entries *AndroidMkEntries)
Jaewoong Junge0dc8df2019-08-27 17:33:16 -070091
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -070092func (a *AndroidMkEntries) SetString(name, value string) {
93 if _, ok := a.EntryMap[name]; !ok {
94 a.entryOrder = append(a.entryOrder, name)
95 }
96 a.EntryMap[name] = []string{value}
97}
98
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -070099func (a *AndroidMkEntries) SetPath(name string, path Path) {
100 if _, ok := a.EntryMap[name]; !ok {
101 a.entryOrder = append(a.entryOrder, name)
102 }
103 a.EntryMap[name] = []string{path.String()}
104}
105
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -0700106func (a *AndroidMkEntries) SetBoolIfTrue(name string, flag bool) {
107 if flag {
108 if _, ok := a.EntryMap[name]; !ok {
109 a.entryOrder = append(a.entryOrder, name)
110 }
111 a.EntryMap[name] = []string{"true"}
112 }
113}
114
Jaewoong Jung9a1e8bd2019-09-04 20:17:54 -0700115func (a *AndroidMkEntries) SetBool(name string, flag bool) {
116 if _, ok := a.EntryMap[name]; !ok {
117 a.entryOrder = append(a.entryOrder, name)
118 }
119 if flag {
120 a.EntryMap[name] = []string{"true"}
121 } else {
122 a.EntryMap[name] = []string{"false"}
123 }
124}
125
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -0700126func (a *AndroidMkEntries) AddStrings(name string, value ...string) {
127 if len(value) == 0 {
128 return
129 }
130 if _, ok := a.EntryMap[name]; !ok {
131 a.entryOrder = append(a.entryOrder, name)
132 }
133 a.EntryMap[name] = append(a.EntryMap[name], value...)
134}
135
136func (a *AndroidMkEntries) fillInEntries(config Config, bpPath string, mod blueprint.Module) {
137 a.EntryMap = make(map[string][]string)
138 amod := mod.(Module).base()
139 name := amod.BaseModuleName()
140
141 if a.Include == "" {
142 a.Include = "$(BUILD_PREBUILT)"
143 }
144 a.Required = append(a.Required, amod.commonProperties.Required...)
145 a.Host_required = append(a.Host_required, amod.commonProperties.Host_required...)
146 a.Target_required = append(a.Target_required, amod.commonProperties.Target_required...)
147
148 // Fill in the header part.
149 if len(amod.commonProperties.Dist.Targets) > 0 {
150 distFile := a.DistFile
151 if !distFile.Valid() {
152 distFile = a.OutputFile
153 }
154 if distFile.Valid() {
155 dest := filepath.Base(distFile.String())
156
157 if amod.commonProperties.Dist.Dest != nil {
158 var err error
159 if dest, err = validateSafePath(*amod.commonProperties.Dist.Dest); err != nil {
160 // This was checked in ModuleBase.GenerateBuildActions
161 panic(err)
162 }
163 }
164
165 if amod.commonProperties.Dist.Suffix != nil {
166 ext := filepath.Ext(dest)
167 suffix := *amod.commonProperties.Dist.Suffix
168 dest = strings.TrimSuffix(dest, ext) + suffix + ext
169 }
170
171 if amod.commonProperties.Dist.Dir != nil {
172 var err error
173 if dest, err = validateSafePath(*amod.commonProperties.Dist.Dir, dest); err != nil {
174 // This was checked in ModuleBase.GenerateBuildActions
175 panic(err)
176 }
177 }
178
179 goals := strings.Join(amod.commonProperties.Dist.Targets, " ")
180 fmt.Fprintln(&a.header, ".PHONY:", goals)
181 fmt.Fprintf(&a.header, "$(call dist-for-goals,%s,%s:%s)\n",
182 goals, distFile.String(), dest)
183 }
184 }
185
186 fmt.Fprintln(&a.header, "\ninclude $(CLEAR_VARS)")
187
188 // Collect make variable assignment entries.
189 a.SetString("LOCAL_PATH", filepath.Dir(bpPath))
190 a.SetString("LOCAL_MODULE", name+a.SubName)
191 a.SetString("LOCAL_MODULE_CLASS", a.Class)
192 a.SetString("LOCAL_PREBUILT_MODULE_FILE", a.OutputFile.String())
193 a.AddStrings("LOCAL_REQUIRED_MODULES", a.Required...)
194 a.AddStrings("LOCAL_HOST_REQUIRED_MODULES", a.Host_required...)
195 a.AddStrings("LOCAL_TARGET_REQUIRED_MODULES", a.Target_required...)
196
197 archStr := amod.Arch().ArchType.String()
198 host := false
199 switch amod.Os().Class {
200 case Host:
201 // Make cannot identify LOCAL_MODULE_HOST_ARCH:= common.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700202 if amod.Arch().ArchType != Common {
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -0700203 a.SetString("LOCAL_MODULE_HOST_ARCH", archStr)
204 }
205 host = true
206 case HostCross:
207 // Make cannot identify LOCAL_MODULE_HOST_CROSS_ARCH:= common.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700208 if amod.Arch().ArchType != Common {
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -0700209 a.SetString("LOCAL_MODULE_HOST_CROSS_ARCH", archStr)
210 }
211 host = true
212 case Device:
213 // Make cannot identify LOCAL_MODULE_TARGET_ARCH:= common.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700214 if amod.Arch().ArchType != Common {
dimitry1f33e402019-03-26 12:39:31 +0100215 if amod.Target().NativeBridge {
dimitry8d6dde82019-07-11 10:23:53 +0200216 hostArchStr := amod.Target().NativeBridgeHostArchName
dimitry1f33e402019-03-26 12:39:31 +0100217 if hostArchStr != "" {
218 a.SetString("LOCAL_MODULE_TARGET_ARCH", hostArchStr)
219 }
220 } else {
221 a.SetString("LOCAL_MODULE_TARGET_ARCH", archStr)
222 }
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -0700223 }
224
225 a.AddStrings("LOCAL_INIT_RC", amod.commonProperties.Init_rc...)
226 a.AddStrings("LOCAL_VINTF_FRAGMENTS", amod.commonProperties.Vintf_fragments...)
227 a.SetBoolIfTrue("LOCAL_PROPRIETARY_MODULE", Bool(amod.commonProperties.Proprietary))
228 if Bool(amod.commonProperties.Vendor) || Bool(amod.commonProperties.Soc_specific) {
229 a.SetString("LOCAL_VENDOR_MODULE", "true")
230 }
231 a.SetBoolIfTrue("LOCAL_ODM_MODULE", Bool(amod.commonProperties.Device_specific))
232 a.SetBoolIfTrue("LOCAL_PRODUCT_MODULE", Bool(amod.commonProperties.Product_specific))
Justin Yund5f6c822019-06-25 16:47:17 +0900233 a.SetBoolIfTrue("LOCAL_SYSTEM_EXT_MODULE", Bool(amod.commonProperties.System_ext_specific))
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -0700234 if amod.commonProperties.Owner != nil {
235 a.SetString("LOCAL_MODULE_OWNER", *amod.commonProperties.Owner)
236 }
237 }
238
239 if amod.noticeFile.Valid() {
240 a.SetString("LOCAL_NOTICE_FILE", amod.noticeFile.String())
241 }
242
243 if host {
244 makeOs := amod.Os().String()
245 if amod.Os() == Linux || amod.Os() == LinuxBionic {
246 makeOs = "linux"
247 }
248 a.SetString("LOCAL_MODULE_HOST_OS", makeOs)
249 a.SetString("LOCAL_IS_HOST_MODULE", "true")
250 }
251
252 prefix := ""
253 if amod.ArchSpecific() {
254 switch amod.Os().Class {
255 case Host:
256 prefix = "HOST_"
257 case HostCross:
258 prefix = "HOST_CROSS_"
259 case Device:
260 prefix = "TARGET_"
261
262 }
263
264 if amod.Arch().ArchType != config.Targets[amod.Os()][0].Arch.ArchType {
265 prefix = "2ND_" + prefix
266 }
267 }
Jaewoong Junge0dc8df2019-08-27 17:33:16 -0700268 for _, extra := range a.ExtraEntries {
269 extra(a)
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -0700270 }
271
272 // Write to footer.
273 fmt.Fprintln(&a.footer, "include "+a.Include)
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700274 blueprintDir := filepath.Dir(bpPath)
275 for _, footerFunc := range a.ExtraFooters {
276 footerFunc(&a.footer, name, prefix, blueprintDir, a)
277 }
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -0700278}
279
280func (a *AndroidMkEntries) write(w io.Writer) {
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700281 if a.Disabled {
282 return
283 }
284
285 if !a.OutputFile.Valid() {
286 return
287 }
288
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -0700289 w.Write(a.header.Bytes())
290 for _, name := range a.entryOrder {
291 fmt.Fprintln(w, name+" := "+strings.Join(a.EntryMap[name], " "))
292 }
293 w.Write(a.footer.Bytes())
294}
295
Jaewoong Jungb0c127c2019-08-29 14:56:03 -0700296func (a *AndroidMkEntries) FooterLinesForTests() []string {
297 return strings.Split(string(a.footer.Bytes()), "\n")
298}
299
Colin Cross0875c522017-11-28 17:34:01 -0800300func AndroidMkSingleton() Singleton {
Dan Willemsen218f6562015-07-08 18:13:11 -0700301 return &androidMkSingleton{}
302}
303
304type androidMkSingleton struct{}
305
Colin Cross0875c522017-11-28 17:34:01 -0800306func (c *androidMkSingleton) GenerateBuildActions(ctx SingletonContext) {
Colin Crossaabf6792017-11-29 00:27:14 -0800307 if !ctx.Config().EmbeddedInMake() {
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800308 return
309 }
310
Colin Cross2465c3d2018-09-28 10:19:18 -0700311 var androidMkModulesList []blueprint.Module
Colin Cross4f6e4e62016-01-11 12:55:55 -0800312
Colin Cross2465c3d2018-09-28 10:19:18 -0700313 ctx.VisitAllModulesBlueprint(func(module blueprint.Module) {
Colin Cross0875c522017-11-28 17:34:01 -0800314 androidMkModulesList = append(androidMkModulesList, module)
Colin Cross4f6e4e62016-01-11 12:55:55 -0800315 })
Dan Willemsen218f6562015-07-08 18:13:11 -0700316
Colin Cross1ad81422019-01-14 12:47:35 -0800317 sort.SliceStable(androidMkModulesList, func(i, j int) bool {
318 return ctx.ModuleName(androidMkModulesList[i]) < ctx.ModuleName(androidMkModulesList[j])
319 })
Colin Crossd779da42015-12-17 18:00:23 -0800320
Dan Willemsen45133ac2018-03-09 21:22:06 -0800321 transMk := PathForOutput(ctx, "Android"+String(ctx.Config().productVariables.Make_suffix)+".mk")
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700322 if ctx.Failed() {
323 return
324 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700325
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700326 err := translateAndroidMk(ctx, transMk.String(), androidMkModulesList)
Dan Willemsen218f6562015-07-08 18:13:11 -0700327 if err != nil {
328 ctx.Errorf(err.Error())
329 }
330
Colin Cross0875c522017-11-28 17:34:01 -0800331 ctx.Build(pctx, BuildParams{
332 Rule: blueprint.Phony,
333 Output: transMk,
Dan Willemsen218f6562015-07-08 18:13:11 -0700334 })
335}
336
Colin Cross2465c3d2018-09-28 10:19:18 -0700337func translateAndroidMk(ctx SingletonContext, mkFile string, mods []blueprint.Module) error {
Dan Willemsen218f6562015-07-08 18:13:11 -0700338 buf := &bytes.Buffer{}
339
Dan Willemsen97750522016-02-09 17:43:51 -0800340 fmt.Fprintln(buf, "LOCAL_MODULE_MAKEFILE := $(lastword $(MAKEFILE_LIST))")
Dan Willemsen218f6562015-07-08 18:13:11 -0700341
Dan Willemsen70e17fa2016-07-25 16:00:20 -0700342 type_stats := make(map[string]int)
Dan Willemsen218f6562015-07-08 18:13:11 -0700343 for _, mod := range mods {
344 err := translateAndroidMkModule(ctx, buf, mod)
345 if err != nil {
346 os.Remove(mkFile)
347 return err
348 }
Dan Willemsen70e17fa2016-07-25 16:00:20 -0700349
Colin Cross2465c3d2018-09-28 10:19:18 -0700350 if amod, ok := mod.(Module); ok && ctx.PrimaryModule(amod) == amod {
351 type_stats[ctx.ModuleType(amod)] += 1
Dan Willemsen70e17fa2016-07-25 16:00:20 -0700352 }
353 }
354
355 keys := []string{}
356 fmt.Fprintln(buf, "\nSTATS.SOONG_MODULE_TYPE :=")
357 for k := range type_stats {
358 keys = append(keys, k)
359 }
360 sort.Strings(keys)
361 for _, mod_type := range keys {
362 fmt.Fprintln(buf, "STATS.SOONG_MODULE_TYPE +=", mod_type)
363 fmt.Fprintf(buf, "STATS.SOONG_MODULE_TYPE.%s := %d\n", mod_type, type_stats[mod_type])
Dan Willemsen218f6562015-07-08 18:13:11 -0700364 }
365
366 // Don't write to the file if it hasn't changed
367 if _, err := os.Stat(mkFile); !os.IsNotExist(err) {
368 if data, err := ioutil.ReadFile(mkFile); err == nil {
369 matches := buf.Len() == len(data)
370
371 if matches {
372 for i, value := range buf.Bytes() {
373 if value != data[i] {
374 matches = false
375 break
376 }
377 }
378 }
379
380 if matches {
381 return nil
382 }
383 }
384 }
385
386 return ioutil.WriteFile(mkFile, buf.Bytes(), 0666)
387}
388
Colin Cross0875c522017-11-28 17:34:01 -0800389func translateAndroidMkModule(ctx SingletonContext, w io.Writer, mod blueprint.Module) error {
Colin Cross953d3a22018-09-05 16:23:54 -0700390 defer func() {
391 if r := recover(); r != nil {
392 panic(fmt.Errorf("%s in translateAndroidMkModule for module %s variant %s",
393 r, ctx.ModuleName(mod), ctx.ModuleSubDir(mod)))
394 }
395 }()
396
Colin Cross2465c3d2018-09-28 10:19:18 -0700397 switch x := mod.(type) {
398 case AndroidMkDataProvider:
399 return translateAndroidModule(ctx, w, mod, x)
400 case bootstrap.GoBinaryTool:
401 return translateGoBinaryModule(ctx, w, mod, x)
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -0700402 case AndroidMkEntriesProvider:
403 return translateAndroidMkEntriesModule(ctx, w, mod, x)
Colin Cross2465c3d2018-09-28 10:19:18 -0700404 default:
Dan Willemsen218f6562015-07-08 18:13:11 -0700405 return nil
406 }
Colin Cross2465c3d2018-09-28 10:19:18 -0700407}
408
409func translateGoBinaryModule(ctx SingletonContext, w io.Writer, mod blueprint.Module,
410 goBinary bootstrap.GoBinaryTool) error {
411
412 name := ctx.ModuleName(mod)
413 fmt.Fprintln(w, ".PHONY:", name)
414 fmt.Fprintln(w, name+":", goBinary.InstallPath())
415 fmt.Fprintln(w, "")
416
417 return nil
418}
419
Jooyung Han12df5fb2019-07-11 16:18:47 +0900420func (data *AndroidMkData) fillInData(config Config, bpPath string, mod blueprint.Module) {
421 // Get the preamble content through AndroidMkEntries logic.
422 entries := AndroidMkEntries{
423 Class: data.Class,
424 SubName: data.SubName,
425 DistFile: data.DistFile,
426 OutputFile: data.OutputFile,
427 Disabled: data.Disabled,
428 Include: data.Include,
429 Required: data.Required,
430 Host_required: data.Host_required,
431 Target_required: data.Target_required,
432 }
433 entries.fillInEntries(config, bpPath, mod)
434
435 // preamble doesn't need the footer content.
436 entries.footer = bytes.Buffer{}
437 entries.write(&data.preamble)
438
439 // copy entries back to data since it is used in Custom
440 data.Required = entries.Required
441 data.Host_required = entries.Host_required
442 data.Target_required = entries.Target_required
443}
444
Colin Cross2465c3d2018-09-28 10:19:18 -0700445func translateAndroidModule(ctx SingletonContext, w io.Writer, mod blueprint.Module,
446 provider AndroidMkDataProvider) error {
Dan Willemsen218f6562015-07-08 18:13:11 -0700447
Colin Cross635c3b02016-05-18 15:37:25 -0700448 amod := mod.(Module).base()
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -0700449 if shouldSkipAndroidMkProcessing(amod) {
Jeff Gaston088e29e2017-11-29 16:47:17 -0800450 return nil
451 }
452
Colin Cross91825d22017-08-10 16:59:47 -0700453 data := provider.AndroidMk()
Colin Cross53499412017-09-07 13:20:25 -0700454 if data.Include == "" {
455 data.Include = "$(BUILD_PREBUILT)"
456 }
457
Jooyung Han12df5fb2019-07-11 16:18:47 +0900458 data.fillInData(ctx.Config(), ctx.BlueprintFile(mod), mod)
Dan Willemsen01a405a2016-06-13 17:19:03 -0700459
Colin Cross0f86d182017-08-10 17:07:28 -0700460 prefix := ""
461 if amod.ArchSpecific() {
462 switch amod.Os().Class {
463 case Host:
464 prefix = "HOST_"
465 case HostCross:
466 prefix = "HOST_CROSS_"
467 case Device:
468 prefix = "TARGET_"
Colin Crossa2344662016-03-24 13:14:12 -0700469
Dan Willemsen218f6562015-07-08 18:13:11 -0700470 }
471
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700472 if amod.Arch().ArchType != ctx.Config().Targets[amod.Os()][0].Arch.ArchType {
Colin Cross0f86d182017-08-10 17:07:28 -0700473 prefix = "2ND_" + prefix
474 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700475 }
476
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -0700477 name := provider.BaseModuleName()
Colin Cross0f86d182017-08-10 17:07:28 -0700478 blueprintDir := filepath.Dir(ctx.BlueprintFile(mod))
479
480 if data.Custom != nil {
481 data.Custom(w, name, prefix, blueprintDir, data)
482 } else {
483 WriteAndroidMkData(w, data)
484 }
485
486 return nil
487}
488
489func WriteAndroidMkData(w io.Writer, data AndroidMkData) {
490 if data.Disabled {
491 return
492 }
493
494 if !data.OutputFile.Valid() {
495 return
496 }
497
498 w.Write(data.preamble.Bytes())
499
Colin Crossca860ac2016-01-04 14:34:37 -0800500 for _, extra := range data.Extra {
Colin Cross27a4b052017-08-10 16:32:23 -0700501 extra(w, data.OutputFile.Path())
Dan Willemsen97750522016-02-09 17:43:51 -0800502 }
503
Colin Cross53499412017-09-07 13:20:25 -0700504 fmt.Fprintln(w, "include "+data.Include)
Dan Willemsen218f6562015-07-08 18:13:11 -0700505}
Sasha Smundakb6d23052019-04-01 18:37:36 -0700506
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -0700507func translateAndroidMkEntriesModule(ctx SingletonContext, w io.Writer, mod blueprint.Module,
508 provider AndroidMkEntriesProvider) error {
509 if shouldSkipAndroidMkProcessing(mod.(Module).base()) {
510 return nil
Sasha Smundakb6d23052019-04-01 18:37:36 -0700511 }
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -0700512
Jiyong Park0b0e1b92019-12-03 13:24:29 +0900513 for _, entries := range provider.AndroidMkEntries() {
514 entries.fillInEntries(ctx.Config(), ctx.BlueprintFile(mod), mod)
515 entries.write(w)
516 }
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -0700517
518 return nil
519}
520
521func shouldSkipAndroidMkProcessing(module *ModuleBase) bool {
522 if !module.commonProperties.NamespaceExportedToMake {
523 // TODO(jeffrygaston) do we want to validate that there are no modules being
524 // exported to Kati that depend on this module?
525 return true
Sasha Smundakb6d23052019-04-01 18:37:36 -0700526 }
Jaewoong Jung9aa3ab12019-04-03 15:47:29 -0700527
528 return !module.Enabled() ||
529 module.commonProperties.SkipInstall ||
530 // Make does not understand LinuxBionic
531 module.Os() == LinuxBionic
Sasha Smundakb6d23052019-04-01 18:37:36 -0700532}