blob: 5ec621cb4e533d73deb90f4cdfb31e5b0e188bca [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 (
Colin Cross3f40fa42015-01-30 17:27:36 -080021 "encoding/json"
22 "fmt"
Colin Crossd8f20142016-11-03 09:43:26 -070023 "io/ioutil"
Colin Cross3f40fa42015-01-30 17:27:36 -080024 "os"
Colin Cross35cec122015-04-02 14:37:16 -070025 "path/filepath"
Colin Cross3f40fa42015-01-30 17:27:36 -080026 "runtime"
Dan Willemsen34cc69e2015-09-23 15:26:20 -070027 "strings"
Colin Crossc1e86a32015-04-15 12:33:28 -070028 "sync"
Colin Cross6ff51382015-12-17 16:39:19 -080029
Colin Cross98be1bb2019-12-13 20:41:13 -080030 "github.com/google/blueprint"
Colin Crosse87040b2017-12-11 15:52:26 -080031 "github.com/google/blueprint/bootstrap"
Colin Cross98be1bb2019-12-13 20:41:13 -080032 "github.com/google/blueprint/pathtools"
Colin Cross6ff51382015-12-17 16:39:19 -080033 "github.com/google/blueprint/proptools"
Colin Cross9d34f352019-11-22 16:03:51 -080034
35 "android/soong/android/soongconfig"
Colin Cross3f40fa42015-01-30 17:27:36 -080036)
37
Jingwen Chenc711fec2020-11-22 23:52:50 -050038// Bool re-exports proptools.Bool for the android package.
Colin Cross6ff51382015-12-17 16:39:19 -080039var Bool = proptools.Bool
Jingwen Chenc711fec2020-11-22 23:52:50 -050040
41// String re-exports proptools.String for the android package.
Jack He8cc71432016-12-08 15:45:07 -080042var String = proptools.String
Jingwen Chenc711fec2020-11-22 23:52:50 -050043
44// StringDefault re-exports proptools.StringDefault for the android package.
Jeongik Cha219141c2020-08-06 23:00:37 +090045var StringDefault = proptools.StringDefault
Jiyong Park6a927c42020-01-21 02:03:43 +090046
Jingwen Chenc711fec2020-11-22 23:52:50 -050047// FutureApiLevelInt is a placeholder constant for unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070048const FutureApiLevelInt = 10000
49
Jingwen Chenc711fec2020-11-22 23:52:50 -050050// FutureApiLevel represents unreleased API levels.
Dan Albert0b176c82020-07-23 16:43:25 -070051var FutureApiLevel = ApiLevel{
52 value: "current",
53 number: FutureApiLevelInt,
54 isPreview: true,
55}
Colin Cross6ff51382015-12-17 16:39:19 -080056
Jingwen Chenc711fec2020-11-22 23:52:50 -050057// configFileName is the name the file containing FileConfigurableOptions from
58// soong_ui for the soong_build primary builder.
Dan Willemsen87b17d12015-07-14 00:39:06 -070059const configFileName = "soong.config"
Jingwen Chenc711fec2020-11-22 23:52:50 -050060
61// productVariablesFileName contain the product configuration variables from soong_ui for the
62// soong_build primary builder and Kati.
Dan Willemsen87b17d12015-07-14 00:39:06 -070063const productVariablesFileName = "soong.variables"
Colin Cross3f40fa42015-01-30 17:27:36 -080064
65// A FileConfigurableOptions contains options which can be configured by the
66// config file. These will be included in the config struct.
67type FileConfigurableOptions struct {
Jiyong Park22101982020-09-17 19:09:58 +090068 Mega_device *bool `json:",omitempty"`
69 Host_bionic *bool `json:",omitempty"`
70 Host_bionic_arm64 *bool `json:",omitempty"`
Colin Cross3f40fa42015-01-30 17:27:36 -080071}
72
Jingwen Chenc711fec2020-11-22 23:52:50 -050073// SetDefaultConfig resets the receiving FileConfigurableOptions to default
74// values.
Colin Cross27385972015-09-18 10:57:10 -070075func (f *FileConfigurableOptions) SetDefaultConfig() {
76 *f = FileConfigurableOptions{}
Colin Cross3f40fa42015-01-30 17:27:36 -080077}
78
Colin Cross9272ade2016-08-17 15:24:12 -070079// A Config object represents the entire build configuration for Android.
Colin Crossc3c0a492015-04-10 15:43:55 -070080type Config struct {
81 *config
82}
83
Jingwen Chenc711fec2020-11-22 23:52:50 -050084// BuildDir returns the build output directory for the configuration.
Jeff Gastonefc1b412017-03-29 17:29:06 -070085func (c Config) BuildDir() string {
86 return c.buildDir
87}
88
Jingwen Chenc711fec2020-11-22 23:52:50 -050089// A DeviceConfig object represents the configuration for a particular device
90// being built. For now there will only be one of these, but in the future there
91// may be multiple devices being built.
Colin Cross9272ade2016-08-17 15:24:12 -070092type DeviceConfig struct {
93 *deviceConfig
94}
95
Jingwen Chenc711fec2020-11-22 23:52:50 -050096// VendorConfig represents the configuration for vendor-specific behavior.
Colin Cross9d34f352019-11-22 16:03:51 -080097type VendorConfig soongconfig.SoongConfig
Dan Willemsen0fe78662018-03-26 12:41:18 -070098
Jingwen Chenc711fec2020-11-22 23:52:50 -050099// Definition of general build configuration for soong_build. Some of these
100// configuration values are generated from soong_ui for soong_build,
101// communicated over JSON files like soong.config or soong.variables.
Colin Cross1332b002015-04-07 17:11:30 -0700102type config struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500103 // Options configurable with soong.confg
Colin Cross3f40fa42015-01-30 17:27:36 -0800104 FileConfigurableOptions
Jingwen Chenc711fec2020-11-22 23:52:50 -0500105
106 // Options configurable with soong.variables
Dan Willemsen45133ac2018-03-09 21:22:06 -0800107 productVariables productVariables
Colin Cross3f40fa42015-01-30 17:27:36 -0800108
Dan Willemsen674dc7f2018-03-12 18:06:05 -0700109 // Only available on configs created by TestConfig
110 TestProductVariables *productVariables
111
Jingwen Chenc711fec2020-11-22 23:52:50 -0500112 // A specialized context object for Bazel/Soong mixed builds and migration
113 // purposes.
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400114 BazelContext BazelContext
115
Dan Willemsen87b17d12015-07-14 00:39:06 -0700116 ConfigFileName string
117 ProductVariablesFileName string
118
Jaewoong Jung642916f2020-10-09 17:25:15 -0700119 Targets map[OsType][]Target
120 BuildOSTarget Target // the Target for tools run on the build machine
121 BuildOSCommonTarget Target // the Target for common (java) tools run on the build machine
122 AndroidCommonTarget Target // the Target for common modules for the Android device
123 AndroidFirstDeviceTarget Target // the first Target for modules for the Android device
Dan Willemsen218f6562015-07-08 18:13:11 -0700124
Jingwen Chenc711fec2020-11-22 23:52:50 -0500125 // multilibConflicts for an ArchType is true if there is earlier configured
126 // device architecture with the same multilib value.
Colin Cross3b19f5d2019-09-17 14:45:31 -0700127 multilibConflicts map[ArchType]bool
128
Colin Cross9272ade2016-08-17 15:24:12 -0700129 deviceConfig *deviceConfig
130
Chris Parsons8f232a22020-06-23 17:37:05 -0400131 srcDir string // the path of the root source directory
132 buildDir string // the path of the build output directory
133 moduleListFile string // the path to the file which lists blueprint files to parse.
Colin Crossc1e86a32015-04-15 12:33:28 -0700134
Colin Cross6ccbc912017-10-10 23:07:38 -0700135 env map[string]string
Dan Willemsene7680ba2015-09-11 17:06:19 -0700136 envLock sync.Mutex
137 envDeps map[string]string
138 envFrozen bool
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800139
140 inMake bool
Colin Cross1e7d3702016-08-24 15:25:47 -0700141
Colin Cross32616ed2017-09-05 21:56:44 -0700142 captureBuild bool // true for tests, saves build parameters for each module
143 ignoreEnvironment bool // true for tests, returns empty from all Getenv calls
Colin Crosscec81712017-07-13 14:43:27 -0700144
Colin Crosse87040b2017-12-11 15:52:26 -0800145 stopBefore bootstrap.StopBefore
146
Colin Cross98be1bb2019-12-13 20:41:13 -0800147 fs pathtools.FileSystem
148 mockBpList string
149
Colin Cross5e6a7972020-06-07 16:56:32 -0700150 // If testAllowNonExistentPaths is true then PathForSource and PathForModuleSrc won't error
151 // in tests when a path doesn't exist.
152 testAllowNonExistentPaths bool
153
Jingwen Chenc711fec2020-11-22 23:52:50 -0500154 // The list of files that when changed, must invalidate soong_build to
155 // regenerate build.ninja.
Colin Cross12129292020-10-29 18:23:58 -0700156 ninjaFileDepsSet sync.Map
157
Colin Cross9272ade2016-08-17 15:24:12 -0700158 OncePer
159}
160
161type deviceConfig struct {
Dan Willemsen00269f22017-07-06 16:59:48 -0700162 config *config
Colin Cross9272ade2016-08-17 15:24:12 -0700163 OncePer
Colin Cross3f40fa42015-01-30 17:27:36 -0800164}
165
Colin Cross485e5722015-08-27 13:28:01 -0700166type jsonConfigurable interface {
Colin Cross27385972015-09-18 10:57:10 -0700167 SetDefaultConfig()
Colin Cross485e5722015-08-27 13:28:01 -0700168}
Colin Cross3f40fa42015-01-30 17:27:36 -0800169
Colin Cross485e5722015-08-27 13:28:01 -0700170func loadConfig(config *config) error {
Colin Cross988414c2020-01-11 01:11:46 +0000171 err := loadFromConfigFile(&config.FileConfigurableOptions, absolutePath(config.ConfigFileName))
Colin Cross485e5722015-08-27 13:28:01 -0700172 if err != nil {
173 return err
174 }
175
Colin Cross988414c2020-01-11 01:11:46 +0000176 return loadFromConfigFile(&config.productVariables, absolutePath(config.ProductVariablesFileName))
Colin Cross485e5722015-08-27 13:28:01 -0700177}
178
Jingwen Chenc711fec2020-11-22 23:52:50 -0500179// loadFromConfigFile loads and decodes configuration options from a JSON file
180// in the current working directory.
Colin Cross485e5722015-08-27 13:28:01 -0700181func loadFromConfigFile(configurable jsonConfigurable, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800182 // Try to open the file
Colin Cross485e5722015-08-27 13:28:01 -0700183 configFileReader, err := os.Open(filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800184 defer configFileReader.Close()
185 if os.IsNotExist(err) {
186 // Need to create a file, so that blueprint & ninja don't get in
187 // a dependency tracking loop.
188 // Make a file-configurable-options with defaults, write it out using
189 // a json writer.
Colin Cross27385972015-09-18 10:57:10 -0700190 configurable.SetDefaultConfig()
191 err = saveToConfigFile(configurable, filename)
Colin Cross3f40fa42015-01-30 17:27:36 -0800192 if err != nil {
193 return err
194 }
Colin Cross15cd21a2018-02-27 11:26:02 -0800195 } else if err != nil {
196 return fmt.Errorf("config file: could not open %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800197 } else {
198 // Make a decoder for it
199 jsonDecoder := json.NewDecoder(configFileReader)
Colin Cross485e5722015-08-27 13:28:01 -0700200 err = jsonDecoder.Decode(configurable)
Colin Cross3f40fa42015-01-30 17:27:36 -0800201 if err != nil {
Colin Cross15cd21a2018-02-27 11:26:02 -0800202 return fmt.Errorf("config file: %s did not parse correctly: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800203 }
204 }
205
Colin Cross3f40fa42015-01-30 17:27:36 -0800206 // No error
207 return nil
208}
209
Colin Crossd8f20142016-11-03 09:43:26 -0700210// atomically writes the config file in case two copies of soong_build are running simultaneously
211// (for example, docs generation and ninja manifest generation)
Colin Cross485e5722015-08-27 13:28:01 -0700212func saveToConfigFile(config jsonConfigurable, filename string) error {
Colin Cross3f40fa42015-01-30 17:27:36 -0800213 data, err := json.MarshalIndent(&config, "", " ")
214 if err != nil {
215 return fmt.Errorf("cannot marshal config data: %s", err.Error())
216 }
217
Colin Crossd8f20142016-11-03 09:43:26 -0700218 f, err := ioutil.TempFile(filepath.Dir(filename), "config")
Colin Cross3f40fa42015-01-30 17:27:36 -0800219 if err != nil {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500220 return fmt.Errorf("cannot create empty config file %s: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800221 }
Colin Crossd8f20142016-11-03 09:43:26 -0700222 defer os.Remove(f.Name())
223 defer f.Close()
Colin Cross3f40fa42015-01-30 17:27:36 -0800224
Colin Crossd8f20142016-11-03 09:43:26 -0700225 _, err = f.Write(data)
Colin Cross3f40fa42015-01-30 17:27:36 -0800226 if err != nil {
Colin Cross485e5722015-08-27 13:28:01 -0700227 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
228 }
229
Colin Crossd8f20142016-11-03 09:43:26 -0700230 _, err = f.WriteString("\n")
Colin Cross485e5722015-08-27 13:28:01 -0700231 if err != nil {
232 return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error())
Colin Cross3f40fa42015-01-30 17:27:36 -0800233 }
234
Colin Crossd8f20142016-11-03 09:43:26 -0700235 f.Close()
236 os.Rename(f.Name(), filename)
237
Colin Cross3f40fa42015-01-30 17:27:36 -0800238 return nil
239}
240
Colin Cross988414c2020-01-11 01:11:46 +0000241// NullConfig returns a mostly empty Config for use by standalone tools like dexpreopt_gen that
242// use the android package.
243func NullConfig(buildDir string) Config {
244 return Config{
245 config: &config{
246 buildDir: buildDir,
247 fs: pathtools.OsFs,
248 },
249 }
250}
251
Jingwen Chenc711fec2020-11-22 23:52:50 -0500252// TestConfig returns a Config object for testing.
Colin Cross98be1bb2019-12-13 20:41:13 -0800253func TestConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
Colin Cross9c6241f2019-04-22 15:51:26 -0700254 envCopy := make(map[string]string)
255 for k, v := range env {
256 envCopy[k] = v
257 }
258
259 // Copy the real PATH value to the test environment, it's needed by HostSystemTool() used in x86_darwin_host.go
260 envCopy["PATH"] = originalEnv["PATH"]
261
Dan Willemsen00269f22017-07-06 16:59:48 -0700262 config := &config{
Dan Willemsen45133ac2018-03-09 21:22:06 -0800263 productVariables: productVariables{
Dan Albert4f378d72020-07-23 17:32:15 -0700264 DeviceName: stringPtr("test_device"),
265 Platform_sdk_version: intPtr(30),
266 Platform_sdk_codename: stringPtr("S"),
267 Platform_version_active_codenames: []string{"S"},
268 DeviceSystemSdkVersions: []string{"14", "15"},
269 Platform_systemsdk_versions: []string{"29", "30"},
270 AAPTConfig: []string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"},
271 AAPTPreferredConfig: stringPtr("xhdpi"),
272 AAPTCharacteristics: stringPtr("nosdcard"),
273 AAPTPrebuiltDPI: []string{"xhdpi", "xxhdpi"},
274 UncompressPrivAppDex: boolPtr(true),
Dan Willemsen00269f22017-07-06 16:59:48 -0700275 },
276
Colin Cross6ccbc912017-10-10 23:07:38 -0700277 buildDir: buildDir,
278 captureBuild: true,
Colin Cross9c6241f2019-04-22 15:51:26 -0700279 env: envCopy,
Colin Cross5e6a7972020-06-07 16:56:32 -0700280
281 // Set testAllowNonExistentPaths so that test contexts don't need to specify every path
282 // passed to PathForSource or PathForModuleSrc.
283 testAllowNonExistentPaths: true,
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400284
285 BazelContext: noopBazelContext{},
Dan Willemsen00269f22017-07-06 16:59:48 -0700286 }
287 config.deviceConfig = &deviceConfig{
288 config: config,
289 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800290 config.TestProductVariables = &config.productVariables
Dan Willemsen00269f22017-07-06 16:59:48 -0700291
Colin Cross98be1bb2019-12-13 20:41:13 -0800292 config.mockFileSystem(bp, fs)
293
Dan Willemsen00269f22017-07-06 16:59:48 -0700294 return Config{config}
Colin Crossce75d2c2016-10-06 16:12:58 -0700295}
296
Jingwen Chenc711fec2020-11-22 23:52:50 -0500297// TestArchConfigNativeBridge returns a Config object suitable for using
298// for tests that need to run the arch mutator for native bridge supported
299// archs.
Colin Cross98be1bb2019-12-13 20:41:13 -0800300func TestArchConfigNativeBridge(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
301 testConfig := TestArchConfig(buildDir, env, bp, fs)
dimitry1f33e402019-03-26 12:39:31 +0100302 config := testConfig.config
303
Colin Cross0d99f7c2019-05-14 16:01:24 -0700304 config.Targets[Android] = []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900305 {Android, Arch{ArchType: X86_64, ArchVariant: "silvermont", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
306 {Android, Arch{ArchType: X86, ArchVariant: "silvermont", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
307 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeEnabled, "x86_64", "arm64", false},
308 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeEnabled, "x86", "arm", false},
dimitry1f33e402019-03-26 12:39:31 +0100309 }
310
311 return testConfig
312}
313
Jingwen Chenc711fec2020-11-22 23:52:50 -0500314// TestArchConfigFuchsia returns a Config object suitable for using for
315// tests that need to run the arch mutator for the Fuchsia arch.
Colin Cross98be1bb2019-12-13 20:41:13 -0800316func TestArchConfigFuchsia(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
317 testConfig := TestConfig(buildDir, env, bp, fs)
Doug Hornc32c6b02019-01-17 14:44:05 -0800318 config := testConfig.config
319
320 config.Targets = map[OsType][]Target{
321 Fuchsia: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900322 {Fuchsia, Arch{ArchType: Arm64, ArchVariant: "", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
Doug Hornc32c6b02019-01-17 14:44:05 -0800323 },
324 BuildOs: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900325 {BuildOs, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
Doug Hornc32c6b02019-01-17 14:44:05 -0800326 },
327 }
328
329 return testConfig
330}
331
Jingwen Chenc711fec2020-11-22 23:52:50 -0500332// TestArchConfig returns a Config object suitable for using for tests that
333// need to run the arch mutator.
Colin Cross98be1bb2019-12-13 20:41:13 -0800334func TestArchConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
335 testConfig := TestConfig(buildDir, env, bp, fs)
Colin Crossae4c6182017-09-15 17:33:55 -0700336 config := testConfig.config
337
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700338 config.Targets = map[OsType][]Target{
339 Android: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900340 {Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Abi: []string{"arm64-v8a"}}, NativeBridgeDisabled, "", "", false},
341 {Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Abi: []string{"armeabi-v7a"}}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700342 },
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700343 BuildOs: []Target{
Jiyong Park1613e552020-09-14 19:43:17 +0900344 {BuildOs, Arch{ArchType: X86_64}, NativeBridgeDisabled, "", "", false},
345 {BuildOs, Arch{ArchType: X86}, NativeBridgeDisabled, "", "", false},
Colin Crossae4c6182017-09-15 17:33:55 -0700346 },
347 }
348
Colin Cross0d99f7c2019-05-14 16:01:24 -0700349 if runtime.GOOS == "darwin" {
350 config.Targets[BuildOs] = config.Targets[BuildOs][:1]
351 }
352
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700353 config.BuildOSTarget = config.Targets[BuildOs][0]
354 config.BuildOSCommonTarget = getCommonTargets(config.Targets[BuildOs])[0]
355 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700356 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Inseob Kim1f086e22019-05-09 13:29:15 +0900357 config.TestProductVariables.DeviceArch = proptools.StringPtr("arm64")
358 config.TestProductVariables.DeviceArchVariant = proptools.StringPtr("armv8-a")
359 config.TestProductVariables.DeviceSecondaryArch = proptools.StringPtr("arm")
360 config.TestProductVariables.DeviceSecondaryArchVariant = proptools.StringPtr("armv7-a-neon")
Colin Cross2a076922018-10-04 23:28:25 -0700361
Colin Crossae4c6182017-09-15 17:33:55 -0700362 return testConfig
363}
364
Jingwen Chenc711fec2020-11-22 23:52:50 -0500365// ConfigForAdditionalRun is a config object which is "reset" for another
366// bootstrap run. Only per-run data is reset. Data which needs to persist across
367// multiple runs in the same program execution is carried over (such as Bazel
368// context or environment deps).
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400369func ConfigForAdditionalRun(c Config) (Config, error) {
370 newConfig, err := NewConfig(c.srcDir, c.buildDir, c.moduleListFile)
371 if err != nil {
372 return Config{}, err
373 }
374 newConfig.BazelContext = c.BazelContext
375 newConfig.envDeps = c.envDeps
376 return newConfig, nil
377}
378
Jingwen Chenc711fec2020-11-22 23:52:50 -0500379// NewConfig creates a new Config object. The srcDir argument specifies the path
380// to the root source directory. It also loads the config file, if found.
Chris Parsons8f232a22020-06-23 17:37:05 -0400381func NewConfig(srcDir, buildDir string, moduleListFile string) (Config, error) {
Jingwen Chenc711fec2020-11-22 23:52:50 -0500382 // Make a config with default options.
Colin Cross9272ade2016-08-17 15:24:12 -0700383 config := &config{
384 ConfigFileName: filepath.Join(buildDir, configFileName),
385 ProductVariablesFileName: filepath.Join(buildDir, productVariablesFileName),
Dan Willemsen87b17d12015-07-14 00:39:06 -0700386
Colin Cross6ccbc912017-10-10 23:07:38 -0700387 env: originalEnv,
388
Colin Cross3b19f5d2019-09-17 14:45:31 -0700389 srcDir: srcDir,
390 buildDir: buildDir,
391 multilibConflicts: make(map[ArchType]bool),
Colin Cross98be1bb2019-12-13 20:41:13 -0800392
Chris Parsons8f232a22020-06-23 17:37:05 -0400393 moduleListFile: moduleListFile,
394 fs: pathtools.NewOsFs(absSrcDir),
Colin Cross68f55102015-03-25 14:43:57 -0700395 }
Colin Cross3f40fa42015-01-30 17:27:36 -0800396
Dan Willemsen00269f22017-07-06 16:59:48 -0700397 config.deviceConfig = &deviceConfig{
Colin Cross9272ade2016-08-17 15:24:12 -0700398 config: config,
399 }
400
Liz Kammer7941b302020-07-28 13:27:34 -0700401 // Soundness check of the build and source directories. This won't catch strange
402 // configurations with symlinks, but at least checks the obvious case.
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700403 absBuildDir, err := filepath.Abs(buildDir)
404 if err != nil {
405 return Config{}, err
406 }
407
408 absSrcDir, err := filepath.Abs(srcDir)
409 if err != nil {
410 return Config{}, err
411 }
412
413 if strings.HasPrefix(absSrcDir, absBuildDir) {
414 return Config{}, fmt.Errorf("Build dir must not contain source directory")
415 }
416
Colin Cross3f40fa42015-01-30 17:27:36 -0800417 // Load any configurable options from the configuration file
Colin Cross9272ade2016-08-17 15:24:12 -0700418 err = loadConfig(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800419 if err != nil {
Colin Crossc3c0a492015-04-10 15:43:55 -0700420 return Config{}, err
Colin Cross3f40fa42015-01-30 17:27:36 -0800421 }
422
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800423 inMakeFile := filepath.Join(buildDir, ".soong.in_make")
Colin Cross988414c2020-01-11 01:11:46 +0000424 if _, err := os.Stat(absolutePath(inMakeFile)); err == nil {
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800425 config.inMake = true
426 }
427
Jingwen Chenc711fec2020-11-22 23:52:50 -0500428 // Sets up the map of target OSes to the finer grained compilation targets
429 // that are configured from the product variables.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700430 targets, err := decodeTargetProductVariables(config)
Dan Willemsen218f6562015-07-08 18:13:11 -0700431 if err != nil {
432 return Config{}, err
433 }
434
Paul Duffin1356d8c2020-02-25 19:26:33 +0000435 // Make the CommonOS OsType available for all products.
436 targets[CommonOS] = []Target{commonTargetMap[CommonOS.Name]}
437
Dan Albert4098deb2016-10-19 14:04:41 -0700438 var archConfig []archConfig
Dan Willemsen322acaf2016-01-12 23:07:05 -0800439 if Bool(config.Mega_device) {
Dan Albert4098deb2016-10-19 14:04:41 -0700440 archConfig = getMegaDeviceConfig()
Colin Cross395f2cf2018-10-24 16:10:32 -0700441 } else if config.NdkAbis() {
Dan Albert4098deb2016-10-19 14:04:41 -0700442 archConfig = getNdkAbisConfig()
Martin Stjernholmc1ecc432019-11-15 15:00:31 +0000443 } else if config.AmlAbis() {
444 archConfig = getAmlAbisConfig()
Dan Albert4098deb2016-10-19 14:04:41 -0700445 }
446
447 if archConfig != nil {
Dan Willemsen01a3c252019-01-11 19:02:16 -0800448 androidTargets, err := decodeArchSettings(Android, archConfig)
Dan Willemsen322acaf2016-01-12 23:07:05 -0800449 if err != nil {
450 return Config{}, err
451 }
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700452 targets[Android] = androidTargets
Dan Willemsen322acaf2016-01-12 23:07:05 -0800453 }
454
Colin Cross3b19f5d2019-09-17 14:45:31 -0700455 multilib := make(map[string]bool)
456 for _, target := range targets[Android] {
457 if seen := multilib[target.Arch.ArchType.Multilib]; seen {
458 config.multilibConflicts[target.Arch.ArchType] = true
459 }
460 multilib[target.Arch.ArchType.Multilib] = true
461 }
462
Jingwen Chenc711fec2020-11-22 23:52:50 -0500463 // Map of OS to compilation targets.
Colin Crossa1ad8d12016-06-01 17:09:44 -0700464 config.Targets = targets
Jingwen Chenc711fec2020-11-22 23:52:50 -0500465
466 // Compilation targets for host tools.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700467 config.BuildOSTarget = config.Targets[BuildOs][0]
468 config.BuildOSCommonTarget = getCommonTargets(config.Targets[BuildOs])[0]
Jingwen Chenc711fec2020-11-22 23:52:50 -0500469
470 // Compilation targets for Android.
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700471 if len(config.Targets[Android]) > 0 {
472 config.AndroidCommonTarget = getCommonTargets(config.Targets[Android])[0]
Jaewoong Jung642916f2020-10-09 17:25:15 -0700473 config.AndroidFirstDeviceTarget = firstTarget(config.Targets[Android], "lib64", "lib32")[0]
Colin Cross0f7d2ef2019-10-16 11:03:10 -0700474 }
Dan Willemsen218f6562015-07-08 18:13:11 -0700475
Colin Cross1a6acd42020-06-16 17:51:46 -0700476 if Bool(config.productVariables.GcovCoverage) && Bool(config.productVariables.ClangCoverage) {
477 return Config{}, fmt.Errorf("GcovCoverage and ClangCoverage cannot both be set")
478 }
479
480 config.productVariables.Native_coverage = proptools.BoolPtr(
481 Bool(config.productVariables.GcovCoverage) ||
482 Bool(config.productVariables.ClangCoverage))
483
Chris Parsonsf3c96ef2020-09-29 02:23:17 -0400484 config.BazelContext, err = NewBazelContext(config)
Colin Cross3f40fa42015-01-30 17:27:36 -0800485
Jingwen Chenc711fec2020-11-22 23:52:50 -0500486 return Config{config}, err
487}
Colin Cross988414c2020-01-11 01:11:46 +0000488
Colin Cross98be1bb2019-12-13 20:41:13 -0800489// mockFileSystem replaces all reads with accesses to the provided map of
490// filenames to contents stored as a byte slice.
491func (c *config) mockFileSystem(bp string, fs map[string][]byte) {
492 mockFS := map[string][]byte{}
493
494 if _, exists := mockFS["Android.bp"]; !exists {
495 mockFS["Android.bp"] = []byte(bp)
496 }
497
498 for k, v := range fs {
499 mockFS[k] = v
500 }
501
502 // no module list file specified; find every file named Blueprints or Android.bp
503 pathsToParse := []string{}
504 for candidate := range mockFS {
505 base := filepath.Base(candidate)
506 if base == "Blueprints" || base == "Android.bp" {
507 pathsToParse = append(pathsToParse, candidate)
508 }
509 }
510 if len(pathsToParse) < 1 {
511 panic(fmt.Sprintf("No Blueprint or Android.bp files found in mock filesystem: %v\n", mockFS))
512 }
513 mockFS[blueprint.MockModuleListFile] = []byte(strings.Join(pathsToParse, "\n"))
514
515 c.fs = pathtools.MockFs(mockFS)
516 c.mockBpList = blueprint.MockModuleListFile
517}
518
Colin Crosse87040b2017-12-11 15:52:26 -0800519func (c *config) StopBefore() bootstrap.StopBefore {
520 return c.stopBefore
Dan Willemsen218f6562015-07-08 18:13:11 -0700521}
522
Jingwen Chenc711fec2020-11-22 23:52:50 -0500523// SetStopBefore configures soong_build to exit earlier at a specific point.
Colin Crosse87040b2017-12-11 15:52:26 -0800524func (c *config) SetStopBefore(stopBefore bootstrap.StopBefore) {
525 c.stopBefore = stopBefore
526}
527
528var _ bootstrap.ConfigStopBefore = (*config)(nil)
529
Jingwen Chenc711fec2020-11-22 23:52:50 -0500530// BlueprintToolLocation returns the directory containing build system tools
531// from Blueprint, like soong_zip and merge_zips.
Dan Willemsenc2aa4a92016-05-26 15:13:03 -0700532func (c *config) BlueprintToolLocation() string {
533 return filepath.Join(c.buildDir, "host", c.PrebuiltOS(), "bin")
534}
535
Colin Crosse87040b2017-12-11 15:52:26 -0800536var _ bootstrap.ConfigBlueprintToolLocation = (*config)(nil)
537
Dan Willemsen60e62f02018-11-16 21:05:32 -0800538func (c *config) HostToolPath(ctx PathContext, tool string) Path {
539 return PathForOutput(ctx, "host", c.PrebuiltOS(), "bin", tool)
540}
541
Martin Stjernholm7260d062019-12-09 21:47:14 +0000542func (c *config) HostJNIToolPath(ctx PathContext, path string) Path {
543 ext := ".so"
544 if runtime.GOOS == "darwin" {
545 ext = ".dylib"
546 }
547 return PathForOutput(ctx, "host", c.PrebuiltOS(), "lib64", path+ext)
548}
549
550func (c *config) HostJavaToolPath(ctx PathContext, path string) Path {
551 return PathForOutput(ctx, "host", c.PrebuiltOS(), "framework", path)
552}
553
Dan Willemsen66068722017-05-08 21:15:59 +0000554// HostSystemTool looks for non-hermetic tools from the system we're running on.
555// Generally shouldn't be used, but useful to find the XCode SDK, etc.
556func (c *config) HostSystemTool(name string) string {
557 for _, dir := range filepath.SplitList(c.Getenv("PATH")) {
558 path := filepath.Join(dir, name)
559 if s, err := os.Stat(path); err != nil {
560 continue
561 } else if m := s.Mode(); !s.IsDir() && m&0111 != 0 {
562 return path
563 }
564 }
565 return name
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 {
Colin Cross3f40fa42015-01-30 17:27:36 -0800582 return fmt.Sprintf("%s/prebuilts/go/%s", c.srcDir, c.PrebuiltOS())
583}
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
Jingwen Chenc711fec2020-11-22 23:52:50 -0500640// EnvDeps returns the environment variables this build depends on. The first
641// call to this function blocks future reads from the environment.
Colin Cross1332b002015-04-07 17:11:30 -0700642func (c *config) EnvDeps() map[string]string {
Dan Willemsene7680ba2015-09-11 17:06:19 -0700643 c.envLock.Lock()
Colin Crossc0d58b42017-02-06 15:40:41 -0800644 defer c.envLock.Unlock()
Dan Willemsene7680ba2015-09-11 17:06:19 -0700645 c.envFrozen = true
Colin Cross68f55102015-03-25 14:43:57 -0700646 return c.envDeps
647}
Colin Cross35cec122015-04-02 14:37:16 -0700648
Dan Willemsen5ba07e82015-12-11 13:51:06 -0800649func (c *config) EmbeddedInMake() bool {
650 return c.inMake
651}
652
Nan Zhang581fd212018-01-10 16:06:12 -0800653func (c *config) BuildId() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800654 return String(c.productVariables.BuildId)
Nan Zhang581fd212018-01-10 16:06:12 -0800655}
656
Jingwen Chenc711fec2020-11-22 23:52:50 -0500657// BuildNumberFile returns the path to a text file containing metadata
658// representing the current build's number.
659//
660// Rules that want to reference the build number should read from this file
661// without depending on it. They will run whenever their other dependencies
662// require them to run and get the current build number. This ensures they don't
663// rebuild on every incremental build when the build number changes.
Colin Cross2a2e0db2020-02-21 16:55:46 -0800664func (c *config) BuildNumberFile(ctx PathContext) Path {
665 return PathForOutput(ctx, String(c.productVariables.BuildNumberFile))
Nan Zhang581fd212018-01-10 16:06:12 -0800666}
667
Jingwen Chenc711fec2020-11-22 23:52:50 -0500668// DeviceName returns the name of the current device target.
Colin Cross35cec122015-04-02 14:37:16 -0700669// TODO: take an AndroidModuleContext to select the device name for multi-device builds
Colin Cross1332b002015-04-07 17:11:30 -0700670func (c *config) DeviceName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800671 return *c.productVariables.DeviceName
Colin Cross35cec122015-04-02 14:37:16 -0700672}
673
Anton Hansson53c88442019-03-18 15:53:16 +0000674func (c *config) DeviceResourceOverlays() []string {
675 return c.productVariables.DeviceResourceOverlays
676}
677
678func (c *config) ProductResourceOverlays() []string {
679 return c.productVariables.ProductResourceOverlays
Colin Cross30e076a2015-04-13 13:58:27 -0700680}
681
Colin Crossbfd347d2018-05-09 11:11:35 -0700682func (c *config) PlatformVersionName() string {
683 return String(c.productVariables.Platform_version_name)
684}
685
Dan Albert4f378d72020-07-23 17:32:15 -0700686func (c *config) PlatformSdkVersion() ApiLevel {
687 return uncheckedFinalApiLevel(*c.productVariables.Platform_sdk_version)
Colin Cross30e076a2015-04-13 13:58:27 -0700688}
689
Colin Crossd09b0b62018-04-18 11:06:47 -0700690func (c *config) PlatformSdkCodename() string {
691 return String(c.productVariables.Platform_sdk_codename)
692}
693
Colin Cross092c9da2019-04-02 22:56:43 -0700694func (c *config) PlatformSecurityPatch() string {
695 return String(c.productVariables.Platform_security_patch)
696}
697
698func (c *config) PlatformPreviewSdkVersion() string {
699 return String(c.productVariables.Platform_preview_sdk_version)
700}
701
702func (c *config) PlatformMinSupportedTargetSdkVersion() string {
703 return String(c.productVariables.Platform_min_supported_target_sdk_version)
704}
705
706func (c *config) PlatformBaseOS() string {
707 return String(c.productVariables.Platform_base_os)
708}
709
Dan Albert1a246272020-07-06 14:49:35 -0700710func (c *config) MinSupportedSdkVersion() ApiLevel {
711 return uncheckedFinalApiLevel(16)
712}
713
714func (c *config) FinalApiLevels() []ApiLevel {
715 var levels []ApiLevel
Dan Albert4f378d72020-07-23 17:32:15 -0700716 for i := 1; i <= c.PlatformSdkVersion().FinalOrFutureInt(); i++ {
Dan Albert1a246272020-07-06 14:49:35 -0700717 levels = append(levels, uncheckedFinalApiLevel(i))
718 }
719 return levels
720}
721
722func (c *config) PreviewApiLevels() []ApiLevel {
723 var levels []ApiLevel
724 for i, codename := range c.PlatformVersionActiveCodenames() {
725 levels = append(levels, ApiLevel{
726 value: codename,
727 number: i,
728 isPreview: true,
729 })
730 }
731 return levels
732}
733
734func (c *config) AllSupportedApiLevels() []ApiLevel {
735 var levels []ApiLevel
736 levels = append(levels, c.FinalApiLevels()...)
737 return append(levels, c.PreviewApiLevels()...)
Dan Albertf5415d72017-08-17 16:19:59 -0700738}
739
Jingwen Chenc711fec2020-11-22 23:52:50 -0500740// DefaultAppTargetSdk returns the API level that platform apps are targeting.
741// This converts a codename to the exact ApiLevel it represents.
Dan Albert4f378d72020-07-23 17:32:15 -0700742func (c *config) DefaultAppTargetSdk(ctx EarlyModuleContext) ApiLevel {
Colin Crossd09b0b62018-04-18 11:06:47 -0700743 if Bool(c.productVariables.Platform_sdk_final) {
744 return c.PlatformSdkVersion()
Colin Crossd09b0b62018-04-18 11:06:47 -0700745 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500746 codename := c.PlatformSdkCodename()
747 if codename == "" {
748 return NoneApiLevel
749 }
750 if codename == "REL" {
751 panic("Platform_sdk_codename should not be REL when Platform_sdk_final is true")
752 }
753 return ApiLevelOrPanic(ctx, codename)
Colin Crossd09b0b62018-04-18 11:06:47 -0700754}
755
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800756func (c *config) AppsDefaultVersionName() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800757 return String(c.productVariables.AppsDefaultVersionName)
Colin Cross3bc7ffa2017-11-22 16:19:37 -0800758}
759
Dan Albert31384de2017-07-28 12:39:46 -0700760// Codenames that are active in the current lunch target.
761func (c *config) PlatformVersionActiveCodenames() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800762 return c.productVariables.Platform_version_active_codenames
Dan Albert31384de2017-07-28 12:39:46 -0700763}
764
Colin Crossface4e42017-10-30 17:32:15 -0700765func (c *config) ProductAAPTConfig() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800766 return c.productVariables.AAPTConfig
Colin Cross30e076a2015-04-13 13:58:27 -0700767}
768
Colin Crossface4e42017-10-30 17:32:15 -0700769func (c *config) ProductAAPTPreferredConfig() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800770 return String(c.productVariables.AAPTPreferredConfig)
Colin Cross30e076a2015-04-13 13:58:27 -0700771}
772
Colin Crossface4e42017-10-30 17:32:15 -0700773func (c *config) ProductAAPTCharacteristics() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800774 return String(c.productVariables.AAPTCharacteristics)
Colin Crossface4e42017-10-30 17:32:15 -0700775}
776
777func (c *config) ProductAAPTPrebuiltDPI() []string {
Colin Crossa74ca042019-01-31 14:31:51 -0800778 return c.productVariables.AAPTPrebuiltDPI
Colin Cross30e076a2015-04-13 13:58:27 -0700779}
780
Dan Willemsen34cc69e2015-09-23 15:26:20 -0700781func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800782 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800783 if defaultCert != "" {
784 return PathForSource(ctx, filepath.Dir(defaultCert))
Colin Cross61ae0b72017-12-01 17:16:02 -0800785 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500786 return PathForSource(ctx, "build/make/target/product/security")
Colin Cross30e076a2015-04-13 13:58:27 -0700787}
788
Colin Crosse1731a52017-12-14 11:22:55 -0800789func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800790 defaultCert := String(c.productVariables.DefaultAppCertificate)
Colin Cross61ae0b72017-12-01 17:16:02 -0800791 if defaultCert != "" {
Colin Crosse1731a52017-12-14 11:22:55 -0800792 return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8")
Colin Cross61ae0b72017-12-01 17:16:02 -0800793 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500794 defaultDir := c.DefaultAppCertificateDir(ctx)
795 return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8")
Colin Cross30e076a2015-04-13 13:58:27 -0700796}
Colin Cross6ff51382015-12-17 16:39:19 -0800797
Jiyong Park9335a262018-12-24 11:31:58 +0900798func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
799 // TODO(b/121224311): define another variable such as TARGET_APEX_KEY_OVERRIDE
800 defaultCert := String(c.productVariables.DefaultAppCertificate)
Dan Willemsen412160e2019-04-09 21:36:26 -0700801 if defaultCert == "" || filepath.Dir(defaultCert) == "build/make/target/product/security" {
Jiyong Park9335a262018-12-24 11:31:58 +0900802 // When defaultCert is unset or is set to the testkeys path, use the APEX keys
803 // that is under the module dir
Colin Cross07e51612019-03-05 12:46:40 -0800804 return pathForModuleSrc(ctx)
Jiyong Park9335a262018-12-24 11:31:58 +0900805 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500806 // If not, APEX keys are under the specified directory
807 return PathForSource(ctx, filepath.Dir(defaultCert))
Jiyong Park9335a262018-12-24 11:31:58 +0900808}
809
Jingwen Chenc711fec2020-11-22 23:52:50 -0500810// AllowMissingDependencies configures Blueprint/Soong to not fail when modules
811// are configured to depend on non-existent modules. Note that this does not
812// affect missing input dependencies at the Ninja level.
Colin Cross6ff51382015-12-17 16:39:19 -0800813func (c *config) AllowMissingDependencies() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800814 return Bool(c.productVariables.Allow_missing_dependencies)
Colin Cross6ff51382015-12-17 16:39:19 -0800815}
Dan Willemsen322acaf2016-01-12 23:07:05 -0800816
Jeongik Cha816a23a2020-07-08 01:09:23 +0900817// Returns true if a full platform source tree cannot be assumed.
Colin Crossfc3674a2017-09-18 17:41:52 -0700818func (c *config) UnbundledBuild() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800819 return Bool(c.productVariables.Unbundled_build)
Colin Crossfc3674a2017-09-18 17:41:52 -0700820}
821
Martin Stjernholmfd9eb4b2020-06-17 01:13:15 +0100822// Returns true if building apps that aren't bundled with the platform.
823// UnbundledBuild() is always true when this is true.
824func (c *config) UnbundledBuildApps() bool {
825 return Bool(c.productVariables.Unbundled_build_apps)
826}
827
Jeongik Cha816a23a2020-07-08 01:09:23 +0900828// Returns true if building modules against prebuilt SDKs.
829func (c *config) AlwaysUsePrebuiltSdks() bool {
830 return Bool(c.productVariables.Always_use_prebuilt_sdks)
Colin Cross1f367bf2018-12-18 22:46:24 -0800831}
832
Paul Duffin9a89a2a2020-10-28 19:20:06 +0000833// Returns true if the boot jars check should be skipped.
834func (c *config) SkipBootJarsCheck() bool {
835 return Bool(c.productVariables.Skip_boot_jars_check)
836}
837
Doug Horn21b94272019-01-16 12:06:11 -0800838func (c *config) Fuchsia() bool {
839 return Bool(c.productVariables.Fuchsia)
840}
841
Colin Cross126a25c2017-10-31 13:55:34 -0700842func (c *config) MinimizeJavaDebugInfo() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800843 return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng)
Colin Cross126a25c2017-10-31 13:55:34 -0700844}
845
Colin Crossed064c02018-09-05 16:28:13 -0700846func (c *config) Debuggable() bool {
847 return Bool(c.productVariables.Debuggable)
848}
849
Jaewoong Jung1d6eb682018-11-29 15:08:44 -0800850func (c *config) Eng() bool {
851 return Bool(c.productVariables.Eng)
852}
853
Jiyong Park8d52f862018-07-07 18:02:07 +0900854func (c *config) DevicePrimaryArchType() ArchType {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700855 return c.Targets[Android][0].Arch.ArchType
Jiyong Park8d52f862018-07-07 18:02:07 +0900856}
857
Colin Cross893d8162017-04-26 17:34:03 -0700858func (c *config) SkipMegaDeviceInstall(path string) bool {
859 return Bool(c.Mega_device) &&
860 strings.HasPrefix(path, filepath.Join(c.buildDir, "target", "product"))
Dan Willemsen322acaf2016-01-12 23:07:05 -0800861}
Colin Cross16b23492016-01-06 14:41:07 -0800862
863func (c *config) SanitizeHost() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800864 return append([]string(nil), c.productVariables.SanitizeHost...)
Colin Cross16b23492016-01-06 14:41:07 -0800865}
866
867func (c *config) SanitizeDevice() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800868 return append([]string(nil), c.productVariables.SanitizeDevice...)
Colin Cross23ae82a2016-11-02 14:34:39 -0700869}
870
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700871func (c *config) SanitizeDeviceDiag() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800872 return append([]string(nil), c.productVariables.SanitizeDeviceDiag...)
Ivan Lozano0c3a1ef2017-06-28 09:10:48 -0700873}
874
Colin Cross23ae82a2016-11-02 14:34:39 -0700875func (c *config) SanitizeDeviceArch() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800876 return append([]string(nil), c.productVariables.SanitizeDeviceArch...)
Colin Cross16b23492016-01-06 14:41:07 -0800877}
Colin Crossa1ad8d12016-06-01 17:09:44 -0700878
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800879func (c *config) EnableCFI() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800880 if c.productVariables.EnableCFI == nil {
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800881 return true
Vishwath Mohanc32c3eb2017-01-24 14:20:54 -0800882 }
Jingwen Chenc711fec2020-11-22 23:52:50 -0500883 return *c.productVariables.EnableCFI
Vishwath Mohan1b017a72017-01-19 13:54:55 -0800884}
885
Kostya Kortchinskyd5275c82019-02-01 08:42:56 -0800886func (c *config) DisableScudo() bool {
887 return Bool(c.productVariables.DisableScudo)
888}
889
Colin Crossa1ad8d12016-06-01 17:09:44 -0700890func (c *config) Android64() bool {
Dan Willemsen0ef639b2018-10-10 17:02:29 -0700891 for _, t := range c.Targets[Android] {
Colin Crossa1ad8d12016-06-01 17:09:44 -0700892 if t.Arch.ArchType.Multilib == "lib64" {
893 return true
894 }
895 }
896
897 return false
898}
Colin Cross9272ade2016-08-17 15:24:12 -0700899
Colin Cross9d45bb72016-08-29 16:14:13 -0700900func (c *config) UseGoma() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800901 return Bool(c.productVariables.UseGoma)
Colin Cross9d45bb72016-08-29 16:14:13 -0700902}
903
Ramy Medhatbbf25672019-07-17 12:30:04 +0000904func (c *config) UseRBE() bool {
905 return Bool(c.productVariables.UseRBE)
906}
907
Ramy Medhat8ea054a2020-01-27 14:19:44 -0500908func (c *config) UseRBEJAVAC() bool {
909 return Bool(c.productVariables.UseRBEJAVAC)
910}
911
912func (c *config) UseRBER8() bool {
913 return Bool(c.productVariables.UseRBER8)
914}
915
916func (c *config) UseRBED8() bool {
917 return Bool(c.productVariables.UseRBED8)
918}
919
Colin Cross8b8bec32019-11-15 13:18:43 -0800920func (c *config) UseRemoteBuild() bool {
921 return c.UseGoma() || c.UseRBE()
922}
923
Colin Cross66548102018-06-19 22:47:35 -0700924func (c *config) RunErrorProne() bool {
925 return c.IsEnvTrue("RUN_ERROR_PRONE")
926}
927
Jingwen Chenc711fec2020-11-22 23:52:50 -0500928// XrefCorpusName returns the Kythe cross-reference corpus name.
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800929func (c *config) XrefCorpusName() string {
930 return c.Getenv("XREF_CORPUS")
931}
932
Jingwen Chenc711fec2020-11-22 23:52:50 -0500933// XrefCuEncoding returns the compilation unit encoding to use for Kythe code
934// xrefs. Can be 'json' (default), 'proto' or 'all'.
Sasha Smundak6c2d4f92020-01-09 17:34:23 -0800935func (c *config) XrefCuEncoding() string {
936 if enc := c.Getenv("KYTHE_KZIP_ENCODING"); enc != "" {
937 return enc
938 }
939 return "json"
940}
941
Sasha Smundak2a4549e2018-11-05 16:49:08 -0800942func (c *config) EmitXrefRules() bool {
943 return c.XrefCorpusName() != ""
944}
945
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700946func (c *config) ClangTidy() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800947 return Bool(c.productVariables.ClangTidy)
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700948}
949
950func (c *config) TidyChecks() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800951 if c.productVariables.TidyChecks == nil {
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700952 return ""
953 }
Dan Willemsen45133ac2018-03-09 21:22:06 -0800954 return *c.productVariables.TidyChecks
Dan Willemsena03cf6d2016-09-26 15:45:04 -0700955}
956
Colin Cross0f4e0d62016-07-27 10:56:55 -0700957func (c *config) LibartImgHostBaseAddress() string {
958 return "0x60000000"
959}
960
961func (c *config) LibartImgDeviceBaseAddress() string {
Elliott Hughesda3a0712020-03-06 16:55:28 -0800962 return "0x70000000"
Colin Cross0f4e0d62016-07-27 10:56:55 -0700963}
964
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -0800965func (c *config) ArtUseReadBarrier() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800966 return Bool(c.productVariables.ArtUseReadBarrier)
Hiroshi Yamauchie2a10632016-12-19 13:44:41 -0800967}
968
Jingwen Chenc711fec2020-11-22 23:52:50 -0500969// Enforce Runtime Resource Overlays for a module. RROs supersede static RROs,
970// but some modules still depend on it.
971//
972// More info: https://source.android.com/devices/architecture/rros
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700973func (c *config) EnforceRROForModule(name string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800974 enforceList := c.productVariables.EnforceRROTargets
Jeongik Chab9b13272020-03-09 12:37:05 +0900975 // TODO(b/150820813) Some modules depend on static overlay, remove this after eliminating the dependency.
976 exemptedList := c.productVariables.EnforceRROExemptedTargets
Roland Levillainf6cc2612020-07-09 16:58:14 +0100977 if len(exemptedList) > 0 {
Jeongik Chab9b13272020-03-09 12:37:05 +0900978 if InList(name, exemptedList) {
979 return false
980 }
981 }
Roland Levillainf6cc2612020-07-09 16:58:14 +0100982 if len(enforceList) > 0 {
Yo Chiang4ebd06a2019-10-01 13:13:41 +0800983 if InList("*", enforceList) {
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700984 return true
985 }
Colin Crossa74ca042019-01-31 14:31:51 -0800986 return InList(name, enforceList)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700987 }
988 return false
989}
990
Jaewoong Jungc779cd42020-10-06 18:56:10 -0700991func (c *config) EnforceRROExemptedForModule(name string) bool {
992 return InList(name, c.productVariables.EnforceRROExemptedTargets)
993}
994
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700995func (c *config) EnforceRROExcludedOverlay(path string) bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -0800996 excluded := c.productVariables.EnforceRROExcludedOverlays
Roland Levillainf6cc2612020-07-09 16:58:14 +0100997 if len(excluded) > 0 {
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800998 return HasAnyPrefix(path, excluded)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -0700999 }
1000 return false
1001}
1002
1003func (c *config) ExportedNamespaces() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001004 return append([]string(nil), c.productVariables.NamespacesToExport...)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001005}
1006
1007func (c *config) HostStaticBinaries() bool {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001008 return Bool(c.productVariables.HostStaticBinaries)
Dan Willemsen3fb1fae2018-03-12 15:30:26 -07001009}
1010
Colin Cross5a0dcd52018-10-05 14:20:06 -07001011func (c *config) UncompressPrivAppDex() bool {
1012 return Bool(c.productVariables.UncompressPrivAppDex)
1013}
1014
1015func (c *config) ModulesLoadedByPrivilegedModules() []string {
1016 return c.productVariables.ModulesLoadedByPrivilegedModules
1017}
1018
Jingwen Chenc711fec2020-11-22 23:52:50 -05001019// DexpreoptGlobalConfigPath returns the path to the dexpreopt.config file in
1020// the output directory, if it was created during the product configuration
1021// phase by Kati.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001022func (c *config) DexpreoptGlobalConfigPath(ctx PathContext) OptionalPath {
Colin Cross988414c2020-01-11 01:11:46 +00001023 if c.productVariables.DexpreoptGlobalConfig == nil {
Jingwen Chenebb0b572020-11-02 00:24:57 -05001024 return OptionalPathForPath(nil)
1025 }
1026 return OptionalPathForPath(
1027 pathForBuildToolDep(ctx, *c.productVariables.DexpreoptGlobalConfig))
1028}
1029
Jingwen Chenc711fec2020-11-22 23:52:50 -05001030// DexpreoptGlobalConfig returns the raw byte contents of the dexpreopt global
1031// configuration. Since the configuration file was created by Kati during
1032// product configuration (externally of soong_build), it's not tracked, so we
1033// also manually add a Ninja file dependency on the configuration file to the
1034// rule that creates the main build.ninja file. This ensures that build.ninja is
1035// regenerated correctly if dexpreopt.config changes.
Jingwen Chenebb0b572020-11-02 00:24:57 -05001036func (c *config) DexpreoptGlobalConfig(ctx PathContext) ([]byte, error) {
1037 path := c.DexpreoptGlobalConfigPath(ctx)
1038 if !path.Valid() {
Colin Cross988414c2020-01-11 01:11:46 +00001039 return nil, nil
1040 }
Jingwen Chenebb0b572020-11-02 00:24:57 -05001041 ctx.AddNinjaFileDeps(path.String())
1042 return ioutil.ReadFile(absolutePath(path.String()))
Colin Cross43f08db2018-11-12 10:13:39 -08001043}
1044
David Brazdil91b4e3e2019-01-23 21:04:05 +00001045func (c *config) FrameworksBaseDirExists(ctx PathContext) bool {
1046 return ExistentPathForSource(ctx, "frameworks", "base").Valid()
1047}
1048
Inseob Kimae553032019-05-14 18:52:49 +09001049func (c *config) VndkSnapshotBuildArtifacts() bool {
1050 return Bool(c.productVariables.VndkSnapshotBuildArtifacts)
1051}
1052
Colin Cross3b19f5d2019-09-17 14:45:31 -07001053func (c *config) HasMultilibConflict(arch ArchType) bool {
1054 return c.multilibConflicts[arch]
1055}
1056
Colin Cross9272ade2016-08-17 15:24:12 -07001057func (c *deviceConfig) Arches() []Arch {
1058 var arches []Arch
Dan Willemsen0ef639b2018-10-10 17:02:29 -07001059 for _, target := range c.config.Targets[Android] {
Colin Cross9272ade2016-08-17 15:24:12 -07001060 arches = append(arches, target.Arch)
1061 }
1062 return arches
1063}
Dan Willemsend2ede872016-11-18 14:54:24 -08001064
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001065func (c *deviceConfig) BinderBitness() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001066 is32BitBinder := c.config.productVariables.Binder32bit
Jayant Chowdhary34ce67d2018-03-08 11:00:50 -08001067 if is32BitBinder != nil && *is32BitBinder {
1068 return "32"
1069 }
1070 return "64"
1071}
1072
Dan Willemsen4353bc42016-12-05 17:16:02 -08001073func (c *deviceConfig) VendorPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001074 if c.config.productVariables.VendorPath != nil {
1075 return *c.config.productVariables.VendorPath
Dan Willemsen4353bc42016-12-05 17:16:02 -08001076 }
1077 return "vendor"
1078}
1079
Justin Yun71549282017-11-17 12:10:28 +09001080func (c *deviceConfig) VndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001081 return String(c.config.productVariables.DeviceVndkVersion)
Justin Yun71549282017-11-17 12:10:28 +09001082}
1083
Jeongik Cha219141c2020-08-06 23:00:37 +09001084func (c *deviceConfig) CurrentApiLevelForVendorModules() string {
1085 return StringDefault(c.config.productVariables.DeviceCurrentApiLevelForVendorModules, "current")
1086}
1087
Justin Yun8fe12122017-12-07 17:18:15 +09001088func (c *deviceConfig) PlatformVndkVersion() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001089 return String(c.config.productVariables.Platform_vndk_version)
Justin Yun8fe12122017-12-07 17:18:15 +09001090}
1091
Justin Yun5f7f7e82019-11-18 19:52:14 +09001092func (c *deviceConfig) ProductVndkVersion() string {
1093 return String(c.config.productVariables.ProductVndkVersion)
1094}
1095
Justin Yun71549282017-11-17 12:10:28 +09001096func (c *deviceConfig) ExtraVndkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001097 return c.config.productVariables.ExtraVndkVersions
Dan Willemsend2ede872016-11-18 14:54:24 -08001098}
Jack He8cc71432016-12-08 15:45:07 -08001099
Vic Yangefd249e2018-11-12 20:19:56 -08001100func (c *deviceConfig) VndkUseCoreVariant() bool {
1101 return Bool(c.config.productVariables.VndkUseCoreVariant)
1102}
1103
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001104func (c *deviceConfig) SystemSdkVersions() []string {
Colin Crossa74ca042019-01-31 14:31:51 -08001105 return c.config.productVariables.DeviceSystemSdkVersions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001106}
1107
1108func (c *deviceConfig) PlatformSystemSdkVersions() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001109 return c.config.productVariables.Platform_systemsdk_versions
Jiyong Park1a5d7b12018-01-15 15:05:10 +09001110}
1111
Jiyong Park2db76922017-11-08 16:03:48 +09001112func (c *deviceConfig) OdmPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001113 if c.config.productVariables.OdmPath != nil {
1114 return *c.config.productVariables.OdmPath
Jiyong Park2db76922017-11-08 16:03:48 +09001115 }
1116 return "odm"
1117}
1118
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001119func (c *deviceConfig) ProductPath() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001120 if c.config.productVariables.ProductPath != nil {
1121 return *c.config.productVariables.ProductPath
Jiyong Park2db76922017-11-08 16:03:48 +09001122 }
Jaekyun Seok5cfbfbb2018-01-10 19:00:15 +09001123 return "product"
Jiyong Park2db76922017-11-08 16:03:48 +09001124}
1125
Justin Yund5f6c822019-06-25 16:47:17 +09001126func (c *deviceConfig) SystemExtPath() string {
1127 if c.config.productVariables.SystemExtPath != nil {
1128 return *c.config.productVariables.SystemExtPath
Dario Frenifd05a742018-05-29 13:28:54 +01001129 }
Justin Yund5f6c822019-06-25 16:47:17 +09001130 return "system_ext"
Dario Frenifd05a742018-05-29 13:28:54 +01001131}
1132
Jack He8cc71432016-12-08 15:45:07 -08001133func (c *deviceConfig) BtConfigIncludeDir() string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001134 return String(c.config.productVariables.BtConfigIncludeDir)
Jack He8cc71432016-12-08 15:45:07 -08001135}
Dan Willemsen581341d2017-02-09 16:16:31 -08001136
Jiyong Parkd773eb32017-07-03 13:18:12 +09001137func (c *deviceConfig) DeviceKernelHeaderDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001138 return c.config.productVariables.DeviceKernelHeaders
Jiyong Parkd773eb32017-07-03 13:18:12 +09001139}
1140
Yi Kongceb5b762020-03-20 15:22:27 +08001141func (c *deviceConfig) SamplingPGO() bool {
1142 return Bool(c.config.productVariables.SamplingPGO)
1143}
1144
Roland Levillainada12702020-06-09 13:07:36 +01001145// JavaCoverageEnabledForPath returns whether Java code coverage is enabled for
1146// path. Coverage is enabled by default when the product variable
1147// JavaCoveragePaths is empty. If JavaCoveragePaths is not empty, coverage is
1148// enabled for any path which is part of this variable (and not part of the
1149// JavaCoverageExcludePaths product variable). Value "*" in JavaCoveragePaths
1150// represents any path.
1151func (c *deviceConfig) JavaCoverageEnabledForPath(path string) bool {
1152 coverage := false
Chris Gross2f748692020-06-24 20:36:59 +00001153 if len(c.config.productVariables.JavaCoveragePaths) == 0 ||
Roland Levillainada12702020-06-09 13:07:36 +01001154 InList("*", c.config.productVariables.JavaCoveragePaths) ||
1155 HasAnyPrefix(path, c.config.productVariables.JavaCoveragePaths) {
1156 coverage = true
1157 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001158 if coverage && len(c.config.productVariables.JavaCoverageExcludePaths) > 0 {
Roland Levillainada12702020-06-09 13:07:36 +01001159 if HasAnyPrefix(path, c.config.productVariables.JavaCoverageExcludePaths) {
1160 coverage = false
1161 }
1162 }
1163 return coverage
1164}
1165
Colin Cross1a6acd42020-06-16 17:51:46 -07001166// Returns true if gcov or clang coverage is enabled.
Dan Willemsen581341d2017-02-09 16:16:31 -08001167func (c *deviceConfig) NativeCoverageEnabled() bool {
Colin Cross1a6acd42020-06-16 17:51:46 -07001168 return Bool(c.config.productVariables.GcovCoverage) ||
1169 Bool(c.config.productVariables.ClangCoverage)
Dan Willemsen581341d2017-02-09 16:16:31 -08001170}
1171
Oliver Nguyen1382ab62019-12-06 15:22:41 -08001172func (c *deviceConfig) ClangCoverageEnabled() bool {
1173 return Bool(c.config.productVariables.ClangCoverage)
1174}
1175
Colin Cross1a6acd42020-06-16 17:51:46 -07001176func (c *deviceConfig) GcovCoverageEnabled() bool {
1177 return Bool(c.config.productVariables.GcovCoverage)
1178}
1179
Roland Levillain4f5297b2020-06-09 12:44:06 +01001180// NativeCoverageEnabledForPath returns whether (GCOV- or Clang-based) native
1181// code coverage is enabled for path. By default, coverage is not enabled for a
1182// given path unless it is part of the NativeCoveragePaths product variable (and
1183// not part of the NativeCoverageExcludePaths product variable). Value "*" in
1184// NativeCoveragePaths represents any path.
1185func (c *deviceConfig) NativeCoverageEnabledForPath(path string) bool {
Ryan Campbell469a18a2017-02-27 09:01:54 -08001186 coverage := false
Roland Levillainf6cc2612020-07-09 16:58:14 +01001187 if len(c.config.productVariables.NativeCoveragePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001188 if InList("*", c.config.productVariables.NativeCoveragePaths) || HasAnyPrefix(path, c.config.productVariables.NativeCoveragePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001189 coverage = true
Dan Willemsen581341d2017-02-09 16:16:31 -08001190 }
1191 }
Roland Levillainf6cc2612020-07-09 16:58:14 +01001192 if coverage && len(c.config.productVariables.NativeCoverageExcludePaths) > 0 {
Roland Levillain4f5297b2020-06-09 12:44:06 +01001193 if HasAnyPrefix(path, c.config.productVariables.NativeCoverageExcludePaths) {
Ivan Lozano5f595532017-07-13 14:46:05 -07001194 coverage = false
Ryan Campbell469a18a2017-02-27 09:01:54 -08001195 }
1196 }
1197 return coverage
Dan Willemsen581341d2017-02-09 16:16:31 -08001198}
Ivan Lozano5f595532017-07-13 14:46:05 -07001199
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001200func (c *deviceConfig) PgoAdditionalProfileDirs() []string {
Dan Willemsen45133ac2018-03-09 21:22:06 -08001201 return c.config.productVariables.PgoAdditionalProfileDirs
Pirama Arumuga Nainar49540802018-01-29 23:11:42 -08001202}
1203
Tri Vo35a51432018-03-25 20:00:00 -07001204func (c *deviceConfig) VendorSepolicyDirs() []string {
1205 return c.config.productVariables.BoardVendorSepolicyDirs
1206}
1207
1208func (c *deviceConfig) OdmSepolicyDirs() []string {
1209 return c.config.productVariables.BoardOdmSepolicyDirs
1210}
1211
Felixa20a8752020-05-17 18:28:35 +02001212func (c *deviceConfig) SystemExtPublicSepolicyDirs() []string {
1213 return c.config.productVariables.SystemExtPublicSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001214}
1215
Felixa20a8752020-05-17 18:28:35 +02001216func (c *deviceConfig) SystemExtPrivateSepolicyDirs() []string {
1217 return c.config.productVariables.SystemExtPrivateSepolicyDirs
Tri Vo35a51432018-03-25 20:00:00 -07001218}
1219
Inseob Kim0866b002019-04-15 20:21:29 +09001220func (c *deviceConfig) SepolicyM4Defs() []string {
1221 return c.config.productVariables.BoardSepolicyM4Defs
1222}
1223
Jiyong Park7f67f482019-01-05 12:57:48 +09001224func (c *deviceConfig) OverrideManifestPackageNameFor(name string) (manifestName string, overridden bool) {
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001225 return findOverrideValue(c.config.productVariables.ManifestPackageNameOverrides, name,
1226 "invalid override rule %q in PRODUCT_MANIFEST_PACKAGE_NAME_OVERRIDES should be <module_name>:<manifest_name>")
1227}
1228
1229func (c *deviceConfig) OverrideCertificateFor(name string) (certificatePath string, overridden bool) {
Jaewoong Jungacb6db32019-02-28 16:22:30 +00001230 return findOverrideValue(c.config.productVariables.CertificateOverrides, name,
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001231 "invalid override rule %q in PRODUCT_CERTIFICATE_OVERRIDES should be <module_name>:<certificate_module_name>")
1232}
1233
Jaewoong Jung9d22a912019-01-23 16:27:47 -08001234func (c *deviceConfig) OverridePackageNameFor(name string) string {
1235 newName, overridden := findOverrideValue(
1236 c.config.productVariables.PackageNameOverrides,
1237 name,
1238 "invalid override rule %q in PRODUCT_PACKAGE_NAME_OVERRIDES should be <module_name>:<package_name>")
1239 if overridden {
1240 return newName
1241 }
1242 return name
1243}
1244
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001245func findOverrideValue(overrides []string, name string, errorMsg string) (newValue string, overridden bool) {
Jiyong Park7f67f482019-01-05 12:57:48 +09001246 if overrides == nil || len(overrides) == 0 {
1247 return "", false
1248 }
1249 for _, o := range overrides {
1250 split := strings.Split(o, ":")
1251 if len(split) != 2 {
1252 // This shouldn't happen as this is first checked in make, but just in case.
Jaewoong Jung2ad817c2019-01-18 14:27:16 -08001253 panic(fmt.Errorf(errorMsg, o))
Jiyong Park7f67f482019-01-05 12:57:48 +09001254 }
1255 if matchPattern(split[0], name) {
1256 return substPattern(split[0], split[1], name), true
1257 }
1258 }
1259 return "", false
1260}
1261
Ivan Lozano5f595532017-07-13 14:46:05 -07001262func (c *config) IntegerOverflowDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001263 if len(c.productVariables.IntegerOverflowExcludePaths) == 0 {
Ivan Lozano5f595532017-07-13 14:46:05 -07001264 return false
1265 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001266 return HasAnyPrefix(path, c.productVariables.IntegerOverflowExcludePaths)
Ivan Lozano5f595532017-07-13 14:46:05 -07001267}
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001268
1269func (c *config) CFIDisabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001270 if len(c.productVariables.CFIExcludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001271 return false
1272 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001273 return HasAnyPrefix(path, c.productVariables.CFIExcludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001274}
1275
1276func (c *config) CFIEnabledForPath(path string) bool {
Roland Levillainf6cc2612020-07-09 16:58:14 +01001277 if len(c.productVariables.CFIIncludePaths) == 0 {
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001278 return false
1279 }
Jaewoong Jung3aff5782020-02-11 07:54:35 -08001280 return HasAnyPrefix(path, c.productVariables.CFIIncludePaths)
Vishwath Mohan1fa3ac52017-10-31 02:26:14 -07001281}
Colin Crosse15ddaf2017-12-04 11:24:31 -08001282
Dan Willemsen0fe78662018-03-26 12:41:18 -07001283func (c *config) VendorConfig(name string) VendorConfig {
Colin Cross9d34f352019-11-22 16:03:51 -08001284 return soongconfig.Config(c.productVariables.VendorVars[name])
Dan Willemsen0fe78662018-03-26 12:41:18 -07001285}
1286
Colin Cross395f2cf2018-10-24 16:10:32 -07001287func (c *config) NdkAbis() bool {
1288 return Bool(c.productVariables.Ndk_abis)
1289}
1290
Martin Stjernholmc1ecc432019-11-15 15:00:31 +00001291func (c *config) AmlAbis() bool {
1292 return Bool(c.productVariables.Aml_abis)
1293}
1294
Dan Albert23d37e02018-11-28 08:30:10 -08001295func (c *config) ExcludeDraftNdkApis() bool {
1296 return Bool(c.productVariables.Exclude_draft_ndk_apis)
1297}
1298
Jiyong Park8fd61922018-11-08 02:50:25 +09001299func (c *config) FlattenApex() bool {
Roland Levillaina3863212019-08-12 19:56:16 +01001300 return Bool(c.productVariables.Flatten_apex)
Jiyong Park8fd61922018-11-08 02:50:25 +09001301}
1302
Jeongik Chac9464142019-01-07 12:07:27 +09001303func (c *config) EnforceSystemCertificate() bool {
1304 return Bool(c.productVariables.EnforceSystemCertificate)
1305}
1306
Colin Cross440e0d02020-06-11 11:32:11 -07001307func (c *config) EnforceSystemCertificateAllowList() []string {
1308 return c.productVariables.EnforceSystemCertificateAllowList
Jeongik Chac9464142019-01-07 12:07:27 +09001309}
1310
Jeongik Cha2cc570d2019-10-29 15:44:45 +09001311func (c *config) EnforceProductPartitionInterface() bool {
1312 return Bool(c.productVariables.EnforceProductPartitionInterface)
1313}
1314
Jooyung Han3ab2c3e2019-12-05 16:27:44 +09001315func (c *config) InstallExtraFlattenedApexes() bool {
1316 return Bool(c.productVariables.InstallExtraFlattenedApexes)
1317}
1318
Colin Crossf24a22a2019-01-31 14:12:44 -08001319func (c *config) ProductHiddenAPIStubs() []string {
1320 return c.productVariables.ProductHiddenAPIStubs
Colin Cross8faf8fc2019-01-16 15:15:52 -08001321}
1322
Colin Crossf24a22a2019-01-31 14:12:44 -08001323func (c *config) ProductHiddenAPIStubsSystem() []string {
1324 return c.productVariables.ProductHiddenAPIStubsSystem
Colin Cross8faf8fc2019-01-16 15:15:52 -08001325}
1326
Colin Crossf24a22a2019-01-31 14:12:44 -08001327func (c *config) ProductHiddenAPIStubsTest() []string {
1328 return c.productVariables.ProductHiddenAPIStubsTest
Colin Cross8faf8fc2019-01-16 15:15:52 -08001329}
Dan Willemsen71c74602019-04-10 12:27:35 -07001330
Dan Willemsen54879d12019-04-18 10:08:46 -07001331func (c *deviceConfig) TargetFSConfigGen() []string {
Dan Willemsen71c74602019-04-10 12:27:35 -07001332 return c.config.productVariables.TargetFSConfigGen
1333}
Inseob Kim0866b002019-04-15 20:21:29 +09001334
1335func (c *config) ProductPublicSepolicyDirs() []string {
1336 return c.productVariables.ProductPublicSepolicyDirs
1337}
1338
1339func (c *config) ProductPrivateSepolicyDirs() []string {
1340 return c.productVariables.ProductPrivateSepolicyDirs
1341}
1342
1343func (c *config) ProductCompatibleProperty() bool {
1344 return Bool(c.productVariables.ProductCompatibleProperty)
1345}
Inseob Kim1f086e22019-05-09 13:29:15 +09001346
Colin Cross50ddcc42019-05-16 12:28:22 -07001347func (c *config) MissingUsesLibraries() []string {
1348 return c.productVariables.MissingUsesLibraries
1349}
1350
Inseob Kim1f086e22019-05-09 13:29:15 +09001351func (c *deviceConfig) DeviceArch() string {
1352 return String(c.config.productVariables.DeviceArch)
1353}
1354
1355func (c *deviceConfig) DeviceArchVariant() string {
1356 return String(c.config.productVariables.DeviceArchVariant)
1357}
1358
1359func (c *deviceConfig) DeviceSecondaryArch() string {
1360 return String(c.config.productVariables.DeviceSecondaryArch)
1361}
1362
1363func (c *deviceConfig) DeviceSecondaryArchVariant() string {
1364 return String(c.config.productVariables.DeviceSecondaryArchVariant)
1365}
Yifan Hong82db7352020-01-21 16:12:26 -08001366
1367func (c *deviceConfig) BoardUsesRecoveryAsBoot() bool {
1368 return Bool(c.config.productVariables.BoardUsesRecoveryAsBoot)
1369}
Yifan Hong97365ee2020-07-29 09:51:57 -07001370
1371func (c *deviceConfig) BoardKernelBinaries() []string {
1372 return c.config.productVariables.BoardKernelBinaries
1373}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001374
Yifan Hong42bef8d2020-08-05 14:36:09 -07001375func (c *deviceConfig) BoardKernelModuleInterfaceVersions() []string {
1376 return c.config.productVariables.BoardKernelModuleInterfaceVersions
1377}
1378
Yifan Hongdd8dacc2020-10-21 15:40:17 -07001379func (c *deviceConfig) BoardMoveRecoveryResourcesToVendorBoot() bool {
1380 return Bool(c.config.productVariables.BoardMoveRecoveryResourcesToVendorBoot)
1381}
1382
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001383// The ConfiguredJarList struct provides methods for handling a list of (apex, jar) pairs.
1384// Such lists are used in the build system for things like bootclasspath jars or system server jars.
1385// The apex part is either an apex name, or a special names "platform" or "system_ext". Jar is a
1386// module name. The pairs come from Make product variables as a list of colon-separated strings.
1387//
1388// Examples:
1389// - "com.android.art:core-oj"
1390// - "platform:framework"
1391// - "system_ext:foo"
1392//
1393type ConfiguredJarList struct {
Jingwen Chenc711fec2020-11-22 23:52:50 -05001394 // A list of apex components, which can be an apex name,
1395 // or special names like "platform" or "system_ext".
1396 apexes []string
1397
1398 // A list of jar module name components.
1399 jars []string
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001400}
1401
Jingwen Chenc711fec2020-11-22 23:52:50 -05001402// Len returns the length of the list of jars.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001403func (l *ConfiguredJarList) Len() int {
1404 return len(l.jars)
1405}
1406
Jingwen Chenc711fec2020-11-22 23:52:50 -05001407// Jar returns the idx-th jar component of (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001408func (l *ConfiguredJarList) Jar(idx int) string {
1409 return l.jars[idx]
1410}
1411
Jingwen Chenc711fec2020-11-22 23:52:50 -05001412// Apex returns the idx-th apex component of (apex, jar) pairs.
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001413func (l *ConfiguredJarList) Apex(idx int) string {
1414 return l.apexes[idx]
1415}
1416
Jingwen Chenc711fec2020-11-22 23:52:50 -05001417// ContainsJar returns true if the (apex, jar) pairs contains a pair with the
1418// given jar module name.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001419func (l *ConfiguredJarList) ContainsJar(jar string) bool {
1420 return InList(jar, l.jars)
1421}
1422
1423// If the list contains the given (apex, jar) pair.
1424func (l *ConfiguredJarList) containsApexJarPair(apex, jar string) bool {
1425 for i := 0; i < l.Len(); i++ {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001426 if apex == l.apexes[i] && jar == l.jars[i] {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001427 return true
1428 }
1429 }
1430 return false
1431}
1432
Jingwen Chenc711fec2020-11-22 23:52:50 -05001433// IndexOfJar returns the first pair with the given jar name on the list, or -1
1434// if not found.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001435func (l *ConfiguredJarList) IndexOfJar(jar string) int {
1436 return IndexList(jar, l.jars)
1437}
1438
Paul Duffin7d584e92020-10-23 18:26:03 +01001439func copyAndAppend(list []string, item string) []string {
1440 // Create the result list to be 1 longer than the input.
1441 result := make([]string, len(list)+1)
1442
1443 // Copy the whole input list into the result.
1444 count := copy(result, list)
1445
1446 // Insert the extra item at the end.
1447 result[count] = item
1448
1449 return result
1450}
1451
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001452// Append an (apex, jar) pair to the list.
Paul Duffin7d584e92020-10-23 18:26:03 +01001453func (l *ConfiguredJarList) Append(apex string, jar string) ConfiguredJarList {
1454 // Create a copy of the backing arrays before appending to avoid sharing backing
1455 // arrays that are mutated across instances.
1456 apexes := copyAndAppend(l.apexes, apex)
1457 jars := copyAndAppend(l.jars, jar)
1458
1459 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001460}
1461
Jingwen Chenc711fec2020-11-22 23:52:50 -05001462// RemoveList filters out a list of (apex, jar) pairs from the receiving list of pairs.
Paul Duffin7d584e92020-10-23 18:26:03 +01001463func (l *ConfiguredJarList) RemoveList(list ConfiguredJarList) ConfiguredJarList {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001464 apexes := make([]string, 0, l.Len())
1465 jars := make([]string, 0, l.Len())
1466
1467 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001468 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001469 if !list.containsApexJarPair(apex, jar) {
1470 apexes = append(apexes, apex)
1471 jars = append(jars, jar)
1472 }
1473 }
1474
Paul Duffin7d584e92020-10-23 18:26:03 +01001475 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001476}
1477
Jingwen Chenc711fec2020-11-22 23:52:50 -05001478// CopyOfJars returns a copy of the list of strings containing jar module name
1479// components.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001480func (l *ConfiguredJarList) CopyOfJars() []string {
1481 return CopyOf(l.jars)
1482}
1483
Jingwen Chenc711fec2020-11-22 23:52:50 -05001484// CopyOfApexJarPairs returns a copy of the list of strings with colon-separated
1485// (apex, jar) pairs.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001486func (l *ConfiguredJarList) CopyOfApexJarPairs() []string {
1487 pairs := make([]string, 0, l.Len())
1488
1489 for i, jar := range l.jars {
Paul Duffin1e8c6072020-10-23 18:28:55 +01001490 apex := l.apexes[i]
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001491 pairs = append(pairs, apex+":"+jar)
1492 }
1493
1494 return pairs
1495}
1496
Jingwen Chenc711fec2020-11-22 23:52:50 -05001497// BuildPaths returns a list of build paths based on the given directory prefix.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001498func (l *ConfiguredJarList) BuildPaths(ctx PathContext, dir OutputPath) WritablePaths {
1499 paths := make(WritablePaths, l.Len())
1500 for i, jar := range l.jars {
1501 paths[i] = dir.Join(ctx, ModuleStem(jar)+".jar")
1502 }
1503 return paths
1504}
1505
Jingwen Chenc711fec2020-11-22 23:52:50 -05001506// UnmarshalJSON converts JSON configuration from raw bytes into a
1507// ConfiguredJarList structure.
Paul Duffin69d1fb12020-10-23 21:14:20 +01001508func (l *ConfiguredJarList) UnmarshalJSON(b []byte) error {
1509 // Try and unmarshal into a []string each item of which contains a pair
1510 // <apex>:<jar>.
1511 var list []string
1512 err := json.Unmarshal(b, &list)
1513 if err != nil {
1514 // Did not work so return
1515 return err
1516 }
1517
1518 apexes, jars, err := splitListOfPairsIntoPairOfLists(list)
1519 if err != nil {
1520 return err
1521 }
1522 l.apexes = apexes
1523 l.jars = jars
1524 return nil
1525}
1526
Jingwen Chenc711fec2020-11-22 23:52:50 -05001527// ModuleStem hardcodes the stem of framework-minus-apex to return "framework".
1528//
1529// TODO(b/139391334): hard coded until we find a good way to query the stem of a
1530// module before any other mutators are run.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001531func ModuleStem(module string) string {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001532 if module == "framework-minus-apex" {
1533 return "framework"
1534 }
1535 return module
1536}
1537
Jingwen Chenc711fec2020-11-22 23:52:50 -05001538// DevicePaths computes the on-device paths for the list of (apex, jar) pairs,
1539// based on the operating system.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001540func (l *ConfiguredJarList) DevicePaths(cfg Config, ostype OsType) []string {
1541 paths := make([]string, l.Len())
1542 for i, jar := range l.jars {
1543 apex := l.apexes[i]
1544 name := ModuleStem(jar) + ".jar"
1545
1546 var subdir string
1547 if apex == "platform" {
1548 subdir = "system/framework"
1549 } else if apex == "system_ext" {
1550 subdir = "system_ext/framework"
1551 } else {
1552 subdir = filepath.Join("apex", apex, "javalib")
1553 }
1554
1555 if ostype.Class == Host {
1556 paths[i] = filepath.Join(cfg.Getenv("OUT_DIR"), "host", cfg.PrebuiltOS(), subdir, name)
1557 } else {
1558 paths[i] = filepath.Join("/", subdir, name)
1559 }
1560 }
1561 return paths
1562}
1563
Paul Duffin7d584e92020-10-23 18:26:03 +01001564func (l *ConfiguredJarList) String() string {
1565 var pairs []string
1566 for i := 0; i < l.Len(); i++ {
1567 pairs = append(pairs, l.apexes[i]+":"+l.jars[i])
1568 }
1569 return strings.Join(pairs, ",")
1570}
1571
Paul Duffin01416602020-10-23 21:04:03 +01001572func splitListOfPairsIntoPairOfLists(list []string) ([]string, []string, error) {
1573 // Now we need to populate this list by splitting each item in the slice of
1574 // pairs and appending them to the appropriate list of apexes or jars.
1575 apexes := make([]string, len(list))
1576 jars := make([]string, len(list))
1577
1578 for i, apexjar := range list {
1579 apex, jar, err := splitConfiguredJarPair(apexjar)
1580 if err != nil {
1581 return nil, nil, err
1582 }
1583 apexes[i] = apex
1584 jars[i] = jar
1585 }
1586
1587 return apexes, jars, nil
1588}
1589
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001590// Expected format for apexJarValue = <apex name>:<jar name>
Paul Duffin01416602020-10-23 21:04:03 +01001591func splitConfiguredJarPair(str string) (string, string, error) {
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001592 pair := strings.SplitN(str, ":", 2)
1593 if len(pair) == 2 {
Paul Duffin01416602020-10-23 21:04:03 +01001594 return pair[0], pair[1], nil
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001595 } else {
Paul Duffin01416602020-10-23 21:04:03 +01001596 return "error-apex", "error-jar", fmt.Errorf("malformed (apex, jar) pair: '%s', expected format: <apex>:<jar>", str)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001597 }
1598}
1599
Jingwen Chenc711fec2020-11-22 23:52:50 -05001600// CreateTestConfiguredJarList is a function to create ConfiguredJarList for
1601// tests.
Paul Duffine10dfa42020-10-23 21:23:44 +01001602func CreateTestConfiguredJarList(list []string) ConfiguredJarList {
Paul Duffin01416602020-10-23 21:04:03 +01001603 apexes, jars, err := splitListOfPairsIntoPairOfLists(list)
1604 if err != nil {
Paul Duffine10dfa42020-10-23 21:23:44 +01001605 panic(err)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001606 }
1607
Paul Duffin01416602020-10-23 21:04:03 +01001608 return ConfiguredJarList{apexes, jars}
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001609}
1610
Jingwen Chenc711fec2020-11-22 23:52:50 -05001611// EmptyConfiguredJarList returns an empty jar list.
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001612func EmptyConfiguredJarList() ConfiguredJarList {
1613 return ConfiguredJarList{}
1614}
1615
1616var earlyBootJarsKey = NewOnceKey("earlyBootJars")
1617
1618func (c *config) BootJars() []string {
1619 return c.Once(earlyBootJarsKey, func() interface{} {
Paul Duffin69d1fb12020-10-23 21:14:20 +01001620 list := c.productVariables.BootJars.CopyOfJars()
Jingwen Chenc711fec2020-11-22 23:52:50 -05001621 return append(list, c.productVariables.UpdatableBootJars.CopyOfJars()...)
Ulya Trafimovich249386a2020-07-01 14:31:13 +01001622 }).([]string)
1623}
Paul Duffin9a89a2a2020-10-28 19:20:06 +00001624
1625func (c *config) NonUpdatableBootJars() ConfiguredJarList {
1626 return c.productVariables.BootJars
1627}
1628
1629func (c *config) UpdatableBootJars() ConfiguredJarList {
1630 return c.productVariables.UpdatableBootJars
1631}