blob: 6654b499cd4e306f96f7dcd4428ed36611d9346e [file] [log] [blame]
Colin Cross3f40fa42015-01-30 17:27:36 -08001// 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
Colin Cross3f40fa42015-01-30 17:27:36 -080016
Jingwen Chenc711fec2020-11-22 23:52:50 -050017// This is the primary location to write and read all configuration values and
18// product variables necessary for soong_build's operation.
19
Colin Cross3f40fa42015-01-30 17:27:36 -080020import (
Cole Faust082c5f32022-08-04 15:49:20 -070021 "bytes"
Colin Cross3f40fa42015-01-30 17:27:36 -080022 "encoding/json"
23 "fmt"
Colin Crossd8f20142016-11-03 09:43:26 -070024 "io/ioutil"
Colin Cross3f40fa42015-01-30 17:27:36 -080025 "os"
Colin Cross35cec122015-04-02 14:37:16 -070026 "path/filepath"
Sam Delmerico5c32bbf2022-01-20 20:15:02 +000027 "reflect"
Colin Cross3f40fa42015-01-30 17:27:36 -080028 "runtime"
Inseob Kim60c32f02020-12-21 22:53:05 +090029 "strconv"
Dan Willemsen34cc69e2015-09-23 15:26:20 -070030 "strings"
Colin Crossc1e86a32015-04-15 12:33:28 -070031 "sync"
Colin Cross6ff51382015-12-17 16:39:19 -080032
Colin Cross98be1bb2019-12-13 20:41:13 -080033 "github.com/google/blueprint"
Colin Crosse87040b2017-12-11 15:52:26 -080034 "github.com/google/blueprint/bootstrap"
Colin Cross98be1bb2019-12-13 20:41:13 -080035 "github.com/google/blueprint/pathtools"
Colin Cross6ff51382015-12-17 16:39:19 -080036 "github.com/google/blueprint/proptools"
Colin Cross9d34f352019-11-22 16:03:51 -080037
38 "android/soong/android/soongconfig"
Liz Kammer09f947d2021-05-12 14:51:49 -040039 "android/soong/bazel"
Colin Cross77cdcfd2021-03-12 11:28:25 -080040 "android/soong/remoteexec"
Liz Kammer72beb342022-02-03 08:42:10 -050041 "android/soong/starlark_fmt"
Colin Cross3f40fa42015-01-30 17:27:36 -080042)
43
Jingwen Chenc711fec2020-11-22 23:52:50 -050044// Bool re-exports proptools.Bool for the android package.
Colin Cross6ff51382015-12-17 16:39:19 -080045var Bool = proptools.Bool
Jingwen Chenc711fec2020-11-22 23:52:50 -050046
47// String re-exports proptools.String for the android package.
Jack He8cc71432016-12-08 15:45:07 -080048var String = proptools.String
Jingwen Chenc711fec2020-11-22 23:52:50 -050049
50// StringDefault re-exports proptools.StringDefault for the android package.
Jeongik Cha219141c2020-08-06 23:00:37 +090051var StringDefault = proptools.StringDefault
Jiyong Park6a927c42020-01-21 02:03:43 +090052
Jingwen Chenc711fec2020-11-22 23:52:50 -050053// FutureApiLevelInt is a placeholder constant for unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070054const FutureApiLevelInt = 10000
55
Jingwen Chenc711fec2020-11-22 23:52:50 -050056// FutureApiLevel represents unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070057var FutureApiLevel = ApiLevel{
58 value: "current",
59 number: FutureApiLevelInt,
60 isPreview: true,
61}
Colin Cross6ff51382015-12-17 16:39:19 -080062
Jingwen Chenc4d91bc2020-11-24 22:59:26 -050063// The product variables file name, containing product config from Kati.
Dan Willemsen87b17d12015-07-14 00:39:06 -070064const productVariablesFileName = "soong.variables"
Colin Cross3f40fa42015-01-30 17:27:36 -080065
Colin Cross9272ade2016-08-17 15:24:12 -070066// A Config object represents the entire build configuration for Android.
Colin Crossc3c0a492015-04-10 15:43:55 -070067type Config struct {
68 *config
69}
70
Chris Parsonsad876012022-08-20 14:48:32 -040071type SoongBuildMode int
72
73// Build modes that soong_build can run as.
74const (
75 // Don't use bazel at all during module analysis.
76 AnalysisNoBazel SoongBuildMode = iota
77
78 // Bp2build mode: Generate BUILD files from blueprint files and exit.
79 Bp2build
80
81 // Generate BUILD files which faithfully represent the dependency graph of
82 // blueprint modules. Individual BUILD targets will not, however, faitfhully
83 // express build semantics.
84 GenerateQueryView
85
86 // Create a JSON representation of the module graph and exit.
87 GenerateModuleGraph
88
89 // Generate a documentation file for module type definitions and exit.
90 GenerateDocFile
91
92 // Use bazel during analysis of many allowlisted build modules. The allowlist
93 // is considered a "developer mode" allowlist, as some modules may be
94 // allowlisted on an experimental basis.
95 BazelDevMode
96
97 // Use bazel during analysis of build modules from an allowlist carefully
98 // curated by the build team to be proven stable.
99 // TODO(cparsons): Implement this mode.
100 BazelProdMode
101)
102
Lukacs T. Berkib078ade2021-08-31 10:42:08 +0200103// SoongOutDir returns the build output directory for the configuration.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200104func (c Config) SoongOutDir() string {
105 return c.soongOutDir
Jeff Gastonefc1b412017-03-29 17:29:06 -0700106}
107
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200108func (c Config) OutDir() string {
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200109 return c.outDir
Lukacs T. Berki89e9a162021-03-12 08:31:32 +0100110}
111
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +0200112func (c Config) RunGoTests() bool {
113 return c.runGoTests
114}
115
Lukacs T. Berki5f6cb1d2021-03-17 15:03:14 +0100116func (c Config) DebugCompilation() bool {
117 return false // Never compile Go code in the main build for debugging
118}
119
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +0200120func (c Config) Subninjas() []string {
121 return []string{}
122}
123
124func (c Config) PrimaryBuilderInvocations() []bootstrap.PrimaryBuilderInvocation {
125 return []bootstrap.PrimaryBuilderInvocation{}
126}
127
Jingwen Chenc711fec2020-11-22 23:52:50 -0500128// A DeviceConfig object represents the configuration for a particular device
129// being built. For now there will only be one of these, but in the future there
130// may be multiple devices being built.
Colin Cross9272ade2016-08-17 15:24:12 -0700131type DeviceConfig struct {
132 *deviceConfig
133}
134
Jingwen Chenc711fec2020-11-22 23:52:50 -0500135// VendorConfig represents the configuration for vendor-specific behavior.
Colin Cross9d34f352019-11-22 16:03:51 -0800136type VendorConfig soongconfig.SoongConfig
Dan Willemsen0fe78662018-03-26 12:41:18 -0700137
Jingwen Chenc711fec2020-11-22 23:52:50 -0500138// Definition of general build configuration for soong_build. Some of these
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500139// product configuration values are read from Kati-generated soong.variables.
Colin Cross1332b002015-04-07 17:11:30 -0700140type config struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500141 // Options configurable with soong.variables
Dan Willemsen45133ac2018-03-09 21:22:06 -0800142 productVariables productVariables
Colin Cross3f40fa42015-01-30 17:27:36 -0800143
Dan Willemsen674dc7f2018-03-12 18:06:05 -0700144 // Only available on configs created by TestConfig
145 TestProductVariables *productVariables
146
Jingwen Chenc711fec2020-11-22 23:52:50 -0500147 // A specialized context object for Bazel/Soong mixed builds and migration
148 // purposes.
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400149 BazelContext BazelContext
150
Dan Willemsen87b17d12015-07-14 00:39:06 -0700151 ProductVariablesFileName string
152
Colin Cross0c66bc62021-07-20 09:47:41 -0700153 // BuildOS stores the OsType for the OS that the build is running on.
154 BuildOS OsType
155
156 // BuildArch stores the ArchType for the CPU that the build is running on.
157 BuildArch ArchType
158
Jaewoong Jung642916f2020-10-09 17:25:15 -0700159 Targets map[OsType][]Target
160 BuildOSTarget Target // the Target for tools run on the build machine
161 BuildOSCommonTarget Target // the Target for common (java) tools run on the build machine
162 AndroidCommonTarget Target // the Target for common modules for the Android device
163 AndroidFirstDeviceTarget Target // the first Target for modules for the Android device
Dan Willemsen218f6562015-07-08 18:13:11 -0700164
Jingwen Chenc711fec2020-11-22 23:52:50 -0500165 // multilibConflicts for an ArchType is true if there is earlier configured
166 // device architecture with the same multilib value.
Colin Cross3b19f5d2019-09-17 14:45:31 -0700167 multilibConflicts map[ArchType]bool
168
Colin Cross9272ade2016-08-17 15:24:12 -0700169 deviceConfig *deviceConfig
170
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200171 outDir string // The output directory (usually out/)
172 soongOutDir string
Chris Parsons8f232a22020-06-23 17:37:05 -0400173 moduleListFile string // the path to the file which lists blueprint files to parse.
Colin Crossc1e86a32015-04-15 12:33:28 -0700174
Lukacs T. Berkie1df43f2021-09-08 15:31:14 +0200175 runGoTests bool
Lukacs T. Berkiea1a31c2021-09-02 09:58:09 +0200176
Colin Cross6ccbc912017-10-10 23:07:38 -0700177 env map[string]string
Dan Willemsene7680ba2015-09-11 17:06:19 -0700178 envLock sync.Mutex
179 envDeps map[string]string
180 envFrozen bool
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800181
Jingwen Chencda22c92020-11-23 00:22:30 -0500182 // Changes behavior based on whether Kati runs after soong_build, or if soong_build
183 // runs standalone.
184 katiEnabled bool
Colin Cross1e7d3702016-08-24 15:25:47 -0700185
Colin Cross32616ed2017-09-05 21:56:44 -0700186 captureBuild bool // true for tests, saves build parameters for each module
187 ignoreEnvironment bool // true for tests, returns empty from all Getenv calls
Colin Crosscec81712017-07-13 14:43:27 -0700188
Colin Cross98be1bb2019-12-13 20:41:13 -0800189 fs pathtools.FileSystem
190 mockBpList string
191
Chris Parsonsad876012022-08-20 14:48:32 -0400192 BuildMode SoongBuildMode
Sam Delmerico24c56032022-03-28 19:53:03 +0000193 bp2buildPackageConfig bp2BuildConversionAllowlist
Jingwen Chen01812022021-11-19 14:29:43 +0000194 Bp2buildSoongConfigDefinitions soongconfig.Bp2BuildSoongConfigDefinitions
Jingwen Chen12b4c272021-03-10 02:05:59 -0500195
Colin Cross5e6a7972020-06-07 16:56:32 -0700196 // If testAllowNonExistentPaths is true then PathForSource and PathForModuleSrc won't error
197 // in tests when a path doesn't exist.
Pedro Loureiro5d190cc2021-02-15 15:41:33 +0000198 TestAllowNonExistentPaths bool
Colin Cross5e6a7972020-06-07 16:56:32 -0700199
Jingwen Chenc711fec2020-11-22 23:52:50 -0500200 // The list of files that when changed, must invalidate soong_build to
201 // regenerate build.ninja.
Colin Cross12129292020-10-29 18:23:58 -0700202 ninjaFileDepsSet sync.Map
203
Colin Cross9272ade2016-08-17 15:24:12 -0700204 OncePer
MarkDacekff851b82022-04-21 18:33:17 +0000205
Chris Parsonsad876012022-08-20 14:48:32 -0400206 // These fields are only used for metrics collection. A module should be added
207 // to these maps only if its implementation supports Bazel handling in mixed
208 // builds. A module being in the "enabled" list indicates that there is a
209 // variant of that module for which bazel-handling actually took place.
210 // A module being in the "disabled" list indicates that there is a variant of
211 // that module for which bazel-handling was denied.
MarkDacekff851b82022-04-21 18:33:17 +0000212 mixedBuildsLock sync.Mutex
213 mixedBuildEnabledModules map[string]struct{}
214 mixedBuildDisabledModules map[string]struct{}
Colin Cross9272ade2016-08-17 15:24:12 -0700215}
216
217type deviceConfig struct {
Dan Willemsen00269f22017-07-06 16:59:48 -0700218 config *config
Colin Cross9272ade2016-08-17 15:24:12 -0700219 OncePer
Colin Cross3f40fa42015-01-30 17:27:36 -0800220}
221
Colin Cross485e5722015-08-27 13:28:01 -0700222type jsonConfigurable interface {
Colin Cross27385972015-09-18 10:57:10 -0700223 SetDefaultConfig()
Colin Cross485e5722015-08-27 13:28:01 -0700224}
Colin Cross3f40fa42015-01-30 17:27:36 -0800225
Colin Cross485e5722015-08-27 13:28:01 -0700226func loadConfig(config *config) error {
Colin Cross988414c2020-01-11 01:11:46 +0000227 return loadFromConfigFile(&config.productVariables, absolutePath(config.ProductVariablesFileName))
Colin Cross485e5722015-08-27 13:28:01 -0700228}
229
Jingwen Chenc711fec2020-11-22 23:52:50 -0500230// loadFromConfigFile loads and decodes configuration options from a JSON file
231// in the current working directory.
Liz Kammer09f947d2021-05-12 14:51:49 -0400232func loadFromConfigFile(configurable *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800233 // Try to open the file
Colin Cross485e5722015-08-27 13:28:01 -0700234 configFileReader, err := os.Open(filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800235 defer configFileReader.Close()
236 if os.IsNotExist(err) {
237 // Need to create a file, so that blueprint & ninja don't get in
238 // a dependency tracking loop.
239 // Make a file-configurable-options with defaults, write it out using
240 // a json writer.
Colin Cross27385972015-09-18 10:57:10 -0700241 configurable.SetDefaultConfig()
242 err = saveToConfigFile(configurable, filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800243 if err != nil {
244 return err
245 }
Colin Cross15cd21a2018-02-27 11:26:02 -0800246 } else if err != nil {
247 return fmt.Errorf("config file: could not open %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800248 } else {
249 // Make a decoder for it
250 jsonDecoder := json.NewDecoder(configFileReader)
Colin Cross485e5722015-08-27 13:28:01 -0700251 err = jsonDecoder.Decode(configurable)
Colin Cross3f40fa42015-01-30 17:27:36 -0800252 if err != nil {
Colin Cross15cd21a2018-02-27 11:26:02 -0800253 return fmt.Errorf("config file: %s did not parse correctly: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800254 }
255 }
256
Liz Kammer09f947d2021-05-12 14:51:49 -0400257 if Bool(configurable.GcovCoverage) && Bool(configurable.ClangCoverage) {
258 return fmt.Errorf("GcovCoverage and ClangCoverage cannot both be set")
259 }
260
261 configurable.Native_coverage = proptools.BoolPtr(
262 Bool(configurable.GcovCoverage) ||
263 Bool(configurable.ClangCoverage))
264
Yuntao Xu402e9b02021-08-09 15:44:44 -0700265 // when Platform_sdk_final is true (or PLATFORM_VERSION_CODENAME is REL), use Platform_sdk_version;
266 // if false (pre-released version, for example), use Platform_sdk_codename.
267 if Bool(configurable.Platform_sdk_final) {
268 if configurable.Platform_sdk_version != nil {
269 configurable.Platform_sdk_version_or_codename =
270 proptools.StringPtr(strconv.Itoa(*(configurable.Platform_sdk_version)))
271 } else {
272 return fmt.Errorf("Platform_sdk_version cannot be pointed by a NULL pointer")
273 }
274 } else {
275 configurable.Platform_sdk_version_or_codename =
276 proptools.StringPtr(String(configurable.Platform_sdk_codename))
277 }
278
Liz Kammer09f947d2021-05-12 14:51:49 -0400279 return saveToBazelConfigFile(configurable, filepath.Dir(filename))
Colin Cross3f40fa42015-01-30 17:27:36 -0800280}
281
Colin Crossd8f20142016-11-03 09:43:26 -0700282// atomically writes the config file in case two copies of soong_build are running simultaneously
283// (for example, docs generation and ninja manifest generation)
Liz Kammer09f947d2021-05-12 14:51:49 -0400284func saveToConfigFile(config *productVariables, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800285 data, err := json.MarshalIndent(&config, "", " ")
286 if err != nil {
287 return fmt.Errorf("cannot marshal config data: %s", err.Error())
288 }
289
Colin Crossd8f20142016-11-03 09:43:26 -0700290 f, err := ioutil.TempFile(filepath.Dir(filename), "config")
Colin Cross3f40fa42015-01-30 17:27:36 -0800291 if err != nil {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500292 return fmt.Errorf("cannot create empty config file %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800293 }
Colin Crossd8f20142016-11-03 09:43:26 -0700294 defer os.Remove(f.Name())
295 defer f.Close()
Colin Cross3f40fa42015-01-30 17:27:36 -0800296
Colin Crossd8f20142016-11-03 09:43:26 -0700297 _, err = f.Write(data)
Colin Cross3f40fa42015-01-30 17:27:36 -0800298 if err != nil {
Colin Cross485e5722015-08-27 13:28:01 -0700299 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
300 }
301
Colin Crossd8f20142016-11-03 09:43:26 -0700302 _, err = f.WriteString("\n")
Colin Cross485e5722015-08-27 13:28:01 -0700303 if err != nil {
304 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800305 }
306
Colin Crossd8f20142016-11-03 09:43:26 -0700307 f.Close()
308 os.Rename(f.Name(), filename)
309
Colin Cross3f40fa42015-01-30 17:27:36 -0800310 return nil
311}
312
Liz Kammer09f947d2021-05-12 14:51:49 -0400313func saveToBazelConfigFile(config *productVariables, outDir string) error {
314 dir := filepath.Join(outDir, bazel.SoongInjectionDirName, "product_config")
315 err := createDirIfNonexistent(dir, os.ModePerm)
316 if err != nil {
317 return fmt.Errorf("Could not create dir %s: %s", dir, err)
318 }
319
Sam Delmerico5c32bbf2022-01-20 20:15:02 +0000320 nonArchVariantProductVariables := []string{}
321 archVariantProductVariables := []string{}
322 p := variableProperties{}
323 t := reflect.TypeOf(p.Product_variables)
324 for i := 0; i < t.NumField(); i++ {
325 f := t.Field(i)
326 nonArchVariantProductVariables = append(nonArchVariantProductVariables, strings.ToLower(f.Name))
327 if proptools.HasTag(f, "android", "arch_variant") {
328 archVariantProductVariables = append(archVariantProductVariables, strings.ToLower(f.Name))
329 }
330 }
331
Liz Kammer72beb342022-02-03 08:42:10 -0500332 nonArchVariantProductVariablesJson := starlark_fmt.PrintStringList(nonArchVariantProductVariables, 0)
Sam Delmerico5c32bbf2022-01-20 20:15:02 +0000333 if err != nil {
334 return fmt.Errorf("cannot marshal product variable data: %s", err.Error())
335 }
336
Liz Kammer72beb342022-02-03 08:42:10 -0500337 archVariantProductVariablesJson := starlark_fmt.PrintStringList(archVariantProductVariables, 0)
Sam Delmerico5c32bbf2022-01-20 20:15:02 +0000338 if err != nil {
339 return fmt.Errorf("cannot marshal arch variant product variable data: %s", err.Error())
340 }
341
342 configJson, err := json.MarshalIndent(&config, "", " ")
Liz Kammer09f947d2021-05-12 14:51:49 -0400343 if err != nil {
344 return fmt.Errorf("cannot marshal config data: %s", err.Error())
345 }
Cole Faust082c5f32022-08-04 15:49:20 -0700346 // The backslashes need to be escaped because this text is going to be put
347 // inside a Starlark string literal.
348 configJson = bytes.ReplaceAll(configJson, []byte("\\"), []byte("\\\\"))
Liz Kammer09f947d2021-05-12 14:51:49 -0400349
350 bzl := []string{
351 bazel.GeneratedBazelFileWarning,
Sam Delmerico5c32bbf2022-01-20 20:15:02 +0000352 fmt.Sprintf(`_product_vars = json.decode("""%s""")`, configJson),
353 fmt.Sprintf(`_product_var_constraints = %s`, nonArchVariantProductVariablesJson),
354 fmt.Sprintf(`_arch_variant_product_var_constraints = %s`, archVariantProductVariablesJson),
355 "\n", `
356product_vars = _product_vars
357product_var_constraints = _product_var_constraints
358arch_variant_product_var_constraints = _arch_variant_product_var_constraints
359`,
Liz Kammer09f947d2021-05-12 14:51:49 -0400360 }
Cole Faust082c5f32022-08-04 15:49:20 -0700361 err = os.WriteFile(filepath.Join(dir, "product_variables.bzl"), []byte(strings.Join(bzl, "\n")), 0644)
Liz Kammer09f947d2021-05-12 14:51:49 -0400362 if err != nil {
363 return fmt.Errorf("Could not write .bzl config file %s", err)
364 }
Cole Faust082c5f32022-08-04 15:49:20 -0700365 err = os.WriteFile(filepath.Join(dir, "BUILD"), []byte(bazel.GeneratedBazelFileWarning), 0644)
Liz Kammer09f947d2021-05-12 14:51:49 -0400366 if err != nil {
367 return fmt.Errorf("Could not write BUILD config file %s", err)
368 }
369
370 return nil
371}
372
Colin Cross988414c2020-01-11 01:11:46 +0000373// NullConfig returns a mostly empty Config for use by standalone tools like dexpreopt_gen that
374// use the android package.
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200375func NullConfig(outDir, soongOutDir string) Config {
Colin Cross988414c2020-01-11 01:11:46 +0000376 return Config{
377 config: &config{
Lukacs T. Berkid6cee7e2021-09-01 16:25:51 +0200378 outDir: outDir,
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200379 soongOutDir: soongOutDir,
380 fs: pathtools.OsFs,
Colin Cross988414c2020-01-11 01:11:46 +0000381 },
382 }
383}
384
Jingwen Chenc711fec2020-11-22 23:52:50 -0500385// NewConfig creates a new Config object. The srcDir argument specifies the path
386// to the root source directory. It also loads the config file, if found.
Chris Parsonsad876012022-08-20 14:48:32 -0400387func NewConfig(moduleListFile string, buildMode SoongBuildMode, runGoTests bool, outDir, soongOutDir string, availableEnv map[string]string) (Config, error) {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500388 // Make a config with default options.
Colin Cross9272ade2016-08-17 15:24:12 -0700389 config := &config{
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200390 ProductVariablesFileName: filepath.Join(soongOutDir, productVariablesFileName),
Dan Willemsen87b17d12015-07-14 00:39:06 -0700391
Lukacs T. Berki53b2f362021-04-12 14:04:24 +0200392 env: availableEnv,
Colin Cross6ccbc912017-10-10 23:07:38 -0700393
Lukacs T. Berkie1df43f2021-09-08 15:31:14 +0200394 outDir: outDir,
395 soongOutDir: soongOutDir,
396 runGoTests: runGoTests,
397 multilibConflicts: make(map[ArchType]bool),
Colin Cross98be1bb2019-12-13 20:41:13 -0800398
MarkDacekff851b82022-04-21 18:33:17 +0000399 moduleListFile: moduleListFile,
400 fs: pathtools.NewOsFs(absSrcDir),
401 mixedBuildDisabledModules: make(map[string]struct{}),
402 mixedBuildEnabledModules: make(map[string]struct{}),
Colin Cross68f55102015-03-25 14:43:57 -0700403 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800404
Dan Willemsen00269f22017-07-06 16:59:48 -0700405 config.deviceConfig = &deviceConfig{
Colin Cross9272ade2016-08-17 15:24:12 -0700406 config: config,
407 }
408
Liz Kammer7941b302020-07-28 13:27:34 -0700409 // Soundness check of the build and source directories. This won't catch strange
410 // configurations with symlinks, but at least checks the obvious case.
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200411 absBuildDir, err := filepath.Abs(soongOutDir)
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700412 if err != nil {
413 return Config{}, err
414 }
415
Lukacs T. Berkif7e36d82021-08-16 17:05:09 +0200416 absSrcDir, err := filepath.Abs(".")
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700417 if err != nil {
418 return Config{}, err
419 }
420
421 if strings.HasPrefix(absSrcDir, absBuildDir) {
422 return Config{}, fmt.Errorf("Build dir must not contain source directory")
423 }
424
Colin Cross3f40fa42015-01-30 17:27:36 -0800425 // Load any configurable options from the configuration file
Colin Cross9272ade2016-08-17 15:24:12 -0700426 err = loadConfig(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800427 if err != nil {
Colin Crossc3c0a492015-04-10 15:43:55 -0700428 return Config{}, err
Colin Cross3f40fa42015-01-30 17:27:36 -0800429 }
430
Lukacs T. Berki9f6c24a2021-08-26 15:07:24 +0200431 KatiEnabledMarkerFile := filepath.Join(soongOutDir, ".soong.kati_enabled")
Jingwen Chencda22c92020-11-23 00:22:30 -0500432 if _, err := os.Stat(absolutePath(KatiEnabledMarkerFile)); err == nil {
433 config.katiEnabled = true
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800434 }
435
Colin Cross0c66bc62021-07-20 09:47:41 -0700436 determineBuildOS(config)
437
Jingwen Chenc711fec2020-11-22 23:52:50 -0500438 // Sets up the map of target OSes to the finer grained compilation targets
439 // that are configured from the product variables.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700440 targets, err := decodeTargetProductVariables(config)
Dan Willemsen218f6562015-07-08 18:13:11 -0700441 if err != nil {
442 return Config{}, err
443 }
444
Paul Duffin1356d8c2020-02-25 19:26:33 +0000445 // Make the CommonOS OsType available for all products.
446 targets[CommonOS] = []Target{commonTargetMap[CommonOS.Name]}
447
Dan Albert4098deb2016-10-19 14:04:41 -0700448 var archConfig []archConfig
Jingwen Chenc4d91bc2020-11-24 22:59:26 -0500449 if config.NdkAbis() {
Dan Albert4098deb2016-10-19 14:04:41 -0700450 archConfig = getNdkAbisConfig()
Martin Stjernholmc1ecc432019-11-15 15:00:31 +0000451 } else if config.AmlAbis() {
452 archConfig = getAmlAbisConfig()
Dan Albert4098deb2016-10-19 14:04:41 -0700453 }
454
455 if archConfig != nil {
Liz Kammerb7f33662022-02-28 14:16:16 -0500456 androidTargets, err := decodeAndroidArchSettings(archConfig)
Dan Willemsen322acaf2016-01-12 23:07:05 -0800457 if err != nil {
458 return Config{}, err
459 }
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700460 targets[Android] = androidTargets
Dan Willemsen322acaf2016-01-12 23:07:05 -0800461 }
462
Colin Cross3b19f5d2019-09-17 14:45:31 -0700463 multilib := make(map[string]bool)
464 for _, target := range targets[Android] {
465 if seen := multilib[target.Arch.ArchType.Multilib]; seen {
466 config.multilibConflicts[target.Arch.ArchType] = true
467 }
468 multilib[target.Arch.ArchType.Multilib] = true
469 }
470
Jingwen Chenc711fec2020-11-22 23:52:50 -0500471 // Map of OS to compilation targets.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700472 config.Targets = targets
Jingwen Chenc711fec2020-11-22 23:52:50 -0500473
474 // Compilation targets for host tools.
Colin Cross0c66bc62021-07-20 09:47:41 -0700475 config.BuildOSTarget = config.Targets[config.BuildOS][0]
476 config.BuildOSCommonTarget = getCommonTargets(config.Targets[config.BuildOS])[0]
Jingwen Chenc711fec2020-11-22 23:52:50 -0500477
478 // Compilation targets for Android.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700479 if len(config.Targets[Android]) > 0 {
480 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Sam Delmericocc271e22022-06-01 15:45:02 +0000481 config.AndroidFirstDeviceTarget = FirstTarget(config.Targets[Android], "lib64", "lib32")[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700482 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700483
Chris Parsonsad876012022-08-20 14:48:32 -0400484 // Checking USE_BAZEL_ANALYSIS must be done here instead of in the caller, so
485 // that we can invoke IsEnvTrue (which also registers the env var as a
486 // dependency of the build).
487 // TODO(cparsons): Remove this hack once USE_BAZEL_ANALYSIS is removed.
488 if buildMode == AnalysisNoBazel && config.IsEnvTrue("USE_BAZEL_ANALYSIS") {
489 buildMode = BazelDevMode
490 }
491
492 config.BuildMode = buildMode
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400493 config.BazelContext, err = NewBazelContext(config)
Chris Parsonsad876012022-08-20 14:48:32 -0400494 config.bp2buildPackageConfig = GetBp2BuildAllowList()
Colin Cross3f40fa42015-01-30 17:27:36 -0800495
Jingwen Chenc711fec2020-11-22 23:52:50 -0500496 return Config{config}, err
497}
Colin Cross988414c2020-01-11 01:11:46 +0000498
Colin Cross98be1bb2019-12-13 20:41:13 -0800499// mockFileSystem replaces all reads with accesses to the provided map of
500// filenames to contents stored as a byte slice.
501func (c *config) mockFileSystem(bp string, fs map[string][]byte) {
502 mockFS := map[string][]byte{}
503
504 if _, exists := mockFS["Android.bp"]; !exists {
505 mockFS["Android.bp"] = []byte(bp)
506 }
507
508 for k, v := range fs {
509 mockFS[k] = v
510 }
511
512 // no module list file specified; find every file named Blueprints or Android.bp
513 pathsToParse := []string{}
514 for candidate := range mockFS {
515 base := filepath.Base(candidate)
Lukacs T. Berkib838b0a2021-09-02 11:46:24 +0200516 if base == "Android.bp" {
Colin Cross98be1bb2019-12-13 20:41:13 -0800517 pathsToParse = append(pathsToParse, candidate)
518 }
519 }
520 if len(pathsToParse) < 1 {
521 panic(fmt.Sprintf("No Blueprint or Android.bp files found in mock filesystem: %v\n", mockFS))
522 }
523 mockFS[blueprint.MockModuleListFile] = []byte(strings.Join(pathsToParse, "\n"))
524
525 c.fs = pathtools.MockFs(mockFS)
526 c.mockBpList = blueprint.MockModuleListFile
527}
528
Chris Parsonsad876012022-08-20 14:48:32 -0400529// Returns true if "Bazel builds" is enabled. In this mode, part of build
530// analysis is handled by Bazel.
531func (c *config) IsMixedBuildsEnabled() bool {
532 return c.BuildMode == BazelProdMode || c.BuildMode == BazelDevMode
533}
534
Lukacs T. Berkid1e3f1f2021-03-16 08:55:23 +0100535func (c *config) SetAllowMissingDependencies() {
536 c.productVariables.Allow_missing_dependencies = proptools.BoolPtr(true)
537}
538
Jingwen Chenc711fec2020-11-22 23:52:50 -0500539// BlueprintToolLocation returns the directory containing build system tools
540// from Blueprint, like soong_zip and merge_zips.
Lukacs T. Berkia806e412021-09-01 08:57:48 +0200541func (c *config) HostToolDir() string {
Colin Crossacfcc1f2021-10-25 15:40:32 -0700542 if c.KatiEnabled() {
543 return filepath.Join(c.outDir, "host", c.PrebuiltOS(), "bin")
544 } else {
545 return filepath.Join(c.soongOutDir, "host", c.PrebuiltOS(), "bin")
546 }
Dan Willemsenc2aa4a92016-05-26 15:13:03 -0700547}
548
Dan Willemsen60e62f02018-11-16 21:05:32 -0800549func (c *config) HostToolPath(ctx PathContext, tool string) Path {
Colin Cross790ef352021-10-25 19:15:55 -0700550 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "bin", false, tool)
551 return path
Dan Willemsen60e62f02018-11-16 21:05:32 -0800552}
553
Colin Cross790ef352021-10-25 19:15:55 -0700554func (c *config) HostJNIToolPath(ctx PathContext, lib string) Path {
Martin Stjernholm7260d062019-12-09 21:47:14 +0000555 ext := ".so"
556 if runtime.GOOS == "darwin" {
557 ext = ".dylib"
558 }
Colin Cross790ef352021-10-25 19:15:55 -0700559 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "lib64", false, lib+ext)
560 return path
Martin Stjernholm7260d062019-12-09 21:47:14 +0000561}
562
Colin Crossae5330a2021-11-03 13:31:22 -0700563func (c *config) HostJavaToolPath(ctx PathContext, tool string) Path {
564 path := pathForInstall(ctx, ctx.Config().BuildOS, ctx.Config().BuildArch, "framework", false, tool)
Colin Cross3e3eda62021-11-04 10:22:51 -0700565 return path
566}
567
Jingwen Chenc711fec2020-11-22 23:52:50 -0500568// PrebuiltOS returns the name of the host OS used in prebuilts directories.
Colin Cross1332b002015-04-07 17:11:30 -0700569func (c *config) PrebuiltOS() string {
Colin Cross3f40fa42015-01-30 17:27:36 -0800570 switch runtime.GOOS {
571 case "linux":
572 return "linux-x86"
573 case "darwin":
574 return "darwin-x86"
575 default:
576 panic("Unknown GOOS")
577 }
578}
579
580// GoRoot returns the path to the root directory of the Go toolchain.
Colin Cross1332b002015-04-07 17:11:30 -0700581func (c *config) GoRoot() string {
Lukacs T. Berkif7e36d82021-08-16 17:05:09 +0200582 return fmt.Sprintf("prebuilts/go/%s", c.PrebuiltOS())
Colin Cross3f40fa42015-01-30 17:27:36 -0800583}
584
Jingwen Chenc711fec2020-11-22 23:52:50 -0500585// PrebuiltBuildTool returns the path to a tool in the prebuilts directory containing
586// checked-in tools, like Kati, Ninja or Toybox, for the current host OS.
Dan Willemsen4e0aa232019-04-10 22:59:54 -0700587func (c *config) PrebuiltBuildTool(ctx PathContext, tool string) Path {
588 return PathForSource(ctx, "prebuilts/build-tools", c.PrebuiltOS(), "bin", tool)
589}
590
Jingwen Chenc711fec2020-11-22 23:52:50 -0500591// CpPreserveSymlinksFlags returns the host-specific flag for the cp(1) command
592// to preserve symlinks.
Colin Cross1332b002015-04-07 17:11:30 -0700593func (c *config) CpPreserveSymlinksFlags() string {
Colin Cross485e5722015-08-27 13:28:01 -0700594 switch runtime.GOOS {
Colin Cross3f40fa42015-01-30 17:27:36 -0800595 case "darwin":
596 return "-R"
597 case "linux":
598 return "-d"
599 default:
600 return ""
601 }
602}
Colin Cross68f55102015-03-25 14:43:57 -0700603
Colin Cross1332b002015-04-07 17:11:30 -0700604func (c *config) Getenv(key string) string {
Colin Cross68f55102015-03-25 14:43:57 -0700605 var val string
606 var exists bool
Colin Crossc1e86a32015-04-15 12:33:28 -0700607 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800608 defer c.envLock.Unlock()
609 if c.envDeps == nil {
610 c.envDeps = make(map[string]string)
611 }
Colin Cross68f55102015-03-25 14:43:57 -0700612 if val, exists = c.envDeps[key]; !exists {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700613 if c.envFrozen {
614 panic("Cannot access new environment variables after envdeps are frozen")
615 }
Colin Cross6ccbc912017-10-10 23:07:38 -0700616 val, _ = c.env[key]
Colin Cross68f55102015-03-25 14:43:57 -0700617 c.envDeps[key] = val
618 }
619 return val
620}
621
Colin Cross99d7c232016-11-23 16:52:04 -0800622func (c *config) GetenvWithDefault(key string, defaultValue string) string {
623 ret := c.Getenv(key)
624 if ret == "" {
625 return defaultValue
626 }
627 return ret
628}
629
630func (c *config) IsEnvTrue(key string) bool {
631 value := c.Getenv(key)
632 return value == "1" || value == "y" || value == "yes" || value == "on" || value == "true"
633}
634
635func (c *config) IsEnvFalse(key string) bool {
636 value := c.Getenv(key)
637 return value == "0" || value == "n" || value == "no" || value == "off" || value == "false"
638}
639
Sorin Bascace720c32022-05-24 12:13:50 +0100640func (c *config) TargetsJava17() bool {
641 return c.IsEnvTrue("EXPERIMENTAL_TARGET_JAVA_VERSION_17")
642}
643
Jingwen Chenc711fec2020-11-22 23:52:50 -0500644// EnvDeps returns the environment variables this build depends on. The first
645// call to this function blocks future reads from the environment.
Colin Cross1332b002015-04-07 17:11:30 -0700646func (c *config) EnvDeps() map[string]string {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700647 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800648 defer c.envLock.Unlock()
Dan Willemsene7680ba2015-09-11 17:06:19 -0700649 c.envFrozen = true
Colin Cross68f55102015-03-25 14:43:57 -0700650 return c.envDeps
651}
Colin Cross35cec122015-04-02 14:37:16 -0700652
Jingwen Chencda22c92020-11-23 00:22:30 -0500653func (c *config) KatiEnabled() bool {
654 return c.katiEnabled
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800655}
656
Nan Zhang581fd212018-01-10 16:06:12 -0800657func (c *config) BuildId() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800658 return String(c.productVariables.BuildId)
Nan Zhang581fd212018-01-10 16:06:12 -0800659}
660
Jingwen Chenc711fec2020-11-22 23:52:50 -0500661// BuildNumberFile returns the path to a text file containing metadata
662// representing the current build's number.
663//
664// Rules that want to reference the build number should read from this file
665// without depending on it. They will run whenever their other dependencies
666// require them to run and get the current build number. This ensures they don't
667// rebuild on every incremental build when the build number changes.
Colin Cross2a2e0db2020-02-21 16:55:46 -0800668func (c *config) BuildNumberFile(ctx PathContext) Path {
669 return PathForOutput(ctx, String(c.productVariables.BuildNumberFile))
Nan Zhang581fd212018-01-10 16:06:12 -0800670}
671
Jingwen Chenc711fec2020-11-22 23:52:50 -0500672// DeviceName returns the name of the current device target.
Colin Cross35cec122015-04-02 14:37:16 -0700673// TODO: take an AndroidModuleContext to select the device name for multi-device builds
Colin Cross1332b002015-04-07 17:11:30 -0700674func (c *config) DeviceName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800675 return *c.productVariables.DeviceName
Colin Cross35cec122015-04-02 14:37:16 -0700676}
677
Trevor Radcliffe90727f42022-03-21 19:34:02 +0000678// DeviceProduct returns the current product target. There could be multiple of
679// these per device type.
680//
681// NOTE: Do not base conditional logic on this value. It may break product
Liz Kammer7ec40cc2022-07-29 10:44:23 -0400682//
683// inheritance.
Trevor Radcliffe90727f42022-03-21 19:34:02 +0000684func (c *config) DeviceProduct() string {
685 return *c.productVariables.DeviceProduct
686}
687
Anton Hansson53c88442019-03-18 15:53:16 +0000688func (c *config) DeviceResourceOverlays() []string {
689 return c.productVariables.DeviceResourceOverlays
690}
691
692func (c *config) ProductResourceOverlays() []string {
693 return c.productVariables.ProductResourceOverlays
Colin Cross30e076a2015-04-13 13:58:27 -0700694}
695
Colin Crossbfd347d2018-05-09 11:11:35 -0700696func (c *config) PlatformVersionName() string {
697 return String(c.productVariables.Platform_version_name)
698}
699
Dan Albert4f378d72020-07-23 17:32:15 -0700700func (c *config) PlatformSdkVersion() ApiLevel {
701 return uncheckedFinalApiLevel(*c.productVariables.Platform_sdk_version)
Colin Cross30e076a2015-04-13 13:58:27 -0700702}
703
Mu-Le Lee5e047532022-07-27 02:32:03 +0000704func (c *config) PlatformSdkFinal() bool {
705 return Bool(c.productVariables.Platform_sdk_final)
706}
707
Colin Crossd09b0b62018-04-18 11:06:47 -0700708func (c *config) PlatformSdkCodename() string {
709 return String(c.productVariables.Platform_sdk_codename)
710}
711
Anton Hansson97d0bae2022-02-16 16:15:10 +0000712func (c *config) PlatformSdkExtensionVersion() int {
713 return *c.productVariables.Platform_sdk_extension_version
714}
715
716func (c *config) PlatformBaseSdkExtensionVersion() int {
717 return *c.productVariables.Platform_base_sdk_extension_version
718}
719
Colin Cross092c9da2019-04-02 22:56:43 -0700720func (c *config) PlatformSecurityPatch() string {
721 return String(c.productVariables.Platform_security_patch)
722}
723
724func (c *config) PlatformPreviewSdkVersion() string {
725 return String(c.productVariables.Platform_preview_sdk_version)
726}
727
728func (c *config) PlatformMinSupportedTargetSdkVersion() string {
729 return String(c.productVariables.Platform_min_supported_target_sdk_version)
730}
731
732func (c *config) PlatformBaseOS() string {
733 return String(c.productVariables.Platform_base_os)
734}
735
Inseob Kim4f1f3d92022-04-25 18:23:58 +0900736func (c *config) PlatformVersionLastStable() string {
737 return String(c.productVariables.Platform_version_last_stable)
738}
739
Jiyong Park37073842022-06-21 10:13:42 +0900740func (c *config) PlatformVersionKnownCodenames() string {
741 return String(c.productVariables.Platform_version_known_codenames)
742}
743
Dan Albert1a246272020-07-06 14:49:35 -0700744func (c *config) MinSupportedSdkVersion() ApiLevel {
Dan Albert6bfb6bb2022-08-17 20:11:57 +0000745 return uncheckedFinalApiLevel(21)
Dan Albert1a246272020-07-06 14:49:35 -0700746}
747
748func (c *config) FinalApiLevels() []ApiLevel {
749 var levels []ApiLevel
Dan Albert4f378d72020-07-23 17:32:15 -0700750 for i := 1; i <= c.PlatformSdkVersion().FinalOrFutureInt(); i++ {
Dan Albert1a246272020-07-06 14:49:35 -0700751 levels = append(levels, uncheckedFinalApiLevel(i))
752 }
753 return levels
754}
755
756func (c *config) PreviewApiLevels() []ApiLevel {
757 var levels []ApiLevel
758 for i, codename := range c.PlatformVersionActiveCodenames() {
759 levels = append(levels, ApiLevel{
760 value: codename,
761 number: i,
762 isPreview: true,
763 })
764 }
765 return levels
766}
767
satayevcca4ab72021-11-30 12:33:55 +0000768func (c *config) LatestPreviewApiLevel() ApiLevel {
769 level := NoneApiLevel
770 for _, l := range c.PreviewApiLevels() {
771 if l.GreaterThan(level) {
772 level = l
773 }
774 }
775 return level
776}
777
Dan Albert1a246272020-07-06 14:49:35 -0700778func (c *config) AllSupportedApiLevels() []ApiLevel {
779 var levels []ApiLevel
780 levels = append(levels, c.FinalApiLevels()...)
781 return append(levels, c.PreviewApiLevels()...)
Dan Albertf5415d72017-08-17 16:19:59 -0700782}
783
Jingwen Chenc711fec2020-11-22 23:52:50 -0500784// DefaultAppTargetSdk returns the API level that platform apps are targeting.
785// This converts a codename to the exact ApiLevel it represents.
Dan Albert4f378d72020-07-23 17:32:15 -0700786func (c *config) DefaultAppTargetSdk(ctx EarlyModuleContext) ApiLevel {
Colin Crossd09b0b62018-04-18 11:06:47 -0700787 if Bool(c.productVariables.Platform_sdk_final) {
788 return c.PlatformSdkVersion()
Colin Crossd09b0b62018-04-18 11:06:47 -0700789 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500790 codename := c.PlatformSdkCodename()
791 if codename == "" {
792 return NoneApiLevel
793 }
794 if codename == "REL" {
795 panic("Platform_sdk_codename should not be REL when Platform_sdk_final is true")
796 }
797 return ApiLevelOrPanic(ctx, codename)
Colin Crossd09b0b62018-04-18 11:06:47 -0700798}
799
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800800func (c *config) AppsDefaultVersionName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800801 return String(c.productVariables.AppsDefaultVersionName)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800802}
803
Dan Albert31384de2017-07-28 12:39:46 -0700804// Codenames that are active in the current lunch target.
805func (c *config) PlatformVersionActiveCodenames() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800806 return c.productVariables.Platform_version_active_codenames
Dan Albert31384de2017-07-28 12:39:46 -0700807}
808
Colin Crossface4e42017-10-30 17:32:15 -0700809func (c *config) ProductAAPTConfig() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800810 return c.productVariables.AAPTConfig
Colin Cross30e076a2015-04-13 13:58:27 -0700811}
812
Colin Crossface4e42017-10-30 17:32:15 -0700813func (c *config) ProductAAPTPreferredConfig() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800814 return String(c.productVariables.AAPTPreferredConfig)
Colin Cross30e076a2015-04-13 13:58:27 -0700815}
816
Colin Crossface4e42017-10-30 17:32:15 -0700817func (c *config) ProductAAPTCharacteristics() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800818 return String(c.productVariables.AAPTCharacteristics)
Colin Crossface4e42017-10-30 17:32:15 -0700819}
820
821func (c *config) ProductAAPTPrebuiltDPI() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800822 return c.productVariables.AAPTPrebuiltDPI
Colin Cross30e076a2015-04-13 13:58:27 -0700823}
824
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700825func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800826 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800827 if defaultCert != "" {
828 return PathForSource(ctx, filepath.Dir(defaultCert))
Colin Cross61ae0b72017-12-01 17:16:02 -0800829 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500830 return PathForSource(ctx, "build/make/target/product/security")
Colin Cross30e076a2015-04-13 13:58:27 -0700831}
832
Colin Crosse1731a52017-12-14 11:22:55 -0800833func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800834 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800835 if defaultCert != "" {
Colin Crosse1731a52017-12-14 11:22:55 -0800836 return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8")
Colin Cross61ae0b72017-12-01 17:16:02 -0800837 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500838 defaultDir := c.DefaultAppCertificateDir(ctx)
839 return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8")
Colin Cross30e076a2015-04-13 13:58:27 -0700840}
Colin Cross6ff51382015-12-17 16:39:19 -0800841
Jiyong Park9335a262018-12-24 11:31:58 +0900842func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
843 // TODO(b/121224311): define another variable such as TARGET_APEX_KEY_OVERRIDE
844 defaultCert := String(c.productVariables.DefaultAppCertificate)
Dan Willemsen412160e2019-04-09 21:36:26 -0700845 if defaultCert == "" || filepath.Dir(defaultCert) == "build/make/target/product/security" {
Jiyong Park9335a262018-12-24 11:31:58 +0900846 // When defaultCert is unset or is set to the testkeys path, use the APEX keys
847 // that is under the module dir
Colin Cross07e51612019-03-05 12:46:40 -0800848 return pathForModuleSrc(ctx)
Jiyong Park9335a262018-12-24 11:31:58 +0900849 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500850 // If not, APEX keys are under the specified directory
851 return PathForSource(ctx, filepath.Dir(defaultCert))
Jiyong Park9335a262018-12-24 11:31:58 +0900852}
853
Inseob Kim80fa7982022-08-12 21:36:25 +0900854// Certificate for the NetworkStack sepolicy context
855func (c *config) MainlineSepolicyDevCertificatesDir(ctx ModuleContext) SourcePath {
856 cert := String(c.productVariables.MainlineSepolicyDevCertificates)
857 if cert != "" {
858 return PathForSource(ctx, cert)
859 }
860 return c.DefaultAppCertificateDir(ctx)
861}
862
Jingwen Chenc711fec2020-11-22 23:52:50 -0500863// AllowMissingDependencies configures Blueprint/Soong to not fail when modules
864// are configured to depend on non-existent modules. Note that this does not
865// affect missing input dependencies at the Ninja level.
Colin Cross6ff51382015-12-17 16:39:19 -0800866func (c *config) AllowMissingDependencies() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800867 return Bool(c.productVariables.Allow_missing_dependencies)
Colin Cross6ff51382015-12-17 16:39:19 -0800868}
Dan Willemsen322acaf2016-01-12 23:07:05 -0800869
Jeongik Cha816a23a2020-07-08 01:09:23 +0900870// Returns true if a full platform source tree cannot be assumed.
Colin Crossfc3674a2017-09-18 17:41:52 -0700871func (c *config) UnbundledBuild() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800872 return Bool(c.productVariables.Unbundled_build)
Colin Crossfc3674a2017-09-18 17:41:52 -0700873}
874
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100875// Returns true if building apps that aren't bundled with the platform.
876// UnbundledBuild() is always true when this is true.
877func (c *config) UnbundledBuildApps() bool {
Cole Faust701ca252021-11-23 19:02:08 -0800878 return len(c.productVariables.Unbundled_build_apps) > 0
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100879}
880
Jeongik Cha4b073cd2021-06-08 11:35:00 +0900881// Returns true if building image that aren't bundled with the platform.
882// UnbundledBuild() is always true when this is true.
883func (c *config) UnbundledBuildImage() bool {
884 return Bool(c.productVariables.Unbundled_build_image)
885}
886
Jeongik Cha816a23a2020-07-08 01:09:23 +0900887// Returns true if building modules against prebuilt SDKs.
888func (c *config) AlwaysUsePrebuiltSdks() bool {
889 return Bool(c.productVariables.Always_use_prebuilt_sdks)
Colin Cross1f367bf2018-12-18 22:46:24 -0800890}
891
Colin Cross126a25c2017-10-31 13:55:34 -0700892func (c *config) MinimizeJavaDebugInfo() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800893 return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng)
Colin Cross126a25c2017-10-31 13:55:34 -0700894}
895
Colin Crossed064c02018-09-05 16:28:13 -0700896func (c *config) Debuggable() bool {
897 return Bool(c.productVariables.Debuggable)
898}
899
Jaewoong Jung1d6eb682018-11-29 15:08:44 -0800900func (c *config) Eng() bool {
901 return Bool(c.productVariables.Eng)
902}
903
Colin Crossc53c37f2021-12-08 15:42:22 -0800904// DevicePrimaryArchType returns the ArchType for the first configured device architecture, or
905// Common if there are no device architectures.
Jiyong Park8d52f862018-07-07 18:02:07 +0900906func (c *config) DevicePrimaryArchType() ArchType {
Colin Crossc53c37f2021-12-08 15:42:22 -0800907 if androidTargets := c.Targets[Android]; len(androidTargets) > 0 {
908 return androidTargets[0].Arch.ArchType
909 }
910 return Common
Jiyong Park8d52f862018-07-07 18:02:07 +0900911}
912
Colin Cross16b23492016-01-06 14:41:07 -0800913func (c *config) SanitizeHost() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800914 return append([]string(nil), c.productVariables.SanitizeHost...)
Colin Cross16b23492016-01-06 14:41:07 -0800915}
916
917func (c *config) SanitizeDevice() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800918 return append([]string(nil), c.productVariables.SanitizeDevice...)
Colin Cross23ae82a2016-11-02 14:34:39 -0700919}
920
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700921func (c *config) SanitizeDeviceDiag() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800922 return append([]string(nil), c.productVariables.SanitizeDeviceDiag...)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700923}
924
Colin Cross23ae82a2016-11-02 14:34:39 -0700925func (c *config) SanitizeDeviceArch() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800926 return append([]string(nil), c.productVariables.SanitizeDeviceArch...)
Colin Cross16b23492016-01-06 14:41:07 -0800927}
Colin Crossa1ad8d12016-06-01 17:09:44 -0700928
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800929func (c *config) EnableCFI() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800930 if c.productVariables.EnableCFI == nil {
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800931 return true
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800932 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500933 return *c.productVariables.EnableCFI
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800934}
935
Kostya Kortchinskyd5275c82019-02-01 08:42:56 -0800936func (c *config) DisableScudo() bool {
937 return Bool(c.productVariables.DisableScudo)
938}
939
Colin Crossa1ad8d12016-06-01 17:09:44 -0700940func (c *config) Android64() bool {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700941 for _, t := range c.Targets[Android] {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700942 if t.Arch.ArchType.Multilib == "lib64" {
943 return true
944 }
945 }
946
947 return false
948}
Colin Cross9272ade2016-08-17 15:24:12 -0700949
Colin Cross9d45bb72016-08-29 16:14:13 -0700950func (c *config) UseGoma() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800951 return Bool(c.productVariables.UseGoma)
Colin Cross9d45bb72016-08-29 16:14:13 -0700952}
953
Ramy Medhatbbf25672019-07-17 12:30:04 +0000954func (c *config) UseRBE() bool {
955 return Bool(c.productVariables.UseRBE)
956}
957
Ramy Medhat8ea054a2020-01-27 14:19:44 -0500958func (c *config) UseRBEJAVAC() bool {
959 return Bool(c.productVariables.UseRBEJAVAC)
960}
961
962func (c *config) UseRBER8() bool {
963 return Bool(c.productVariables.UseRBER8)
964}
965
966func (c *config) UseRBED8() bool {
967 return Bool(c.productVariables.UseRBED8)
968}
969
Colin Cross8b8bec32019-11-15 13:18:43 -0800970func (c *config) UseRemoteBuild() bool {
971 return c.UseGoma() || c.UseRBE()
972}
973
Colin Cross66548102018-06-19 22:47:35 -0700974func (c *config) RunErrorProne() bool {
975 return c.IsEnvTrue("RUN_ERROR_PRONE")
976}
977
Jingwen Chenc711fec2020-11-22 23:52:50 -0500978// XrefCorpusName returns the Kythe cross-reference corpus name.
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800979func (c *config) XrefCorpusName() string {
980 return c.Getenv("XREF_CORPUS")
981}
982
Jingwen Chenc711fec2020-11-22 23:52:50 -0500983// XrefCuEncoding returns the compilation unit encoding to use for Kythe code
984// xrefs. Can be 'json' (default), 'proto' or 'all'.
Sasha Smundak6c2d4f92020-01-09 17:34:23 -0800985func (c *config) XrefCuEncoding() string {
986 if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" {
987 return enc
988 }
989 return "json"
990}
991
Sasha Smundakb0addaf2021-02-16 10:39:40 -0800992// XrefCuJavaSourceMax returns the maximum number of the Java source files
993// in a single compilation unit
994const xrefJavaSourceFileMaxDefault = "1000"
995
996func (c Config) XrefCuJavaSourceMax() string {
997 v := c.Getenv("KYTHE_JAVA_SOURCE_BATCH_SIZE")
998 if v == "" {
999 return xrefJavaSourceFileMaxDefault
1000 }
1001 if _, err := strconv.ParseUint(v, 0, 0); err != nil {
1002 fmt.Fprintf(os.Stderr,
1003 "bad KYTHE_JAVA_SOURCE_BATCH_SIZE value: %s, will use %s",
1004 err, xrefJavaSourceFileMaxDefault)
1005 return xrefJavaSourceFileMaxDefault
1006 }
1007 return v
1008
1009}
1010
Sasha Smundak2a4549e2018-11-05 16:49:08 -08001011func (c *config) EmitXrefRules() bool {
1012 return c.XrefCorpusName() != ""
1013}
1014
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001015func (c *config) ClangTidy() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001016 return Bool(c.productVariables.ClangTidy)
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001017}
1018
1019func (c *config) TidyChecks() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001020 if c.productVariables.TidyChecks == nil {
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001021 return ""
1022 }
Dan Willemsen45133ac2018-03-09 21:22:06 -08001023 return *c.productVariables.TidyChecks
Dan Willemsena03cf6d2016-09-26 15:45:04 -07001024}
1025
Colin Cross0f4e0d62016-07-27 10:56:55 -07001026func (c *config) LibartImgHostBaseAddress() string {
1027 return "0x60000000"
1028}
1029
1030func (c *config) LibartImgDeviceBaseAddress() string {
Elliott Hughesda3a0712020-03-06 16:55:28 -08001031 return "0x70000000"
Colin Cross0f4e0d62016-07-27 10:56:55 -07001032}
1033
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -08001034func (c *config) ArtUseReadBarrier() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001035 return Bool(c.productVariables.ArtUseReadBarrier)
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -08001036}
1037
Jingwen Chenc711fec2020-11-22 23:52:50 -05001038// Enforce Runtime Resource Overlays for a module. RROs supersede static RROs,
1039// but some modules still depend on it.
1040//
1041// More info: https://source.android.com/devices/architecture/rros
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001042func (c *config) EnforceRROForModule(name string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001043 enforceList := c.productVariables.EnforceRROTargets
Jeongik Chacee5ba92021-02-19 12:11:51 +09001044
Roland Levillainf6cc2612020-07-09 16:58:14 +01001045 if len(enforceList) > 0 {
Yo Chiang4ebd06a2019-10-01 13:13:41 +08001046 if InList("*", enforceList) {
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001047 return true
1048 }
Colin Crossa74ca042019-01-31 14:31:51 -08001049 return InList(name, enforceList)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001050 }
1051 return false
1052}
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001053func (c *config) EnforceRROExcludedOverlay(path string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001054 excluded := c.productVariables.EnforceRROExcludedOverlays
Roland Levillainf6cc2612020-07-09 16:58:14 +01001055 if len(excluded) > 0 {
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001056 return HasAnyPrefix(path, excluded)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001057 }
1058 return false
1059}
1060
1061func (c *config) ExportedNamespaces() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001062 return append([]string(nil), c.productVariables.NamespacesToExport...)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001063}
1064
1065func (c *config) HostStaticBinaries() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001066 return Bool(c.productVariables.HostStaticBinaries)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001067}
1068
Colin Cross5a0dcd52018-10-05 14:20:06 -07001069func (c *config) UncompressPrivAppDex() bool {
1070 return Bool(c.productVariables.UncompressPrivAppDex)
1071}
1072
1073func (c *config) ModulesLoadedByPrivilegedModules() []string {
1074 return c.productVariables.ModulesLoadedByPrivilegedModules
1075}
1076
Jingwen Chenc711fec2020-11-22 23:52:50 -05001077// DexpreoptGlobalConfigPath returns the path to the dexpreopt.config file in
1078// the output directory, if it was created during the product configuration
1079// phase by Kati.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001080func (c *config) DexpreoptGlobalConfigPath(ctx PathContext) OptionalPath {
Colin Cross988414c2020-01-11 01:11:46 +00001081 if c.productVariables.DexpreoptGlobalConfig == nil {
Jingwen Chenebb0b572020-11-02 00:24:57 -05001082 return OptionalPathForPath(nil)
1083 }
1084 return OptionalPathForPath(
1085 pathForBuildToolDep(ctx, *c.productVariables.DexpreoptGlobalConfig))
1086}
1087
Jingwen Chenc711fec2020-11-22 23:52:50 -05001088// DexpreoptGlobalConfig returns the raw byte contents of the dexpreopt global
1089// configuration. Since the configuration file was created by Kati during
1090// product configuration (externally of soong_build), it's not tracked, so we
1091// also manually add a Ninja file dependency on the configuration file to the
1092// rule that creates the main build.ninja file. This ensures that build.ninja is
1093// regenerated correctly if dexpreopt.config changes.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001094func (c *config) DexpreoptGlobalConfig(ctx PathContext) ([]byte, error) {
1095 path := c.DexpreoptGlobalConfigPath(ctx)
1096 if !path.Valid() {
Colin Cross988414c2020-01-11 01:11:46 +00001097 return nil, nil
1098 }
Jingwen Chenebb0b572020-11-02 00:24:57 -05001099 ctx.AddNinjaFileDeps(path.String())
1100 return ioutil.ReadFile(absolutePath(path.String()))
Colin Cross43f08db2018-11-12 10:13:39 -08001101}
1102
Inseob Kim7b85eeb2021-03-23 20:52:24 +09001103func (c *deviceConfig) WithDexpreopt() bool {
1104 return c.config.productVariables.WithDexpreopt
1105}
1106
David Brazdil91b4e3e2019-01-23 21:04:05 +00001107func (c *config) FrameworksBaseDirExists(ctx PathContext) bool {
Colin Cross5a756a62021-03-16 16:34:46 -07001108 return ExistentPathForSource(ctx, "frameworks", "base", "Android.bp").Valid()
David Brazdil91b4e3e2019-01-23 21:04:05 +00001109}
1110
Inseob Kimae553032019-05-14 18:52:49 +09001111func (c *config) VndkSnapshotBuildArtifacts() bool {
1112 return Bool(c.productVariables.VndkSnapshotBuildArtifacts)
1113}
1114
Colin Cross3b19f5d2019-09-17 14:45:31 -07001115func (c *config) HasMultilibConflict(arch ArchType) bool {
1116 return c.multilibConflicts[arch]
1117}
1118
Bill Peckhambae47492021-01-08 09:34:44 -08001119func (c *config) PrebuiltHiddenApiDir(ctx PathContext) string {
1120 return String(c.productVariables.PrebuiltHiddenApiDir)
1121}
1122
Colin Cross9272ade2016-08-17 15:24:12 -07001123func (c *deviceConfig) Arches() []Arch {
1124 var arches []Arch
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001125 for _, target := range c.config.Targets[Android] {
Colin Cross9272ade2016-08-17 15:24:12 -07001126 arches = append(arches, target.Arch)
1127 }
1128 return arches
1129}
Dan Willemsend2ede872016-11-18 14:54:24 -08001130
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001131func (c *deviceConfig) BinderBitness() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001132 is32BitBinder := c.config.productVariables.Binder32bit
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001133 if is32BitBinder != nil && *is32BitBinder {
1134 return "32"
1135 }
1136 return "64"
1137}
1138
Dan Willemsen4353bc42016-12-05 17:16:02 -08001139func (c *deviceConfig) VendorPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001140 if c.config.productVariables.VendorPath != nil {
1141 return *c.config.productVariables.VendorPath
Dan Willemsen4353bc42016-12-05 17:16:02 -08001142 }
1143 return "vendor"
1144}
1145
Justin Yun71549282017-11-17 12:10:28 +09001146func (c *deviceConfig) VndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001147 return String(c.config.productVariables.DeviceVndkVersion)
Justin Yun71549282017-11-17 12:10:28 +09001148}
1149
Jose Galmes6f843bc2020-12-11 13:36:29 -08001150func (c *deviceConfig) RecoverySnapshotVersion() string {
1151 return String(c.config.productVariables.RecoverySnapshotVersion)
1152}
1153
Jeongik Cha219141c2020-08-06 23:00:37 +09001154func (c *deviceConfig) CurrentApiLevelForVendorModules() string {
1155 return StringDefault(c.config.productVariables.DeviceCurrentApiLevelForVendorModules, "current")
1156}
1157
Justin Yun8fe12122017-12-07 17:18:15 +09001158func (c *deviceConfig) PlatformVndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001159 return String(c.config.productVariables.Platform_vndk_version)
Justin Yun8fe12122017-12-07 17:18:15 +09001160}
1161
Justin Yun5f7f7e82019-11-18 19:52:14 +09001162func (c *deviceConfig) ProductVndkVersion() string {
1163 return String(c.config.productVariables.ProductVndkVersion)
1164}
1165
Justin Yun71549282017-11-17 12:10:28 +09001166func (c *deviceConfig) ExtraVndkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001167 return c.config.productVariables.ExtraVndkVersions
Dan Willemsend2ede872016-11-18 14:54:24 -08001168}
Jack He8cc71432016-12-08 15:45:07 -08001169
Vic Yangefd249e2018-11-12 20:19:56 -08001170func (c *deviceConfig) VndkUseCoreVariant() bool {
1171 return Bool(c.config.productVariables.VndkUseCoreVariant)
1172}
1173
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001174func (c *deviceConfig) SystemSdkVersions() []string {
Colin Crossa74ca042019-01-31 14:31:51 -08001175 return c.config.productVariables.DeviceSystemSdkVersions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001176}
1177
1178func (c *deviceConfig) PlatformSystemSdkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001179 return c.config.productVariables.Platform_systemsdk_versions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001180}
1181
Jiyong Park2db76922017-11-08 16:03:48 +09001182func (c *deviceConfig) OdmPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001183 if c.config.productVariables.OdmPath != nil {
1184 return *c.config.productVariables.OdmPath
Jiyong Park2db76922017-11-08 16:03:48 +09001185 }
1186 return "odm"
1187}
1188
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001189func (c *deviceConfig) ProductPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001190 if c.config.productVariables.ProductPath != nil {
1191 return *c.config.productVariables.ProductPath
Jiyong Park2db76922017-11-08 16:03:48 +09001192 }
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001193 return "product"
Jiyong Park2db76922017-11-08 16:03:48 +09001194}
1195
Justin Yund5f6c822019-06-25 16:47:17 +09001196func (c *deviceConfig) SystemExtPath() string {
1197 if c.config.productVariables.SystemExtPath != nil {
1198 return *c.config.productVariables.SystemExtPath
Dario Frenifd05a742018-05-29 13:28:54 +01001199 }
Justin Yund5f6c822019-06-25 16:47:17 +09001200 return "system_ext"
Dario Frenifd05a742018-05-29 13:28:54 +01001201}
1202
Jack He8cc71432016-12-08 15:45:07 -08001203func (c *deviceConfig) BtConfigIncludeDir() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001204 return String(c.config.productVariables.BtConfigIncludeDir)
Jack He8cc71432016-12-08 15:45:07 -08001205}
Dan Willemsen581341d2017-02-09 16:16:31 -08001206
Jiyong Parkd773eb32017-07-03 13:18:12 +09001207func (c *deviceConfig) DeviceKernelHeaderDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001208 return c.config.productVariables.DeviceKernelHeaders
Jiyong Parkd773eb32017-07-03 13:18:12 +09001209}
1210
Roland Levillainada12702020-06-09 13:07:36 +01001211// JavaCoverageEnabledForPath returns whether Java code coverage is enabled for
1212// path. Coverage is enabled by default when the product variable
1213// JavaCoveragePaths is empty. If JavaCoveragePaths is not empty, coverage is
1214// enabled for any path which is part of this variable (and not part of the
1215// JavaCoverageExcludePaths product variable). Value "*" in JavaCoveragePaths
1216// represents any path.
1217func (c *deviceConfig) JavaCoverageEnabledForPath(path string) bool {
1218 coverage := false
Chris Gross2f748692020-06-24 20:36:59 +00001219 if len(c.config.productVariables.JavaCoveragePaths) == 0 ||
Roland Levillainada12702020-06-09 13:07:36 +01001220 InList("*", c.config.productVariables.JavaCoveragePaths) ||
1221 HasAnyPrefix(path, c.config.productVariables.JavaCoveragePaths) {
1222 coverage = true
1223 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001224 if coverage && len(c.config.productVariables.JavaCoverageExcludePaths) > 0 {
Roland Levillainada12702020-06-09 13:07:36 +01001225 if HasAnyPrefix(path, c.config.productVariables.JavaCoverageExcludePaths) {
1226 coverage = false
1227 }
1228 }
1229 return coverage
1230}
1231
Colin Cross1a6acd42020-06-16 17:51:46 -07001232// Returns true if gcov or clang coverage is enabled.
Dan Willemsen581341d2017-02-09 16:16:31 -08001233func (c *deviceConfig) NativeCoverageEnabled() bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001234 return Bool(c.config.productVariables.GcovCoverage) ||
1235 Bool(c.config.productVariables.ClangCoverage)
Dan Willemsen581341d2017-02-09 16:16:31 -08001236}
1237
Oliver Nguyen1382ab62019-12-06 15:22:41 -08001238func (c *deviceConfig) ClangCoverageEnabled() bool {
1239 return Bool(c.config.productVariables.ClangCoverage)
1240}
1241
Pirama Arumuga Nainarb37ae582022-01-26 22:14:32 -08001242func (c *deviceConfig) ClangCoverageContinuousMode() bool {
1243 return Bool(c.config.productVariables.ClangCoverageContinuousMode)
1244}
1245
Colin Cross1a6acd42020-06-16 17:51:46 -07001246func (c *deviceConfig) GcovCoverageEnabled() bool {
1247 return Bool(c.config.productVariables.GcovCoverage)
1248}
1249
Roland Levillain4f5297b2020-06-09 12:44:06 +01001250// NativeCoverageEnabledForPath returns whether (GCOV- or Clang-based) native
1251// code coverage is enabled for path. By default, coverage is not enabled for a
1252// given path unless it is part of the NativeCoveragePaths product variable (and
1253// not part of the NativeCoverageExcludePaths product variable). Value "*" in
1254// NativeCoveragePaths represents any path.
1255func (c *deviceConfig) NativeCoverageEnabledForPath(path string) bool {
Ryan Campbell469a18a2017-02-27 09:01:54 -08001256 coverage := false
Roland Levillainf6cc2612020-07-09 16:58:14 +01001257 if len(c.config.productVariables.NativeCoveragePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001258 if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.productVariables.NativeCoveragePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001259 coverage = true
Dan Willemsen581341d2017-02-09 16:16:31 -08001260 }
1261 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001262 if coverage && len(c.config.productVariables.NativeCoverageExcludePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001263 if HasAnyPrefix(path, c.config.productVariables.NativeCoverageExcludePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001264 coverage = false
Ryan Campbell469a18a2017-02-27 09:01:54 -08001265 }
1266 }
1267 return coverage
Dan Willemsen581341d2017-02-09 16:16:31 -08001268}
Ivan Lozano5f595532017-07-13 14:46:05 -07001269
Yi Kongeb8efc92021-12-09 18:06:29 +08001270func (c *deviceConfig) AfdoAdditionalProfileDirs() []string {
1271 return c.config.productVariables.AfdoAdditionalProfileDirs
1272}
1273
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001274func (c *deviceConfig) PgoAdditionalProfileDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001275 return c.config.productVariables.PgoAdditionalProfileDirs
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001276}
1277
Tri Vo35a51432018-03-25 20:00:00 -07001278func (c *deviceConfig) VendorSepolicyDirs() []string {
1279 return c.config.productVariables.BoardVendorSepolicyDirs
1280}
1281
1282func (c *deviceConfig) OdmSepolicyDirs() []string {
1283 return c.config.productVariables.BoardOdmSepolicyDirs
1284}
1285
Felixa20a8752020-05-17 18:28:35 +02001286func (c *deviceConfig) SystemExtPublicSepolicyDirs() []string {
1287 return c.config.productVariables.SystemExtPublicSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001288}
1289
Felixa20a8752020-05-17 18:28:35 +02001290func (c *deviceConfig) SystemExtPrivateSepolicyDirs() []string {
1291 return c.config.productVariables.SystemExtPrivateSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001292}
1293
Inseob Kim0866b002019-04-15 20:21:29 +09001294func (c *deviceConfig) SepolicyM4Defs() []string {
1295 return c.config.productVariables.BoardSepolicyM4Defs
1296}
1297
Jiyong Park7f67f482019-01-05 12:57:48 +09001298func (c *deviceConfig) OverrideManifestPackageNameFor(name string) (manifestName string, overridden bool) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001299 return findOverrideValue(c.config.productVariables.ManifestPackageNameOverrides, name,
1300 "invalid override rule %q in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES should be <module_name>:<manifest_name>")
1301}
1302
1303func (c *deviceConfig) OverrideCertificateFor(name string) (certificatePath string, overridden bool) {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001304 return findOverrideValue(c.config.productVariables.CertificateOverrides, name,
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001305 "invalid override rule %q in PRODUCT_CERTIFICATE_OVERRIDES should be <module_name>:<certificate_module_name>")
1306}
1307
Jaewoong Jung9d22a912019-01-23 16:27:47 -08001308func (c *deviceConfig) OverridePackageNameFor(name string) string {
1309 newName, overridden := findOverrideValue(
1310 c.config.productVariables.PackageNameOverrides,
1311 name,
1312 "invalid override rule %q in PRODUCT_PACKAGE_NAME_OVERRIDES should be <module_name>:<package_name>")
1313 if overridden {
1314 return newName
1315 }
1316 return name
1317}
1318
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001319func findOverrideValue(overrides []string, name string, errorMsg string) (newValue string, overridden bool) {
Jiyong Park7f67f482019-01-05 12:57:48 +09001320 if overrides == nil || len(overrides) == 0 {
1321 return "", false
1322 }
1323 for _, o := range overrides {
1324 split := strings.Split(o, ":")
1325 if len(split) != 2 {
1326 // This shouldn't happen as this is first checked in make, but just in case.
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001327 panic(fmt.Errorf(errorMsg, o))
Jiyong Park7f67f482019-01-05 12:57:48 +09001328 }
1329 if matchPattern(split[0], name) {
1330 return substPattern(split[0], split[1], name), true
1331 }
1332 }
1333 return "", false
1334}
1335
Albert Martineefabcf2022-03-21 20:11:16 +00001336func (c *deviceConfig) ApexGlobalMinSdkVersionOverride() string {
1337 return String(c.config.productVariables.ApexGlobalMinSdkVersionOverride)
1338}
1339
Ivan Lozano5f595532017-07-13 14:46:05 -07001340func (c *config) IntegerOverflowDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001341 if len(c.productVariables.IntegerOverflowExcludePaths) == 0 {
Ivan Lozano5f595532017-07-13 14:46:05 -07001342 return false
1343 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001344 return HasAnyPrefix(path, c.productVariables.IntegerOverflowExcludePaths)
Ivan Lozano5f595532017-07-13 14:46:05 -07001345}
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001346
1347func (c *config) CFIDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001348 if len(c.productVariables.CFIExcludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001349 return false
1350 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001351 return HasAnyPrefix(path, c.productVariables.CFIExcludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001352}
1353
1354func (c *config) CFIEnabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001355 if len(c.productVariables.CFIIncludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001356 return false
1357 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001358 return HasAnyPrefix(path, c.productVariables.CFIIncludePaths) && !c.CFIDisabledForPath(path)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001359}
Colin Crosse15ddaf2017-12-04 11:24:31 -08001360
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001361func (c *config) MemtagHeapDisabledForPath(path string) bool {
1362 if len(c.productVariables.MemtagHeapExcludePaths) == 0 {
1363 return false
1364 }
1365 return HasAnyPrefix(path, c.productVariables.MemtagHeapExcludePaths)
1366}
1367
1368func (c *config) MemtagHeapAsyncEnabledForPath(path string) bool {
1369 if len(c.productVariables.MemtagHeapAsyncIncludePaths) == 0 {
1370 return false
1371 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001372 return HasAnyPrefix(path, c.productVariables.MemtagHeapAsyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001373}
1374
1375func (c *config) MemtagHeapSyncEnabledForPath(path string) bool {
1376 if len(c.productVariables.MemtagHeapSyncIncludePaths) == 0 {
1377 return false
1378 }
Evgenii Stepanov779b64e2021-04-09 14:33:10 -07001379 return HasAnyPrefix(path, c.productVariables.MemtagHeapSyncIncludePaths) && !c.MemtagHeapDisabledForPath(path)
Evgenii Stepanov4beaa0c2021-01-05 16:41:26 -08001380}
1381
Dan Willemsen0fe78662018-03-26 12:41:18 -07001382func (c *config) VendorConfig(name string) VendorConfig {
Colin Cross9d34f352019-11-22 16:03:51 -08001383 return soongconfig.Config(c.productVariables.VendorVars[name])
Dan Willemsen0fe78662018-03-26 12:41:18 -07001384}
1385
Colin Cross395f2cf2018-10-24 16:10:32 -07001386func (c *config) NdkAbis() bool {
1387 return Bool(c.productVariables.Ndk_abis)
1388}
1389
Martin Stjernholmc1ecc432019-11-15 15:00:31 +00001390func (c *config) AmlAbis() bool {
1391 return Bool(c.productVariables.Aml_abis)
1392}
1393
Jiyong Park8fd61922018-11-08 02:50:25 +09001394func (c *config) FlattenApex() bool {
Roland Levillaina3863212019-08-12 19:56:16 +01001395 return Bool(c.productVariables.Flatten_apex)
Jiyong Park8fd61922018-11-08 02:50:25 +09001396}
1397
Jiyong Park4da07972021-01-05 21:01:11 +09001398func (c *config) ForceApexSymlinkOptimization() bool {
1399 return Bool(c.productVariables.ForceApexSymlinkOptimization)
1400}
1401
Sasha Smundakfe9a5b82022-07-27 14:51:45 -07001402func (c *config) ApexCompressionEnabled() bool {
1403 return Bool(c.productVariables.CompressedApex) && !c.UnbundledBuildApps()
Mohammad Samiul Islam3cd005d2020-11-26 13:32:26 +00001404}
1405
Jeongik Chac9464142019-01-07 12:07:27 +09001406func (c *config) EnforceSystemCertificate() bool {
1407 return Bool(c.productVariables.EnforceSystemCertificate)
1408}
1409
Colin Cross440e0d02020-06-11 11:32:11 -07001410func (c *config) EnforceSystemCertificateAllowList() []string {
1411 return c.productVariables.EnforceSystemCertificateAllowList
Jeongik Chac9464142019-01-07 12:07:27 +09001412}
1413
Jeongik Cha2cc570d2019-10-29 15:44:45 +09001414func (c *config) EnforceProductPartitionInterface() bool {
1415 return Bool(c.productVariables.EnforceProductPartitionInterface)
1416}
1417
JaeMan Parkff715562020-10-19 17:25:58 +09001418func (c *config) EnforceInterPartitionJavaSdkLibrary() bool {
1419 return Bool(c.productVariables.EnforceInterPartitionJavaSdkLibrary)
1420}
1421
1422func (c *config) InterPartitionJavaLibraryAllowList() []string {
1423 return c.productVariables.InterPartitionJavaLibraryAllowList
1424}
1425
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09001426func (c *config) InstallExtraFlattenedApexes() bool {
1427 return Bool(c.productVariables.InstallExtraFlattenedApexes)
1428}
1429
Colin Crossf24a22a2019-01-31 14:12:44 -08001430func (c *config) ProductHiddenAPIStubs() []string {
1431 return c.productVariables.ProductHiddenAPIStubs
Colin Cross8faf8fc2019-01-16 15:15:52 -08001432}
1433
Colin Crossf24a22a2019-01-31 14:12:44 -08001434func (c *config) ProductHiddenAPIStubsSystem() []string {
1435 return c.productVariables.ProductHiddenAPIStubsSystem
Colin Cross8faf8fc2019-01-16 15:15:52 -08001436}
1437
Colin Crossf24a22a2019-01-31 14:12:44 -08001438func (c *config) ProductHiddenAPIStubsTest() []string {
1439 return c.productVariables.ProductHiddenAPIStubsTest
Colin Cross8faf8fc2019-01-16 15:15:52 -08001440}
Dan Willemsen71c74602019-04-10 12:27:35 -07001441
Dan Willemsen54879d12019-04-18 10:08:46 -07001442func (c *deviceConfig) TargetFSConfigGen() []string {
Dan Willemsen71c74602019-04-10 12:27:35 -07001443 return c.config.productVariables.TargetFSConfigGen
1444}
Inseob Kim0866b002019-04-15 20:21:29 +09001445
1446func (c *config) ProductPublicSepolicyDirs() []string {
1447 return c.productVariables.ProductPublicSepolicyDirs
1448}
1449
1450func (c *config) ProductPrivateSepolicyDirs() []string {
1451 return c.productVariables.ProductPrivateSepolicyDirs
1452}
1453
Colin Cross50ddcc42019-05-16 12:28:22 -07001454func (c *config) MissingUsesLibraries() []string {
1455 return c.productVariables.MissingUsesLibraries
1456}
1457
Inseob Kim5eb7ee92022-04-27 10:30:34 +09001458func (c *config) TargetMultitreeUpdateMeta() bool {
1459 return c.productVariables.MultitreeUpdateMeta
1460}
1461
Inseob Kim1f086e22019-05-09 13:29:15 +09001462func (c *deviceConfig) DeviceArch() string {
1463 return String(c.config.productVariables.DeviceArch)
1464}
1465
1466func (c *deviceConfig) DeviceArchVariant() string {
1467 return String(c.config.productVariables.DeviceArchVariant)
1468}
1469
1470func (c *deviceConfig) DeviceSecondaryArch() string {
1471 return String(c.config.productVariables.DeviceSecondaryArch)
1472}
1473
1474func (c *deviceConfig) DeviceSecondaryArchVariant() string {
1475 return String(c.config.productVariables.DeviceSecondaryArchVariant)
1476}
Yifan Hong82db7352020-01-21 16:12:26 -08001477
1478func (c *deviceConfig) BoardUsesRecoveryAsBoot() bool {
1479 return Bool(c.config.productVariables.BoardUsesRecoveryAsBoot)
1480}
Yifan Hong97365ee2020-07-29 09:51:57 -07001481
1482func (c *deviceConfig) BoardKernelBinaries() []string {
1483 return c.config.productVariables.BoardKernelBinaries
1484}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001485
Yifan Hong42bef8d2020-08-05 14:36:09 -07001486func (c *deviceConfig) BoardKernelModuleInterfaceVersions() []string {
1487 return c.config.productVariables.BoardKernelModuleInterfaceVersions
1488}
1489
Yifan Hongdd8dacc2020-10-21 15:40:17 -07001490func (c *deviceConfig) BoardMoveRecoveryResourcesToVendorBoot() bool {
1491 return Bool(c.config.productVariables.BoardMoveRecoveryResourcesToVendorBoot)
1492}
1493
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001494func (c *deviceConfig) PlatformSepolicyVersion() string {
1495 return String(c.config.productVariables.PlatformSepolicyVersion)
1496}
1497
Inseob Kima10ef272021-09-15 03:04:53 +00001498func (c *deviceConfig) TotSepolicyVersion() string {
1499 return String(c.config.productVariables.TotSepolicyVersion)
1500}
1501
Inseob Kim843f6642022-01-07 09:11:23 +09001502func (c *deviceConfig) PlatformSepolicyCompatVersions() []string {
1503 return c.config.productVariables.PlatformSepolicyCompatVersions
1504}
1505
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001506func (c *deviceConfig) BoardSepolicyVers() string {
Inseob Kim0c4eec82021-03-22 22:33:40 +09001507 if ver := String(c.config.productVariables.BoardSepolicyVers); ver != "" {
1508 return ver
1509 }
1510 return c.PlatformSepolicyVersion()
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001511}
1512
Inseob Kim14178802021-12-08 22:53:31 +09001513func (c *deviceConfig) BoardPlatVendorPolicy() []string {
1514 return c.config.productVariables.BoardPlatVendorPolicy
1515}
1516
Inseob Kim16ebd5a2020-12-09 23:08:17 +09001517func (c *deviceConfig) BoardReqdMaskPolicy() []string {
1518 return c.config.productVariables.BoardReqdMaskPolicy
1519}
1520
Inseob Kim0f46e7c2021-12-15 22:48:14 +09001521func (c *deviceConfig) BoardSystemExtPublicPrebuiltDirs() []string {
1522 return c.config.productVariables.BoardSystemExtPublicPrebuiltDirs
1523}
1524
1525func (c *deviceConfig) BoardSystemExtPrivatePrebuiltDirs() []string {
1526 return c.config.productVariables.BoardSystemExtPrivatePrebuiltDirs
1527}
1528
1529func (c *deviceConfig) BoardProductPublicPrebuiltDirs() []string {
1530 return c.config.productVariables.BoardProductPublicPrebuiltDirs
1531}
1532
1533func (c *deviceConfig) BoardProductPrivatePrebuiltDirs() []string {
1534 return c.config.productVariables.BoardProductPrivatePrebuiltDirs
1535}
1536
Inseob Kim1a0afcc2022-02-14 23:10:51 +09001537func (c *deviceConfig) SystemExtSepolicyPrebuiltApiDir() string {
1538 return String(c.config.productVariables.SystemExtSepolicyPrebuiltApiDir)
1539}
1540
1541func (c *deviceConfig) ProductSepolicyPrebuiltApiDir() string {
1542 return String(c.config.productVariables.ProductSepolicyPrebuiltApiDir)
1543}
1544
1545func (c *deviceConfig) IsPartnerTrebleSepolicyTestEnabled() bool {
1546 return c.SystemExtSepolicyPrebuiltApiDir() != "" || c.ProductSepolicyPrebuiltApiDir() != ""
1547}
1548
Inseob Kim7cf14652021-01-06 23:06:52 +09001549func (c *deviceConfig) DirectedVendorSnapshot() bool {
1550 return c.config.productVariables.DirectedVendorSnapshot
1551}
1552
1553func (c *deviceConfig) VendorSnapshotModules() map[string]bool {
1554 return c.config.productVariables.VendorSnapshotModules
1555}
1556
Jose Galmes4c6895e2021-02-09 07:44:30 -08001557func (c *deviceConfig) DirectedRecoverySnapshot() bool {
1558 return c.config.productVariables.DirectedRecoverySnapshot
1559}
1560
1561func (c *deviceConfig) RecoverySnapshotModules() map[string]bool {
1562 return c.config.productVariables.RecoverySnapshotModules
1563}
1564
Justin DeMartino383bfb32021-02-24 10:49:43 -08001565func createDirsMap(previous map[string]bool, dirs []string) (map[string]bool, error) {
1566 var ret = make(map[string]bool)
1567 for _, dir := range dirs {
1568 clean := filepath.Clean(dir)
1569 if previous[clean] || ret[clean] {
1570 return nil, fmt.Errorf("Duplicate entry %s", dir)
1571 }
1572 ret[clean] = true
1573 }
1574 return ret, nil
1575}
1576
1577func (c *deviceConfig) createDirsMapOnce(onceKey OnceKey, previous map[string]bool, dirs []string) map[string]bool {
1578 dirMap := c.Once(onceKey, func() interface{} {
1579 ret, err := createDirsMap(previous, dirs)
1580 if err != nil {
1581 panic(fmt.Errorf("%s: %w", onceKey.key, err))
1582 }
1583 return ret
1584 })
1585 if dirMap == nil {
1586 return nil
1587 }
1588 return dirMap.(map[string]bool)
1589}
1590
1591var vendorSnapshotDirsExcludedKey = NewOnceKey("VendorSnapshotDirsExcludedMap")
1592
1593func (c *deviceConfig) VendorSnapshotDirsExcludedMap() map[string]bool {
1594 return c.createDirsMapOnce(vendorSnapshotDirsExcludedKey, nil,
1595 c.config.productVariables.VendorSnapshotDirsExcluded)
1596}
1597
1598var vendorSnapshotDirsIncludedKey = NewOnceKey("VendorSnapshotDirsIncludedMap")
1599
1600func (c *deviceConfig) VendorSnapshotDirsIncludedMap() map[string]bool {
1601 excludedMap := c.VendorSnapshotDirsExcludedMap()
1602 return c.createDirsMapOnce(vendorSnapshotDirsIncludedKey, excludedMap,
1603 c.config.productVariables.VendorSnapshotDirsIncluded)
1604}
1605
1606var recoverySnapshotDirsExcludedKey = NewOnceKey("RecoverySnapshotDirsExcludedMap")
1607
1608func (c *deviceConfig) RecoverySnapshotDirsExcludedMap() map[string]bool {
1609 return c.createDirsMapOnce(recoverySnapshotDirsExcludedKey, nil,
1610 c.config.productVariables.RecoverySnapshotDirsExcluded)
1611}
1612
1613var recoverySnapshotDirsIncludedKey = NewOnceKey("RecoverySnapshotDirsIncludedMap")
1614
1615func (c *deviceConfig) RecoverySnapshotDirsIncludedMap() map[string]bool {
1616 excludedMap := c.RecoverySnapshotDirsExcludedMap()
1617 return c.createDirsMapOnce(recoverySnapshotDirsIncludedKey, excludedMap,
1618 c.config.productVariables.RecoverySnapshotDirsIncluded)
1619}
1620
Rob Seymour925aa092021-08-10 20:42:03 +00001621func (c *deviceConfig) HostFakeSnapshotEnabled() bool {
1622 return c.config.productVariables.HostFakeSnapshotEnabled
1623}
1624
Inseob Kim60c32f02020-12-21 22:53:05 +09001625func (c *deviceConfig) ShippingApiLevel() ApiLevel {
1626 if c.config.productVariables.ShippingApiLevel == nil {
1627 return NoneApiLevel
1628 }
1629 apiLevel, _ := strconv.Atoi(*c.config.productVariables.ShippingApiLevel)
1630 return uncheckedFinalApiLevel(apiLevel)
1631}
1632
Alixb5f6d9e2022-04-20 23:00:58 +00001633func (c *deviceConfig) BuildBrokenClangProperty() bool {
1634 return c.config.productVariables.BuildBrokenClangProperty
1635}
1636
Inseob Kim67e5add192021-03-17 18:05:33 +09001637func (c *deviceConfig) BuildBrokenEnforceSyspropOwner() bool {
1638 return c.config.productVariables.BuildBrokenEnforceSyspropOwner
1639}
1640
1641func (c *deviceConfig) BuildBrokenTrebleSyspropNeverallow() bool {
1642 return c.config.productVariables.BuildBrokenTrebleSyspropNeverallow
1643}
1644
Hridya Valsaraju5a5c7d52021-04-02 16:45:24 -07001645func (c *deviceConfig) BuildDebugfsRestrictionsEnabled() bool {
1646 return c.config.productVariables.BuildDebugfsRestrictionsEnabled
1647}
1648
Inseob Kim0cac7b42021-02-03 18:16:46 +09001649func (c *deviceConfig) BuildBrokenVendorPropertyNamespace() bool {
1650 return c.config.productVariables.BuildBrokenVendorPropertyNamespace
1651}
1652
Liz Kammer619be462022-01-28 15:13:39 -05001653func (c *deviceConfig) BuildBrokenInputDir(name string) bool {
1654 return InList(name, c.config.productVariables.BuildBrokenInputDirModules)
1655}
1656
Vinh Tran140d5882022-06-10 14:23:27 -04001657func (c *deviceConfig) BuildBrokenDepfile() bool {
1658 return Bool(c.config.productVariables.BuildBrokenDepfile)
1659}
1660
Inseob Kim67e5add192021-03-17 18:05:33 +09001661func (c *deviceConfig) RequiresInsecureExecmemForSwiftshader() bool {
1662 return c.config.productVariables.RequiresInsecureExecmemForSwiftshader
1663}
1664
1665func (c *config) SelinuxIgnoreNeverallows() bool {
1666 return c.productVariables.SelinuxIgnoreNeverallows
1667}
1668
1669func (c *deviceConfig) SepolicySplit() bool {
1670 return c.config.productVariables.SepolicySplit
1671}
1672
Inseob Kima10ef272021-09-15 03:04:53 +00001673func (c *deviceConfig) SepolicyFreezeTestExtraDirs() []string {
1674 return c.config.productVariables.SepolicyFreezeTestExtraDirs
1675}
1676
1677func (c *deviceConfig) SepolicyFreezeTestExtraPrebuiltDirs() []string {
1678 return c.config.productVariables.SepolicyFreezeTestExtraPrebuiltDirs
1679}
1680
Jiyong Parkd163d4d2021-10-12 16:47:43 +09001681func (c *deviceConfig) GenerateAidlNdkPlatformBackend() bool {
1682 return c.config.productVariables.GenerateAidlNdkPlatformBackend
1683}
1684
Christopher Ferris98f10222022-07-13 23:16:52 -07001685func (c *config) IgnorePrefer32OnDevice() bool {
1686 return c.productVariables.IgnorePrefer32OnDevice
1687}
1688
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001689func (c *config) BootJars() []string {
1690 return c.Once(earlyBootJarsKey, func() interface{} {
Paul Duffin69d1fb12020-10-23 21:14:20 +01001691 list := c.productVariables.BootJars.CopyOfJars()
satayevd604b212021-07-21 14:23:52 +01001692 return append(list, c.productVariables.ApexBootJars.CopyOfJars()...)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001693 }).([]string)
1694}
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001695
satayevd604b212021-07-21 14:23:52 +01001696func (c *config) NonApexBootJars() ConfiguredJarList {
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001697 return c.productVariables.BootJars
1698}
1699
satayevd604b212021-07-21 14:23:52 +01001700func (c *config) ApexBootJars() ConfiguredJarList {
1701 return c.productVariables.ApexBootJars
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001702}
Colin Cross77cdcfd2021-03-12 11:28:25 -08001703
1704func (c *config) RBEWrapper() string {
1705 return c.GetenvWithDefault("RBE_WRAPPER", remoteexec.DefaultWrapperPath)
1706}
Colin Cross9b698b62021-12-22 09:55:32 -08001707
1708// UseHostMusl returns true if the host target has been configured to build against musl libc.
1709func (c *config) UseHostMusl() bool {
1710 return Bool(c.productVariables.HostMusl)
1711}
MarkDacekff851b82022-04-21 18:33:17 +00001712
Chris Parsonsf874e462022-05-10 13:50:12 -04001713func (c *config) LogMixedBuild(ctx BaseModuleContext, useBazel bool) {
MarkDacekff851b82022-04-21 18:33:17 +00001714 moduleName := ctx.Module().Name()
1715 c.mixedBuildsLock.Lock()
1716 defer c.mixedBuildsLock.Unlock()
1717 if useBazel {
1718 c.mixedBuildEnabledModules[moduleName] = struct{}{}
1719 } else {
1720 c.mixedBuildDisabledModules[moduleName] = struct{}{}
1721 }
1722}