blob: ade92f7166bbca98e72f207b12986c9a3e5ee08f [file] [log] [blame]
Colin Crossce75d2c2016-10-06 16:12:58 -07001// Copyright 2016 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 android
16
Colin Cross74d73e22017-08-02 11:05:49 -070017import (
18 "fmt"
Jaewoong Jung3e18b192019-06-11 12:25:34 -070019 "reflect"
Paul Duffind23c7262020-12-11 18:13:08 +000020 "strings"
Colin Cross74d73e22017-08-02 11:05:49 -070021
22 "github.com/google/blueprint"
Jaewoong Jung939ebd52019-03-26 15:07:36 -070023 "github.com/google/blueprint/proptools"
Colin Cross74d73e22017-08-02 11:05:49 -070024)
Colin Crossce75d2c2016-10-06 16:12:58 -070025
26// This file implements common functionality for handling modules that may exist as prebuilts,
27// source, or both.
28
Paul Duffin0c4979b2019-12-19 15:11:53 +000029func RegisterPrebuiltMutators(ctx RegistrationContext) {
30 ctx.PreArchMutators(RegisterPrebuiltsPreArchMutators)
31 ctx.PostDepsMutators(RegisterPrebuiltsPostDepsMutators)
32}
33
Paul Duffin80342d72020-06-26 22:08:43 +010034// Marks a dependency tag as possibly preventing a reference to a source from being
35// replaced with the prebuilt.
36type ReplaceSourceWithPrebuilt interface {
37 blueprint.DependencyTag
38
39 // Return true if the dependency defined by this tag should be replaced with the
40 // prebuilt.
41 ReplaceSourceWithPrebuilt() bool
42}
43
Nan Zhang2502e122017-03-09 18:43:01 -080044type prebuiltDependencyTag struct {
45 blueprint.BaseDependencyTag
46}
47
Jiyong Park03b68dd2019-07-26 23:20:40 +090048var PrebuiltDepTag prebuiltDependencyTag
Colin Crossce75d2c2016-10-06 16:12:58 -070049
Paul Duffin78ac5b92020-01-14 12:42:08 +000050// Mark this tag so dependencies that use it are excluded from visibility enforcement.
51func (t prebuiltDependencyTag) ExcludeFromVisibilityEnforcement() {}
52
Paul Duffindddd5462020-04-07 15:25:44 +010053// Mark this tag so dependencies that use it are excluded from APEX contents.
54func (t prebuiltDependencyTag) ExcludeFromApexContents() {}
55
56var _ ExcludeFromVisibilityEnforcementTag = PrebuiltDepTag
57var _ ExcludeFromApexContentsTag = PrebuiltDepTag
58
Colin Cross74d73e22017-08-02 11:05:49 -070059type PrebuiltProperties struct {
60 // When prefer is set to true the prebuilt will be used instead of any source module with
61 // a matching name.
Nan Zhang0007d812017-11-07 10:57:05 -080062 Prefer *bool `android:"arch_variant"`
Colin Crossce75d2c2016-10-06 16:12:58 -070063
Paul Duffin0c52c7b2021-07-06 17:15:25 +010064 // When specified this names a Soong config variable that controls the prefer property.
65 //
66 // If the value of the named Soong config variable is true then prefer is set to false and vice
67 // versa. If the Soong config variable is not set then it defaults to false, so prefer defaults
68 // to true.
69 //
70 // If specified then the prefer property is ignored in favor of the value of the Soong config
71 // variable.
72 Use_source_config_var *ConfigVarProperties
73
Colin Cross74d73e22017-08-02 11:05:49 -070074 SourceExists bool `blueprint:"mutated"`
75 UsePrebuilt bool `blueprint:"mutated"`
Martin Stjernholm009a9dc2020-03-05 17:34:13 +000076
77 // Set if the module has been renamed to remove the "prebuilt_" prefix.
78 PrebuiltRenamedToSource bool `blueprint:"mutated"`
Colin Cross74d73e22017-08-02 11:05:49 -070079}
80
Paul Duffin0c52c7b2021-07-06 17:15:25 +010081// Properties that can be used to select a Soong config variable.
82type ConfigVarProperties struct {
83 // Allow instances of this struct to be used as a property value in a BpPropertySet.
84 BpPrintableBase
85
86 // The name of the configuration namespace.
87 //
88 // As passed to add_soong_config_namespace in Make.
89 Config_namespace *string
90
91 // The name of the configuration variable.
92 //
93 // As passed to add_soong_config_var_value in Make.
94 Var_name *string
95}
96
Colin Cross74d73e22017-08-02 11:05:49 -070097type Prebuilt struct {
98 properties PrebuiltProperties
Jaewoong Jung3e18b192019-06-11 12:25:34 -070099
Martin Stjernholme65c3ae2021-11-23 01:24:06 +0000100 // nil if the prebuilt has no srcs property at all. See InitPrebuiltModuleWithoutSrcs.
101 srcsSupplier PrebuiltSrcsSupplier
102
103 // "-" if the prebuilt has no srcs property at all. See InitPrebuiltModuleWithoutSrcs.
Paul Duffindcb4bd62020-03-12 23:43:52 +0000104 srcsPropertyName string
Colin Crossce75d2c2016-10-06 16:12:58 -0700105}
106
Paul Duffind23c7262020-12-11 18:13:08 +0000107// RemoveOptionalPrebuiltPrefix returns the result of removing the "prebuilt_" prefix from the
108// supplied name if it has one, or returns the name unmodified if it does not.
109func RemoveOptionalPrebuiltPrefix(name string) string {
110 return strings.TrimPrefix(name, "prebuilt_")
111}
112
Colin Crossce75d2c2016-10-06 16:12:58 -0700113func (p *Prebuilt) Name(name string) string {
Paul Duffin864116c2021-04-02 10:24:13 +0100114 return PrebuiltNameFromSource(name)
115}
116
117// PrebuiltNameFromSource returns the result of prepending the "prebuilt_" prefix to the supplied
118// name.
119func PrebuiltNameFromSource(name string) string {
Colin Crossce75d2c2016-10-06 16:12:58 -0700120 return "prebuilt_" + name
121}
122
Paul Duffin50061512020-01-21 16:31:05 +0000123func (p *Prebuilt) ForcePrefer() {
124 p.properties.Prefer = proptools.BoolPtr(true)
125}
126
Paul Duffin38b57852020-05-13 16:08:09 +0100127func (p *Prebuilt) Prefer() bool {
128 return proptools.Bool(p.properties.Prefer)
129}
130
Paul Duffin56dc66e2021-03-01 13:18:44 +0000131// SingleSourcePathFromSupplier invokes the supplied supplier for the current module in the
132// supplied context to retrieve a list of file paths, ensures that the returned list of file paths
133// contains a single value and then assumes that is a module relative file path and converts it to
134// a Path accordingly.
135//
136// Any issues, such as nil supplier or not exactly one file path will be reported as errors on the
137// supplied context and this will return nil.
138func SingleSourcePathFromSupplier(ctx ModuleContext, srcsSupplier PrebuiltSrcsSupplier, srcsPropertyName string) Path {
139 if srcsSupplier != nil {
140 srcs := srcsSupplier(ctx, ctx.Module())
Paul Duffindcb4bd62020-03-12 23:43:52 +0000141
142 if len(srcs) == 0 {
Paul Duffin56dc66e2021-03-01 13:18:44 +0000143 ctx.PropertyErrorf(srcsPropertyName, "missing prebuilt source file")
Jaewoong Jung939ebd52019-03-26 15:07:36 -0700144 return nil
145 }
Colin Crossce75d2c2016-10-06 16:12:58 -0700146
Paul Duffindcb4bd62020-03-12 23:43:52 +0000147 if len(srcs) > 1 {
Paul Duffin56dc66e2021-03-01 13:18:44 +0000148 ctx.PropertyErrorf(srcsPropertyName, "multiple prebuilt source files")
Jaewoong Jung939ebd52019-03-26 15:07:36 -0700149 return nil
150 }
Colin Crossce75d2c2016-10-06 16:12:58 -0700151
Jaewoong Jung939ebd52019-03-26 15:07:36 -0700152 // Return the singleton source after expanding any filegroup in the
153 // sources.
Paul Duffindcb4bd62020-03-12 23:43:52 +0000154 src := srcs[0]
Jaewoong Jung3e18b192019-06-11 12:25:34 -0700155 return PathForModuleSrc(ctx, src)
Paul Duffindcb4bd62020-03-12 23:43:52 +0000156 } else {
157 ctx.ModuleErrorf("prebuilt source was not set")
158 return nil
Jaewoong Jung939ebd52019-03-26 15:07:36 -0700159 }
Colin Cross74d73e22017-08-02 11:05:49 -0700160}
161
Paul Duffin56dc66e2021-03-01 13:18:44 +0000162// The below source-related functions and the srcs, src fields are based on an assumption that
163// prebuilt modules have a static source property at the moment. Currently there is only one
164// exception, android_app_import, which chooses a source file depending on the product's DPI
165// preference configs. We'll want to add native support for dynamic source cases if we end up having
166// more modules like this.
167func (p *Prebuilt) SingleSourcePath(ctx ModuleContext) Path {
168 return SingleSourcePathFromSupplier(ctx, p.srcsSupplier, p.srcsPropertyName)
169}
170
Jiyong Park4d277042019-04-23 18:00:10 +0900171func (p *Prebuilt) UsePrebuilt() bool {
172 return p.properties.UsePrebuilt
173}
174
Paul Duffindcb4bd62020-03-12 23:43:52 +0000175// Called to provide the srcs value for the prebuilt module.
176//
Paul Duffinc04fb9e2021-03-01 12:25:10 +0000177// This can be called with a context for any module not just the prebuilt one itself. It can also be
178// called concurrently.
179//
Paul Duffindcb4bd62020-03-12 23:43:52 +0000180// Return the src value or nil if it is not available.
Paul Duffinc04fb9e2021-03-01 12:25:10 +0000181type PrebuiltSrcsSupplier func(ctx BaseModuleContext, prebuilt Module) []string
Paul Duffindcb4bd62020-03-12 23:43:52 +0000182
Martin Stjernholme65c3ae2021-11-23 01:24:06 +0000183func initPrebuiltModuleCommon(module PrebuiltInterface) *Prebuilt {
184 p := module.Prebuilt()
185 module.AddProperties(&p.properties)
Martin Stjernholme65c3ae2021-11-23 01:24:06 +0000186 return p
187}
188
189// Initialize the module as a prebuilt module that has no dedicated property that lists its
190// sources. SingleSourcePathFromSupplier should not be called for this module.
191//
192// This is the case e.g. for header modules, which provides the headers in source form
193// regardless whether they are prebuilt or not.
194func InitPrebuiltModuleWithoutSrcs(module PrebuiltInterface) {
195 p := initPrebuiltModuleCommon(module)
196 p.srcsPropertyName = "-"
197}
198
Paul Duffindcb4bd62020-03-12 23:43:52 +0000199// Initialize the module as a prebuilt module that uses the provided supplier to access the
200// prebuilt sources of the module.
201//
202// The supplier will be called multiple times and must return the same values each time it
203// is called. If it returns an empty array (or nil) then the prebuilt module will not be used
204// as a replacement for a source module with the same name even if prefer = true.
205//
206// If the Prebuilt.SingleSourcePath() is called on the module then this must return an array
207// containing exactly one source file.
208//
209// The provided property name is used to provide helpful error messages in the event that
210// a problem arises, e.g. calling SingleSourcePath() when more than one source is provided.
211func InitPrebuiltModuleWithSrcSupplier(module PrebuiltInterface, srcsSupplier PrebuiltSrcsSupplier, srcsPropertyName string) {
Paul Duffindcb4bd62020-03-12 23:43:52 +0000212 if srcsSupplier == nil {
213 panic(fmt.Errorf("srcsSupplier must not be nil"))
214 }
215 if srcsPropertyName == "" {
216 panic(fmt.Errorf("srcsPropertyName must not be empty"))
217 }
218
Martin Stjernholme65c3ae2021-11-23 01:24:06 +0000219 p := initPrebuiltModuleCommon(module)
Paul Duffindcb4bd62020-03-12 23:43:52 +0000220 p.srcsSupplier = srcsSupplier
221 p.srcsPropertyName = srcsPropertyName
222}
223
224func InitPrebuiltModule(module PrebuiltInterface, srcs *[]string) {
225 if srcs == nil {
226 panic(fmt.Errorf("srcs must not be nil"))
227 }
228
Paul Duffinc04fb9e2021-03-01 12:25:10 +0000229 srcsSupplier := func(ctx BaseModuleContext, _ Module) []string {
Paul Duffindcb4bd62020-03-12 23:43:52 +0000230 return *srcs
231 }
232
233 InitPrebuiltModuleWithSrcSupplier(module, srcsSupplier, "srcs")
Colin Crossce75d2c2016-10-06 16:12:58 -0700234}
235
Jaewoong Jung3e18b192019-06-11 12:25:34 -0700236func InitSingleSourcePrebuiltModule(module PrebuiltInterface, srcProps interface{}, srcField string) {
Paul Duffindcb4bd62020-03-12 23:43:52 +0000237 srcPropsValue := reflect.ValueOf(srcProps).Elem()
238 srcStructField, _ := srcPropsValue.Type().FieldByName(srcField)
239 if !srcPropsValue.IsValid() || srcStructField.Name == "" {
240 panic(fmt.Errorf("invalid single source prebuilt %+v", module))
241 }
242
243 if srcPropsValue.Kind() != reflect.Struct && srcPropsValue.Kind() != reflect.Interface {
244 panic(fmt.Errorf("invalid single source prebuilt %+v", srcProps))
245 }
246
247 srcFieldIndex := srcStructField.Index
248 srcPropertyName := proptools.PropertyNameForField(srcField)
249
Paul Duffinc04fb9e2021-03-01 12:25:10 +0000250 srcsSupplier := func(ctx BaseModuleContext, _ Module) []string {
Jaewoong Jung729c0bd2020-12-08 19:11:54 -0800251 if !module.Enabled() {
Jaewoong Jung84f1b802020-12-04 11:51:29 -0800252 return nil
253 }
Paul Duffindcb4bd62020-03-12 23:43:52 +0000254 value := srcPropsValue.FieldByIndex(srcFieldIndex)
255 if value.Kind() == reflect.Ptr {
256 value = value.Elem()
257 }
258 if value.Kind() != reflect.String {
Martin Stjernholm25a69de2021-09-09 02:48:30 +0100259 panic(fmt.Errorf("prebuilt src field %q in %T in module %s should be a string or a pointer to one but was %v", srcField, srcProps, module, value))
Paul Duffindcb4bd62020-03-12 23:43:52 +0000260 }
261 src := value.String()
262 if src == "" {
263 return nil
264 }
265 return []string{src}
266 }
267
268 InitPrebuiltModuleWithSrcSupplier(module, srcsSupplier, srcPropertyName)
Jaewoong Jung939ebd52019-03-26 15:07:36 -0700269}
270
Colin Crossce75d2c2016-10-06 16:12:58 -0700271type PrebuiltInterface interface {
272 Module
273 Prebuilt() *Prebuilt
Colin Crossce75d2c2016-10-06 16:12:58 -0700274}
275
Paul Duffine1d38372021-04-02 10:35:24 +0100276// IsModulePreferred returns true if the given module is preferred.
277//
278// A source module is preferred if there is no corresponding prebuilt module or the prebuilt module
279// does not have "prefer: true".
280//
281// A prebuilt module is preferred if there is no corresponding source module or the prebuilt module
282// has "prefer: true".
283func IsModulePreferred(module Module) bool {
284 if module.IsReplacedByPrebuilt() {
285 // A source module that has been replaced by a prebuilt counterpart.
286 return false
287 }
Paul Duffinf7c99f52021-04-28 10:41:21 +0100288 if p := GetEmbeddedPrebuilt(module); p != nil {
289 return p.UsePrebuilt()
Paul Duffine1d38372021-04-02 10:35:24 +0100290 }
291 return true
292}
293
Paul Duffinf7c99f52021-04-28 10:41:21 +0100294// IsModulePrebuilt returns true if the module implements PrebuiltInterface and
295// has been initialized as a prebuilt and so returns a non-nil value from the
296// PrebuiltInterface.Prebuilt() method.
297func IsModulePrebuilt(module Module) bool {
298 return GetEmbeddedPrebuilt(module) != nil
299}
300
301// GetEmbeddedPrebuilt returns a pointer to the embedded Prebuilt structure or
302// nil if the module does not implement PrebuiltInterface or has not been
303// initialized as a prebuilt module.
304func GetEmbeddedPrebuilt(module Module) *Prebuilt {
305 if p, ok := module.(PrebuiltInterface); ok {
306 return p.Prebuilt()
307 }
308
309 return nil
310}
311
Colin Cross5ea9bcc2017-07-27 15:41:32 -0700312func RegisterPrebuiltsPreArchMutators(ctx RegisterMutatorsContext) {
Martin Stjernholm009a9dc2020-03-05 17:34:13 +0000313 ctx.BottomUp("prebuilt_rename", PrebuiltRenameMutator).Parallel()
Colin Crosscec81712017-07-13 14:43:27 -0700314}
315
Colin Cross5ea9bcc2017-07-27 15:41:32 -0700316func RegisterPrebuiltsPostDepsMutators(ctx RegisterMutatorsContext) {
Martin Stjernholm009a9dc2020-03-05 17:34:13 +0000317 ctx.BottomUp("prebuilt_source", PrebuiltSourceDepsMutator).Parallel()
Colin Crosscec81712017-07-13 14:43:27 -0700318 ctx.TopDown("prebuilt_select", PrebuiltSelectModuleMutator).Parallel()
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -0700319 ctx.BottomUp("prebuilt_postdeps", PrebuiltPostDepsMutator).Parallel()
Colin Crosscec81712017-07-13 14:43:27 -0700320}
321
Martin Stjernholm009a9dc2020-03-05 17:34:13 +0000322// PrebuiltRenameMutator ensures that there always is a module with an
323// undecorated name.
324func PrebuiltRenameMutator(ctx BottomUpMutatorContext) {
Paul Duffinf7c99f52021-04-28 10:41:21 +0100325 m := ctx.Module()
326 if p := GetEmbeddedPrebuilt(m); p != nil {
Martin Stjernholm009a9dc2020-03-05 17:34:13 +0000327 name := m.base().BaseModuleName()
328 if !ctx.OtherModuleExists(name) {
329 ctx.Rename(name)
Paul Duffinf7c99f52021-04-28 10:41:21 +0100330 p.properties.PrebuiltRenamedToSource = true
Martin Stjernholm009a9dc2020-03-05 17:34:13 +0000331 }
332 }
333}
334
335// PrebuiltSourceDepsMutator adds dependencies to the prebuilt module from the
336// corresponding source module, if one exists for the same variant.
337func PrebuiltSourceDepsMutator(ctx BottomUpMutatorContext) {
Paul Duffinf7c99f52021-04-28 10:41:21 +0100338 m := ctx.Module()
339 // If this module is a prebuilt, is enabled and has not been renamed to source then add a
340 // dependency onto the source if it is present.
341 if p := GetEmbeddedPrebuilt(m); p != nil && m.Enabled() && !p.properties.PrebuiltRenamedToSource {
342 name := m.base().BaseModuleName()
343 if ctx.OtherModuleReverseDependencyVariantExists(name) {
344 ctx.AddReverseDependency(ctx.Module(), PrebuiltDepTag, name)
345 p.properties.SourceExists = true
Colin Crossce75d2c2016-10-06 16:12:58 -0700346 }
347 }
348}
349
Colin Crossc3e7fa62017-03-17 13:14:32 -0700350// PrebuiltSelectModuleMutator marks prebuilts that are used, either overriding source modules or
351// because the source module doesn't exist. It also disables installing overridden source modules.
Colin Crossa2f296f2016-11-29 15:16:18 -0800352func PrebuiltSelectModuleMutator(ctx TopDownMutatorContext) {
Paul Duffinf7c99f52021-04-28 10:41:21 +0100353 m := ctx.Module()
354 if p := GetEmbeddedPrebuilt(m); p != nil {
Martin Stjernholme65c3ae2021-11-23 01:24:06 +0000355 if p.srcsSupplier == nil && p.srcsPropertyName == "" {
Colin Cross74d73e22017-08-02 11:05:49 -0700356 panic(fmt.Errorf("prebuilt module did not have InitPrebuiltModule called on it"))
357 }
358 if !p.properties.SourceExists {
Paul Duffinc04fb9e2021-03-01 12:25:10 +0000359 p.properties.UsePrebuilt = p.usePrebuilt(ctx, nil, m)
Colin Crossc3e7fa62017-03-17 13:14:32 -0700360 }
361 } else if s, ok := ctx.Module().(Module); ok {
Paul Duffinf7c99f52021-04-28 10:41:21 +0100362 ctx.VisitDirectDepsWithTag(PrebuiltDepTag, func(prebuiltModule Module) {
363 p := GetEmbeddedPrebuilt(prebuiltModule)
364 if p.usePrebuilt(ctx, s, prebuiltModule) {
Colin Crossee6143c2017-12-30 17:54:27 -0800365 p.properties.UsePrebuilt = true
Liz Kammer5ca3a622020-08-05 15:40:41 -0700366 s.ReplacedByPrebuilt()
Colin Crossa2f296f2016-11-29 15:16:18 -0800367 }
368 })
369 }
370}
371
Jaewoong Jung6158dfe2021-03-23 14:08:29 -0700372// PrebuiltPostDepsMutator replaces dependencies on the source module with dependencies on the
373// prebuilt when both modules exist and the prebuilt should be used. When the prebuilt should not
374// be used, disable installing it.
Pirama Arumuga Nainar955dc492018-04-17 14:58:42 -0700375func PrebuiltPostDepsMutator(ctx BottomUpMutatorContext) {
Paul Duffinf7c99f52021-04-28 10:41:21 +0100376 m := ctx.Module()
377 if p := GetEmbeddedPrebuilt(m); p != nil {
Colin Crossce75d2c2016-10-06 16:12:58 -0700378 name := m.base().BaseModuleName()
Colin Cross74d73e22017-08-02 11:05:49 -0700379 if p.properties.UsePrebuilt {
380 if p.properties.SourceExists {
Paul Duffin80342d72020-06-26 22:08:43 +0100381 ctx.ReplaceDependenciesIf(name, func(from blueprint.Module, tag blueprint.DependencyTag, to blueprint.Module) bool {
382 if t, ok := tag.(ReplaceSourceWithPrebuilt); ok {
383 return t.ReplaceSourceWithPrebuilt()
384 }
385
386 return true
387 })
Colin Cross0f3c72f2016-11-23 15:44:07 -0800388 }
389 } else {
Colin Crossa9c8c9f2020-12-16 10:20:23 -0800390 m.HideFromMake()
Colin Crossce75d2c2016-10-06 16:12:58 -0700391 }
392 }
393}
394
Colin Crossa2f296f2016-11-29 15:16:18 -0800395// usePrebuilt returns true if a prebuilt should be used instead of the source module. The prebuilt
396// will be used if it is marked "prefer" or if the source module is disabled.
Paul Duffinc04fb9e2021-03-01 12:25:10 +0000397func (p *Prebuilt) usePrebuilt(ctx TopDownMutatorContext, source Module, prebuilt Module) bool {
398 if p.srcsSupplier != nil && len(p.srcsSupplier(ctx, prebuilt)) == 0 {
Colin Crossa2f296f2016-11-29 15:16:18 -0800399 return false
Colin Crossce75d2c2016-10-06 16:12:58 -0700400 }
Colin Crossce75d2c2016-10-06 16:12:58 -0700401
LuK1337fb545bf2021-01-10 17:47:46 +0100402 // Skip prebuilt modules under unexported namespaces so that we won't
403 // end up shadowing non-prebuilt module when prebuilt module under same
404 // name happens to have a `Prefer` property set to true.
405 if ctx.Config().KatiEnabled() && !prebuilt.ExportedToMake() {
406 return false
407 }
408
Paul Duffin0c52c7b2021-07-06 17:15:25 +0100409 // If source is not available or is disabled then always use the prebuilt.
410 if source == nil || !source.Enabled() {
Colin Crossa2f296f2016-11-29 15:16:18 -0800411 return true
412 }
413
Paul Duffin0c52c7b2021-07-06 17:15:25 +0100414 // If the use_source_config_var property is set then it overrides the prefer property setting.
415 if configVar := p.properties.Use_source_config_var; configVar != nil {
416 return !ctx.Config().VendorConfig(proptools.String(configVar.Config_namespace)).Bool(proptools.String(configVar.Var_name))
417 }
418
419 // TODO: use p.Properties.Name and ctx.ModuleDir to override preference
420 return Bool(p.properties.Prefer)
Colin Crossce75d2c2016-10-06 16:12:58 -0700421}
Jiyong Park0a573d72019-07-07 12:39:16 +0900422
423func (p *Prebuilt) SourceExists() bool {
424 return p.properties.SourceExists
425}