| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1 | // 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 Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 15 | package android | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 16 |  | 
 | 17 | import ( | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 18 | 	"encoding/json" | 
 | 19 | 	"fmt" | 
| Colin Cross | d8f2014 | 2016-11-03 09:43:26 -0700 | [diff] [blame] | 20 | 	"io/ioutil" | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 21 | 	"os" | 
| Colin Cross | 35cec12 | 2015-04-02 14:37:16 -0700 | [diff] [blame] | 22 | 	"path/filepath" | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 23 | 	"runtime" | 
| Dan Willemsen | 5951c8a | 2016-07-19 19:08:14 -0700 | [diff] [blame] | 24 | 	"strconv" | 
| Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 25 | 	"strings" | 
| Colin Cross | c1e86a3 | 2015-04-15 12:33:28 -0700 | [diff] [blame] | 26 | 	"sync" | 
| Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 27 |  | 
| Colin Cross | e87040b | 2017-12-11 15:52:26 -0800 | [diff] [blame] | 28 | 	"github.com/google/blueprint/bootstrap" | 
| Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 29 | 	"github.com/google/blueprint/proptools" | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 30 | ) | 
 | 31 |  | 
| Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 32 | var Bool = proptools.Bool | 
| Jack He | 8cc7143 | 2016-12-08 15:45:07 -0800 | [diff] [blame] | 33 | var String = proptools.String | 
| Jiyong Park | 1a5d7b1 | 2018-01-15 15:05:10 +0900 | [diff] [blame] | 34 | var FutureApiLevel = 10000 | 
| Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 35 |  | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 36 | // The configuration file name | 
| Dan Willemsen | 87b17d1 | 2015-07-14 00:39:06 -0700 | [diff] [blame] | 37 | const configFileName = "soong.config" | 
 | 38 | const productVariablesFileName = "soong.variables" | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 39 |  | 
 | 40 | // A FileConfigurableOptions contains options which can be configured by the | 
 | 41 | // config file. These will be included in the config struct. | 
 | 42 | type FileConfigurableOptions struct { | 
| Dan Willemsen | 322acaf | 2016-01-12 23:07:05 -0800 | [diff] [blame] | 43 | 	Mega_device *bool `json:",omitempty"` | 
| Dan Albert | 4098deb | 2016-10-19 14:04:41 -0700 | [diff] [blame] | 44 | 	Ndk_abis    *bool `json:",omitempty"` | 
| Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 45 | 	Host_bionic *bool `json:",omitempty"` | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 46 | } | 
 | 47 |  | 
| Colin Cross | 2738597 | 2015-09-18 10:57:10 -0700 | [diff] [blame] | 48 | func (f *FileConfigurableOptions) SetDefaultConfig() { | 
 | 49 | 	*f = FileConfigurableOptions{} | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 50 | } | 
 | 51 |  | 
| Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 52 | // A Config object represents the entire build configuration for Android. | 
| Colin Cross | c3c0a49 | 2015-04-10 15:43:55 -0700 | [diff] [blame] | 53 | type Config struct { | 
 | 54 | 	*config | 
 | 55 | } | 
 | 56 |  | 
| Jeff Gaston | efc1b41 | 2017-03-29 17:29:06 -0700 | [diff] [blame] | 57 | func (c Config) BuildDir() string { | 
 | 58 | 	return c.buildDir | 
 | 59 | } | 
 | 60 |  | 
| Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 61 | // A DeviceConfig object represents the configuration for a particular device being built.  For | 
 | 62 | // now there will only be one of these, but in the future there may be multiple devices being | 
 | 63 | // built | 
 | 64 | type DeviceConfig struct { | 
 | 65 | 	*deviceConfig | 
 | 66 | } | 
 | 67 |  | 
| Dan Willemsen | 0fe7866 | 2018-03-26 12:41:18 -0700 | [diff] [blame] | 68 | type VendorConfig interface { | 
 | 69 | 	// Bool interprets the variable named `name` as a boolean, returning true if, after | 
 | 70 | 	// lowercasing, it matches one of "1", "y", "yes", "on", or "true". Unset, or any other | 
 | 71 | 	// value will return false. | 
 | 72 | 	Bool(name string) bool | 
 | 73 |  | 
 | 74 | 	// String returns the string value of `name`. If the variable was not set, it will | 
 | 75 | 	// return the empty string. | 
 | 76 | 	String(name string) string | 
 | 77 |  | 
 | 78 | 	// IsSet returns whether the variable `name` was set by Make. | 
 | 79 | 	IsSet(name string) bool | 
 | 80 | } | 
 | 81 |  | 
| Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 82 | type config struct { | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 83 | 	FileConfigurableOptions | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 84 | 	productVariables productVariables | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 85 |  | 
| Dan Willemsen | 674dc7f | 2018-03-12 18:06:05 -0700 | [diff] [blame] | 86 | 	// Only available on configs created by TestConfig | 
 | 87 | 	TestProductVariables *productVariables | 
 | 88 |  | 
| Colin Cross | e87040b | 2017-12-11 15:52:26 -0800 | [diff] [blame] | 89 | 	PrimaryBuilder           string | 
| Dan Willemsen | 87b17d1 | 2015-07-14 00:39:06 -0700 | [diff] [blame] | 90 | 	ConfigFileName           string | 
 | 91 | 	ProductVariablesFileName string | 
 | 92 |  | 
| Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 93 | 	Targets        map[OsClass][]Target | 
 | 94 | 	BuildOsVariant string | 
| Dan Willemsen | 218f656 | 2015-07-08 18:13:11 -0700 | [diff] [blame] | 95 |  | 
| Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 96 | 	deviceConfig *deviceConfig | 
 | 97 |  | 
| Dan Willemsen | 87b17d1 | 2015-07-14 00:39:06 -0700 | [diff] [blame] | 98 | 	srcDir   string // the path of the root source directory | 
 | 99 | 	buildDir string // the path of the build output directory | 
| Colin Cross | c1e86a3 | 2015-04-15 12:33:28 -0700 | [diff] [blame] | 100 |  | 
| Colin Cross | 6ccbc91 | 2017-10-10 23:07:38 -0700 | [diff] [blame] | 101 | 	env       map[string]string | 
| Dan Willemsen | e7680ba | 2015-09-11 17:06:19 -0700 | [diff] [blame] | 102 | 	envLock   sync.Mutex | 
 | 103 | 	envDeps   map[string]string | 
 | 104 | 	envFrozen bool | 
| Dan Willemsen | 5ba07e8 | 2015-12-11 13:51:06 -0800 | [diff] [blame] | 105 |  | 
 | 106 | 	inMake bool | 
| Colin Cross | 1e7d370 | 2016-08-24 15:25:47 -0700 | [diff] [blame] | 107 |  | 
| Colin Cross | 32616ed | 2017-09-05 21:56:44 -0700 | [diff] [blame] | 108 | 	captureBuild      bool // true for tests, saves build parameters for each module | 
 | 109 | 	ignoreEnvironment bool // true for tests, returns empty from all Getenv calls | 
| Colin Cross | cec8171 | 2017-07-13 14:43:27 -0700 | [diff] [blame] | 110 |  | 
| Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 111 | 	useOpenJDK9    bool // Use OpenJDK9, but possibly target 1.8 | 
 | 112 | 	targetOpenJDK9 bool // Use OpenJDK9 and target 1.9 | 
 | 113 |  | 
| Colin Cross | e87040b | 2017-12-11 15:52:26 -0800 | [diff] [blame] | 114 | 	stopBefore bootstrap.StopBefore | 
 | 115 |  | 
| Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 116 | 	OncePer | 
 | 117 | } | 
 | 118 |  | 
 | 119 | type deviceConfig struct { | 
| Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 120 | 	config *config | 
| Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 121 | 	OncePer | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 122 | } | 
 | 123 |  | 
| Dan Willemsen | 0fe7866 | 2018-03-26 12:41:18 -0700 | [diff] [blame] | 124 | type vendorConfig map[string]string | 
 | 125 |  | 
| Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 126 | type jsonConfigurable interface { | 
| Colin Cross | 2738597 | 2015-09-18 10:57:10 -0700 | [diff] [blame] | 127 | 	SetDefaultConfig() | 
| Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 128 | } | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 129 |  | 
| Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 130 | func loadConfig(config *config) error { | 
| Dan Willemsen | 87b17d1 | 2015-07-14 00:39:06 -0700 | [diff] [blame] | 131 | 	err := loadFromConfigFile(&config.FileConfigurableOptions, config.ConfigFileName) | 
| Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 132 | 	if err != nil { | 
 | 133 | 		return err | 
 | 134 | 	} | 
 | 135 |  | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 136 | 	return loadFromConfigFile(&config.productVariables, config.ProductVariablesFileName) | 
| Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 137 | } | 
 | 138 |  | 
 | 139 | // loads configuration options from a JSON file in the cwd. | 
 | 140 | func loadFromConfigFile(configurable jsonConfigurable, filename string) error { | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 141 | 	// Try to open the file | 
| Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 142 | 	configFileReader, err := os.Open(filename) | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 143 | 	defer configFileReader.Close() | 
 | 144 | 	if os.IsNotExist(err) { | 
 | 145 | 		// Need to create a file, so that blueprint & ninja don't get in | 
 | 146 | 		// a dependency tracking loop. | 
 | 147 | 		// Make a file-configurable-options with defaults, write it out using | 
 | 148 | 		// a json writer. | 
| Colin Cross | 2738597 | 2015-09-18 10:57:10 -0700 | [diff] [blame] | 149 | 		configurable.SetDefaultConfig() | 
 | 150 | 		err = saveToConfigFile(configurable, filename) | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 151 | 		if err != nil { | 
 | 152 | 			return err | 
 | 153 | 		} | 
| Colin Cross | 15cd21a | 2018-02-27 11:26:02 -0800 | [diff] [blame] | 154 | 	} else if err != nil { | 
 | 155 | 		return fmt.Errorf("config file: could not open %s: %s", filename, err.Error()) | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 156 | 	} else { | 
 | 157 | 		// Make a decoder for it | 
 | 158 | 		jsonDecoder := json.NewDecoder(configFileReader) | 
| Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 159 | 		err = jsonDecoder.Decode(configurable) | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 160 | 		if err != nil { | 
| Colin Cross | 15cd21a | 2018-02-27 11:26:02 -0800 | [diff] [blame] | 161 | 			return fmt.Errorf("config file: %s did not parse correctly: %s", filename, err.Error()) | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 162 | 		} | 
 | 163 | 	} | 
 | 164 |  | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 165 | 	// No error | 
 | 166 | 	return nil | 
 | 167 | } | 
 | 168 |  | 
| Colin Cross | d8f2014 | 2016-11-03 09:43:26 -0700 | [diff] [blame] | 169 | // atomically writes the config file in case two copies of soong_build are running simultaneously | 
 | 170 | // (for example, docs generation and ninja manifest generation) | 
| Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 171 | func saveToConfigFile(config jsonConfigurable, filename string) error { | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 172 | 	data, err := json.MarshalIndent(&config, "", "    ") | 
 | 173 | 	if err != nil { | 
 | 174 | 		return fmt.Errorf("cannot marshal config data: %s", err.Error()) | 
 | 175 | 	} | 
 | 176 |  | 
| Colin Cross | d8f2014 | 2016-11-03 09:43:26 -0700 | [diff] [blame] | 177 | 	f, err := ioutil.TempFile(filepath.Dir(filename), "config") | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 178 | 	if err != nil { | 
| Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 179 | 		return fmt.Errorf("cannot create empty config file %s: %s\n", filename, err.Error()) | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 180 | 	} | 
| Colin Cross | d8f2014 | 2016-11-03 09:43:26 -0700 | [diff] [blame] | 181 | 	defer os.Remove(f.Name()) | 
 | 182 | 	defer f.Close() | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 183 |  | 
| Colin Cross | d8f2014 | 2016-11-03 09:43:26 -0700 | [diff] [blame] | 184 | 	_, err = f.Write(data) | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 185 | 	if err != nil { | 
| Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 186 | 		return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error()) | 
 | 187 | 	} | 
 | 188 |  | 
| Colin Cross | d8f2014 | 2016-11-03 09:43:26 -0700 | [diff] [blame] | 189 | 	_, err = f.WriteString("\n") | 
| Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 190 | 	if err != nil { | 
 | 191 | 		return fmt.Errorf("default config file: %s could not be written: %s", filename, err.Error()) | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 192 | 	} | 
 | 193 |  | 
| Colin Cross | d8f2014 | 2016-11-03 09:43:26 -0700 | [diff] [blame] | 194 | 	f.Close() | 
 | 195 | 	os.Rename(f.Name(), filename) | 
 | 196 |  | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 197 | 	return nil | 
 | 198 | } | 
 | 199 |  | 
| Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 200 | // TestConfig returns a Config object suitable for using for tests | 
| Colin Cross | 6ccbc91 | 2017-10-10 23:07:38 -0700 | [diff] [blame] | 201 | func TestConfig(buildDir string, env map[string]string) Config { | 
| Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 202 | 	config := &config{ | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 203 | 		productVariables: productVariables{ | 
| Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 204 | 			DeviceName:           stringPtr("test_device"), | 
 | 205 | 			Platform_sdk_version: intPtr(26), | 
 | 206 | 			AAPTConfig:           &[]string{"normal", "large", "xlarge", "hdpi", "xhdpi", "xxhdpi"}, | 
 | 207 | 			AAPTPreferredConfig:  stringPtr("xhdpi"), | 
 | 208 | 			AAPTCharacteristics:  stringPtr("nosdcard"), | 
 | 209 | 			AAPTPrebuiltDPI:      &[]string{"xhdpi", "xxhdpi"}, | 
| Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 210 | 		}, | 
 | 211 |  | 
| Colin Cross | 6ccbc91 | 2017-10-10 23:07:38 -0700 | [diff] [blame] | 212 | 		buildDir:     buildDir, | 
 | 213 | 		captureBuild: true, | 
 | 214 | 		env:          env, | 
| Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 215 | 	} | 
 | 216 | 	config.deviceConfig = &deviceConfig{ | 
 | 217 | 		config: config, | 
 | 218 | 	} | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 219 | 	config.TestProductVariables = &config.productVariables | 
| Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 220 |  | 
| Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 221 | 	if err := config.fromEnv(); err != nil { | 
 | 222 | 		panic(err) | 
 | 223 | 	} | 
 | 224 |  | 
| Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 225 | 	return Config{config} | 
| Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 226 | } | 
 | 227 |  | 
| Colin Cross | ae4c618 | 2017-09-15 17:33:55 -0700 | [diff] [blame] | 228 | // TestConfig returns a Config object suitable for using for tests that need to run the arch mutator | 
| Colin Cross | 6ccbc91 | 2017-10-10 23:07:38 -0700 | [diff] [blame] | 229 | func TestArchConfig(buildDir string, env map[string]string) Config { | 
 | 230 | 	testConfig := TestConfig(buildDir, env) | 
| Colin Cross | ae4c618 | 2017-09-15 17:33:55 -0700 | [diff] [blame] | 231 | 	config := testConfig.config | 
 | 232 |  | 
 | 233 | 	config.Targets = map[OsClass][]Target{ | 
 | 234 | 		Device: []Target{ | 
| Jiyong Park | 6a43f04 | 2017-10-12 23:05:00 +0900 | [diff] [blame] | 235 | 			{Android, Arch{ArchType: Arm64, ArchVariant: "armv8-a", Native: true}}, | 
 | 236 | 			{Android, Arch{ArchType: Arm, ArchVariant: "armv7-a-neon", Native: true}}, | 
| Colin Cross | ae4c618 | 2017-09-15 17:33:55 -0700 | [diff] [blame] | 237 | 		}, | 
 | 238 | 		Host: []Target{ | 
 | 239 | 			{BuildOs, Arch{ArchType: X86_64}}, | 
 | 240 | 			{BuildOs, Arch{ArchType: X86}}, | 
 | 241 | 		}, | 
 | 242 | 	} | 
 | 243 |  | 
 | 244 | 	return testConfig | 
 | 245 | } | 
 | 246 |  | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 247 | // New creates a new Config object.  The srcDir argument specifies the path to | 
 | 248 | // the root source directory. It also loads the config file, if found. | 
| Dan Willemsen | 87b17d1 | 2015-07-14 00:39:06 -0700 | [diff] [blame] | 249 | func NewConfig(srcDir, buildDir string) (Config, error) { | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 250 | 	// Make a config with default options | 
| Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 251 | 	config := &config{ | 
 | 252 | 		ConfigFileName:           filepath.Join(buildDir, configFileName), | 
 | 253 | 		ProductVariablesFileName: filepath.Join(buildDir, productVariablesFileName), | 
| Dan Willemsen | 87b17d1 | 2015-07-14 00:39:06 -0700 | [diff] [blame] | 254 |  | 
| Colin Cross | 6ccbc91 | 2017-10-10 23:07:38 -0700 | [diff] [blame] | 255 | 		env: originalEnv, | 
 | 256 |  | 
| Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 257 | 		srcDir:   srcDir, | 
 | 258 | 		buildDir: buildDir, | 
| Colin Cross | 68f5510 | 2015-03-25 14:43:57 -0700 | [diff] [blame] | 259 | 	} | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 260 |  | 
| Dan Willemsen | 00269f2 | 2017-07-06 16:59:48 -0700 | [diff] [blame] | 261 | 	config.deviceConfig = &deviceConfig{ | 
| Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 262 | 		config: config, | 
 | 263 | 	} | 
 | 264 |  | 
| Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 265 | 	// Sanity check the build and source directories. This won't catch strange | 
 | 266 | 	// configurations with symlinks, but at least checks the obvious cases. | 
 | 267 | 	absBuildDir, err := filepath.Abs(buildDir) | 
 | 268 | 	if err != nil { | 
 | 269 | 		return Config{}, err | 
 | 270 | 	} | 
 | 271 |  | 
 | 272 | 	absSrcDir, err := filepath.Abs(srcDir) | 
 | 273 | 	if err != nil { | 
 | 274 | 		return Config{}, err | 
 | 275 | 	} | 
 | 276 |  | 
 | 277 | 	if strings.HasPrefix(absSrcDir, absBuildDir) { | 
 | 278 | 		return Config{}, fmt.Errorf("Build dir must not contain source directory") | 
 | 279 | 	} | 
 | 280 |  | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 281 | 	// Load any configurable options from the configuration file | 
| Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 282 | 	err = loadConfig(config) | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 283 | 	if err != nil { | 
| Colin Cross | c3c0a49 | 2015-04-10 15:43:55 -0700 | [diff] [blame] | 284 | 		return Config{}, err | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 285 | 	} | 
 | 286 |  | 
| Dan Willemsen | 5ba07e8 | 2015-12-11 13:51:06 -0800 | [diff] [blame] | 287 | 	inMakeFile := filepath.Join(buildDir, ".soong.in_make") | 
 | 288 | 	if _, err := os.Stat(inMakeFile); err == nil { | 
 | 289 | 		config.inMake = true | 
 | 290 | 	} | 
 | 291 |  | 
| Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 292 | 	targets, err := decodeTargetProductVariables(config) | 
| Dan Willemsen | 218f656 | 2015-07-08 18:13:11 -0700 | [diff] [blame] | 293 | 	if err != nil { | 
 | 294 | 		return Config{}, err | 
 | 295 | 	} | 
 | 296 |  | 
| Dan Albert | 4098deb | 2016-10-19 14:04:41 -0700 | [diff] [blame] | 297 | 	var archConfig []archConfig | 
| Dan Willemsen | 322acaf | 2016-01-12 23:07:05 -0800 | [diff] [blame] | 298 | 	if Bool(config.Mega_device) { | 
| Dan Albert | 4098deb | 2016-10-19 14:04:41 -0700 | [diff] [blame] | 299 | 		archConfig = getMegaDeviceConfig() | 
 | 300 | 	} else if Bool(config.Ndk_abis) { | 
 | 301 | 		archConfig = getNdkAbisConfig() | 
 | 302 | 	} | 
 | 303 |  | 
 | 304 | 	if archConfig != nil { | 
 | 305 | 		deviceTargets, err := decodeArchSettings(archConfig) | 
| Dan Willemsen | 322acaf | 2016-01-12 23:07:05 -0800 | [diff] [blame] | 306 | 		if err != nil { | 
 | 307 | 			return Config{}, err | 
 | 308 | 		} | 
| Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 309 | 		targets[Device] = deviceTargets | 
| Dan Willemsen | 322acaf | 2016-01-12 23:07:05 -0800 | [diff] [blame] | 310 | 	} | 
 | 311 |  | 
| Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 312 | 	config.Targets = targets | 
 | 313 | 	config.BuildOsVariant = targets[Host][0].String() | 
| Dan Willemsen | 218f656 | 2015-07-08 18:13:11 -0700 | [diff] [blame] | 314 |  | 
| Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 315 | 	if err := config.fromEnv(); err != nil { | 
 | 316 | 		return Config{}, err | 
 | 317 | 	} | 
 | 318 |  | 
| Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 319 | 	return Config{config}, nil | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 320 | } | 
 | 321 |  | 
| Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 322 | func (c *config) fromEnv() error { | 
 | 323 | 	switch c.Getenv("EXPERIMENTAL_USE_OPENJDK9") { | 
 | 324 | 	case "": | 
| Tobias Thierer | 18099fd | 2017-11-17 14:14:29 +0000 | [diff] [blame] | 325 | 		if c.Getenv("RUN_ERROR_PRONE") != "true" { | 
 | 326 | 			// Use OpenJDK9, but target 1.8 | 
 | 327 | 			c.useOpenJDK9 = true | 
 | 328 | 		} | 
| Tobias Thierer | a7cdd15 | 2017-11-15 21:16:25 +0000 | [diff] [blame] | 329 | 	case "false": | 
 | 330 | 		// Use OpenJDK8 | 
| Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 331 | 	case "1.8": | 
 | 332 | 		// Use OpenJDK9, but target 1.8 | 
 | 333 | 		c.useOpenJDK9 = true | 
 | 334 | 	case "true": | 
 | 335 | 		// Use OpenJDK9 and target 1.9 | 
 | 336 | 		c.useOpenJDK9 = true | 
 | 337 | 		c.targetOpenJDK9 = true | 
 | 338 | 	default: | 
| Tobias Thierer | 18099fd | 2017-11-17 14:14:29 +0000 | [diff] [blame] | 339 | 		return fmt.Errorf(`Invalid value for EXPERIMENTAL_USE_OPENJDK9, should be "", "false", "1.8", or "true"`) | 
| Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 340 | 	} | 
 | 341 |  | 
 | 342 | 	return nil | 
 | 343 | } | 
 | 344 |  | 
| Colin Cross | e87040b | 2017-12-11 15:52:26 -0800 | [diff] [blame] | 345 | func (c *config) StopBefore() bootstrap.StopBefore { | 
 | 346 | 	return c.stopBefore | 
| Dan Willemsen | 218f656 | 2015-07-08 18:13:11 -0700 | [diff] [blame] | 347 | } | 
 | 348 |  | 
| Colin Cross | e87040b | 2017-12-11 15:52:26 -0800 | [diff] [blame] | 349 | func (c *config) SetStopBefore(stopBefore bootstrap.StopBefore) { | 
 | 350 | 	c.stopBefore = stopBefore | 
 | 351 | } | 
 | 352 |  | 
 | 353 | var _ bootstrap.ConfigStopBefore = (*config)(nil) | 
 | 354 |  | 
| Dan Willemsen | c2aa4a9 | 2016-05-26 15:13:03 -0700 | [diff] [blame] | 355 | func (c *config) BlueprintToolLocation() string { | 
 | 356 | 	return filepath.Join(c.buildDir, "host", c.PrebuiltOS(), "bin") | 
 | 357 | } | 
 | 358 |  | 
| Colin Cross | e87040b | 2017-12-11 15:52:26 -0800 | [diff] [blame] | 359 | var _ bootstrap.ConfigBlueprintToolLocation = (*config)(nil) | 
 | 360 |  | 
| Dan Willemsen | 6606872 | 2017-05-08 21:15:59 +0000 | [diff] [blame] | 361 | // HostSystemTool looks for non-hermetic tools from the system we're running on. | 
 | 362 | // Generally shouldn't be used, but useful to find the XCode SDK, etc. | 
 | 363 | func (c *config) HostSystemTool(name string) string { | 
 | 364 | 	for _, dir := range filepath.SplitList(c.Getenv("PATH")) { | 
 | 365 | 		path := filepath.Join(dir, name) | 
 | 366 | 		if s, err := os.Stat(path); err != nil { | 
 | 367 | 			continue | 
 | 368 | 		} else if m := s.Mode(); !s.IsDir() && m&0111 != 0 { | 
 | 369 | 			return path | 
 | 370 | 		} | 
 | 371 | 	} | 
 | 372 | 	return name | 
 | 373 | } | 
 | 374 |  | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 375 | // PrebuiltOS returns the name of the host OS used in prebuilts directories | 
| Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 376 | func (c *config) PrebuiltOS() string { | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 377 | 	switch runtime.GOOS { | 
 | 378 | 	case "linux": | 
 | 379 | 		return "linux-x86" | 
 | 380 | 	case "darwin": | 
 | 381 | 		return "darwin-x86" | 
 | 382 | 	default: | 
 | 383 | 		panic("Unknown GOOS") | 
 | 384 | 	} | 
 | 385 | } | 
 | 386 |  | 
 | 387 | // GoRoot returns the path to the root directory of the Go toolchain. | 
| Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 388 | func (c *config) GoRoot() string { | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 389 | 	return fmt.Sprintf("%s/prebuilts/go/%s", c.srcDir, c.PrebuiltOS()) | 
 | 390 | } | 
 | 391 |  | 
| Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 392 | func (c *config) CpPreserveSymlinksFlags() string { | 
| Colin Cross | 485e572 | 2015-08-27 13:28:01 -0700 | [diff] [blame] | 393 | 	switch runtime.GOOS { | 
| Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 394 | 	case "darwin": | 
 | 395 | 		return "-R" | 
 | 396 | 	case "linux": | 
 | 397 | 		return "-d" | 
 | 398 | 	default: | 
 | 399 | 		return "" | 
 | 400 | 	} | 
 | 401 | } | 
| Colin Cross | 68f5510 | 2015-03-25 14:43:57 -0700 | [diff] [blame] | 402 |  | 
| Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 403 | func (c *config) Getenv(key string) string { | 
| Colin Cross | 68f5510 | 2015-03-25 14:43:57 -0700 | [diff] [blame] | 404 | 	var val string | 
 | 405 | 	var exists bool | 
| Colin Cross | c1e86a3 | 2015-04-15 12:33:28 -0700 | [diff] [blame] | 406 | 	c.envLock.Lock() | 
| Colin Cross | c0d58b4 | 2017-02-06 15:40:41 -0800 | [diff] [blame] | 407 | 	defer c.envLock.Unlock() | 
 | 408 | 	if c.envDeps == nil { | 
 | 409 | 		c.envDeps = make(map[string]string) | 
 | 410 | 	} | 
| Colin Cross | 68f5510 | 2015-03-25 14:43:57 -0700 | [diff] [blame] | 411 | 	if val, exists = c.envDeps[key]; !exists { | 
| Dan Willemsen | e7680ba | 2015-09-11 17:06:19 -0700 | [diff] [blame] | 412 | 		if c.envFrozen { | 
 | 413 | 			panic("Cannot access new environment variables after envdeps are frozen") | 
 | 414 | 		} | 
| Colin Cross | 6ccbc91 | 2017-10-10 23:07:38 -0700 | [diff] [blame] | 415 | 		val, _ = c.env[key] | 
| Colin Cross | 68f5510 | 2015-03-25 14:43:57 -0700 | [diff] [blame] | 416 | 		c.envDeps[key] = val | 
 | 417 | 	} | 
 | 418 | 	return val | 
 | 419 | } | 
 | 420 |  | 
| Colin Cross | 99d7c23 | 2016-11-23 16:52:04 -0800 | [diff] [blame] | 421 | func (c *config) GetenvWithDefault(key string, defaultValue string) string { | 
 | 422 | 	ret := c.Getenv(key) | 
 | 423 | 	if ret == "" { | 
 | 424 | 		return defaultValue | 
 | 425 | 	} | 
 | 426 | 	return ret | 
 | 427 | } | 
 | 428 |  | 
 | 429 | func (c *config) IsEnvTrue(key string) bool { | 
 | 430 | 	value := c.Getenv(key) | 
 | 431 | 	return value == "1" || value == "y" || value == "yes" || value == "on" || value == "true" | 
 | 432 | } | 
 | 433 |  | 
 | 434 | func (c *config) IsEnvFalse(key string) bool { | 
 | 435 | 	value := c.Getenv(key) | 
 | 436 | 	return value == "0" || value == "n" || value == "no" || value == "off" || value == "false" | 
 | 437 | } | 
 | 438 |  | 
| Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 439 | func (c *config) EnvDeps() map[string]string { | 
| Dan Willemsen | e7680ba | 2015-09-11 17:06:19 -0700 | [diff] [blame] | 440 | 	c.envLock.Lock() | 
| Colin Cross | c0d58b4 | 2017-02-06 15:40:41 -0800 | [diff] [blame] | 441 | 	defer c.envLock.Unlock() | 
| Dan Willemsen | e7680ba | 2015-09-11 17:06:19 -0700 | [diff] [blame] | 442 | 	c.envFrozen = true | 
| Colin Cross | 68f5510 | 2015-03-25 14:43:57 -0700 | [diff] [blame] | 443 | 	return c.envDeps | 
 | 444 | } | 
| Colin Cross | 35cec12 | 2015-04-02 14:37:16 -0700 | [diff] [blame] | 445 |  | 
| Dan Willemsen | 5ba07e8 | 2015-12-11 13:51:06 -0800 | [diff] [blame] | 446 | func (c *config) EmbeddedInMake() bool { | 
 | 447 | 	return c.inMake | 
 | 448 | } | 
 | 449 |  | 
| Nan Zhang | 581fd21 | 2018-01-10 16:06:12 -0800 | [diff] [blame] | 450 | func (c *config) BuildId() string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 451 | 	return String(c.productVariables.BuildId) | 
| Nan Zhang | 581fd21 | 2018-01-10 16:06:12 -0800 | [diff] [blame] | 452 | } | 
 | 453 |  | 
 | 454 | func (c *config) BuildNumberFromFile() string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 455 | 	return String(c.productVariables.BuildNumberFromFile) | 
| Nan Zhang | 581fd21 | 2018-01-10 16:06:12 -0800 | [diff] [blame] | 456 | } | 
 | 457 |  | 
| Colin Cross | 35cec12 | 2015-04-02 14:37:16 -0700 | [diff] [blame] | 458 | // DeviceName returns the name of the current device target | 
 | 459 | // TODO: take an AndroidModuleContext to select the device name for multi-device builds | 
| Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 460 | func (c *config) DeviceName() string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 461 | 	return *c.productVariables.DeviceName | 
| Colin Cross | 35cec12 | 2015-04-02 14:37:16 -0700 | [diff] [blame] | 462 | } | 
 | 463 |  | 
| Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 464 | func (c *config) ResourceOverlays() []string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 465 | 	if c.productVariables.ResourceOverlays == nil { | 
| Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 466 | 		return nil | 
 | 467 | 	} | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 468 | 	return *c.productVariables.ResourceOverlays | 
| Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 469 | } | 
 | 470 |  | 
| Colin Cross | bfd347d | 2018-05-09 11:11:35 -0700 | [diff] [blame] | 471 | func (c *config) PlatformVersionName() string { | 
 | 472 | 	return String(c.productVariables.Platform_version_name) | 
 | 473 | } | 
 | 474 |  | 
| Dan Albert | 073379e | 2016-11-10 10:46:36 -0800 | [diff] [blame] | 475 | func (c *config) PlatformSdkVersionInt() int { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 476 | 	return *c.productVariables.Platform_sdk_version | 
| Dan Albert | 073379e | 2016-11-10 10:46:36 -0800 | [diff] [blame] | 477 | } | 
 | 478 |  | 
| Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 479 | func (c *config) PlatformSdkVersion() string { | 
| Dan Albert | 073379e | 2016-11-10 10:46:36 -0800 | [diff] [blame] | 480 | 	return strconv.Itoa(c.PlatformSdkVersionInt()) | 
| Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 481 | } | 
 | 482 |  | 
| Colin Cross | d09b0b6 | 2018-04-18 11:06:47 -0700 | [diff] [blame] | 483 | func (c *config) PlatformSdkCodename() string { | 
 | 484 | 	return String(c.productVariables.Platform_sdk_codename) | 
 | 485 | } | 
 | 486 |  | 
| Dan Albert | f5415d7 | 2017-08-17 16:19:59 -0700 | [diff] [blame] | 487 | func (c *config) MinSupportedSdkVersion() int { | 
| Dan Albert | d4db4ac | 2017-08-10 12:18:31 -0700 | [diff] [blame] | 488 | 	return 14 | 
| Dan Albert | f5415d7 | 2017-08-17 16:19:59 -0700 | [diff] [blame] | 489 | } | 
 | 490 |  | 
| Colin Cross | 595a406 | 2017-08-31 12:30:37 -0700 | [diff] [blame] | 491 | func (c *config) DefaultAppTargetSdkInt() int { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 492 | 	if Bool(c.productVariables.Platform_sdk_final) { | 
| Colin Cross | 595a406 | 2017-08-31 12:30:37 -0700 | [diff] [blame] | 493 | 		return c.PlatformSdkVersionInt() | 
 | 494 | 	} else { | 
| Jiyong Park | 1a5d7b1 | 2018-01-15 15:05:10 +0900 | [diff] [blame] | 495 | 		return FutureApiLevel | 
| Colin Cross | 595a406 | 2017-08-31 12:30:37 -0700 | [diff] [blame] | 496 | 	} | 
 | 497 | } | 
 | 498 |  | 
| Colin Cross | d09b0b6 | 2018-04-18 11:06:47 -0700 | [diff] [blame] | 499 | func (c *config) DefaultAppTargetSdk() string { | 
 | 500 | 	if Bool(c.productVariables.Platform_sdk_final) { | 
 | 501 | 		return c.PlatformSdkVersion() | 
 | 502 | 	} else { | 
 | 503 | 		return c.PlatformSdkCodename() | 
 | 504 | 	} | 
 | 505 | } | 
 | 506 |  | 
| Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 507 | func (c *config) AppsDefaultVersionName() string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 508 | 	return String(c.productVariables.AppsDefaultVersionName) | 
| Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 509 | } | 
 | 510 |  | 
| Dan Albert | 31384de | 2017-07-28 12:39:46 -0700 | [diff] [blame] | 511 | // Codenames that are active in the current lunch target. | 
 | 512 | func (c *config) PlatformVersionActiveCodenames() []string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 513 | 	return c.productVariables.Platform_version_active_codenames | 
| Dan Albert | 31384de | 2017-07-28 12:39:46 -0700 | [diff] [blame] | 514 | } | 
 | 515 |  | 
 | 516 | // Codenames that are available in the branch but not included in the current | 
 | 517 | // lunch target. | 
 | 518 | func (c *config) PlatformVersionFutureCodenames() []string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 519 | 	return c.productVariables.Platform_version_future_codenames | 
| Dan Albert | 31384de | 2017-07-28 12:39:46 -0700 | [diff] [blame] | 520 | } | 
 | 521 |  | 
 | 522 | // All possible codenames in the current branch. NB: Not named AllCodenames | 
 | 523 | // because "all" has historically meant "active" in make, and still does in | 
 | 524 | // build.prop. | 
 | 525 | func (c *config) PlatformVersionCombinedCodenames() []string { | 
 | 526 | 	combined := []string{} | 
 | 527 | 	combined = append(combined, c.PlatformVersionActiveCodenames()...) | 
 | 528 | 	combined = append(combined, c.PlatformVersionFutureCodenames()...) | 
 | 529 | 	return combined | 
| Dan Albert | 30c9d6e | 2017-03-28 14:54:55 -0700 | [diff] [blame] | 530 | } | 
 | 531 |  | 
| Colin Cross | face4e4 | 2017-10-30 17:32:15 -0700 | [diff] [blame] | 532 | func (c *config) ProductAAPTConfig() []string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 533 | 	return stringSlice(c.productVariables.AAPTConfig) | 
| Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 534 | } | 
 | 535 |  | 
| Colin Cross | face4e4 | 2017-10-30 17:32:15 -0700 | [diff] [blame] | 536 | func (c *config) ProductAAPTPreferredConfig() string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 537 | 	return String(c.productVariables.AAPTPreferredConfig) | 
| Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 538 | } | 
 | 539 |  | 
| Colin Cross | face4e4 | 2017-10-30 17:32:15 -0700 | [diff] [blame] | 540 | func (c *config) ProductAAPTCharacteristics() string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 541 | 	return String(c.productVariables.AAPTCharacteristics) | 
| Colin Cross | face4e4 | 2017-10-30 17:32:15 -0700 | [diff] [blame] | 542 | } | 
 | 543 |  | 
 | 544 | func (c *config) ProductAAPTPrebuiltDPI() []string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 545 | 	return stringSlice(c.productVariables.AAPTPrebuiltDPI) | 
| Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 546 | } | 
 | 547 |  | 
| Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 548 | func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 549 | 	defaultCert := String(c.productVariables.DefaultAppCertificate) | 
| Colin Cross | 61ae0b7 | 2017-12-01 17:16:02 -0800 | [diff] [blame] | 550 | 	if defaultCert != "" { | 
 | 551 | 		return PathForSource(ctx, filepath.Dir(defaultCert)) | 
 | 552 | 	} else { | 
 | 553 | 		return PathForSource(ctx, "build/target/product/security") | 
 | 554 | 	} | 
| Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 555 | } | 
 | 556 |  | 
| Colin Cross | e1731a5 | 2017-12-14 11:22:55 -0800 | [diff] [blame] | 557 | func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 558 | 	defaultCert := String(c.productVariables.DefaultAppCertificate) | 
| Colin Cross | 61ae0b7 | 2017-12-01 17:16:02 -0800 | [diff] [blame] | 559 | 	if defaultCert != "" { | 
| Colin Cross | e1731a5 | 2017-12-14 11:22:55 -0800 | [diff] [blame] | 560 | 		return PathForSource(ctx, defaultCert+".x509.pem"), PathForSource(ctx, defaultCert+".pk8") | 
| Colin Cross | 61ae0b7 | 2017-12-01 17:16:02 -0800 | [diff] [blame] | 561 | 	} else { | 
| Colin Cross | e1731a5 | 2017-12-14 11:22:55 -0800 | [diff] [blame] | 562 | 		defaultDir := c.DefaultAppCertificateDir(ctx) | 
 | 563 | 		return defaultDir.Join(ctx, "testkey.x509.pem"), defaultDir.Join(ctx, "testkey.pk8") | 
| Colin Cross | 61ae0b7 | 2017-12-01 17:16:02 -0800 | [diff] [blame] | 564 | 	} | 
| Colin Cross | 30e076a | 2015-04-13 13:58:27 -0700 | [diff] [blame] | 565 | } | 
| Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 566 |  | 
 | 567 | func (c *config) AllowMissingDependencies() bool { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 568 | 	return Bool(c.productVariables.Allow_missing_dependencies) | 
| Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 569 | } | 
| Dan Willemsen | 322acaf | 2016-01-12 23:07:05 -0800 | [diff] [blame] | 570 |  | 
| Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 571 | func (c *config) UnbundledBuild() bool { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 572 | 	return Bool(c.productVariables.Unbundled_build) | 
| Colin Cross | fc3674a | 2017-09-18 17:41:52 -0700 | [diff] [blame] | 573 | } | 
 | 574 |  | 
| Colin Cross | 0d3f8c0 | 2017-10-24 10:51:45 -0700 | [diff] [blame] | 575 | func (c *config) IsPdkBuild() bool { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 576 | 	return Bool(c.productVariables.Pdk) | 
| Colin Cross | 0d3f8c0 | 2017-10-24 10:51:45 -0700 | [diff] [blame] | 577 | } | 
 | 578 |  | 
| Colin Cross | 126a25c | 2017-10-31 13:55:34 -0700 | [diff] [blame] | 579 | func (c *config) MinimizeJavaDebugInfo() bool { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 580 | 	return Bool(c.productVariables.MinimizeJavaDebugInfo) && !Bool(c.productVariables.Eng) | 
| Colin Cross | 126a25c | 2017-10-31 13:55:34 -0700 | [diff] [blame] | 581 | } | 
 | 582 |  | 
| Colin Cross | 1e7d370 | 2016-08-24 15:25:47 -0700 | [diff] [blame] | 583 | func (c *config) DevicePrefer32BitExecutables() bool { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 584 | 	return Bool(c.productVariables.DevicePrefer32BitExecutables) | 
| Colin Cross | 1e7d370 | 2016-08-24 15:25:47 -0700 | [diff] [blame] | 585 | } | 
 | 586 |  | 
| Dan Willemsen | 7f730fd | 2016-01-14 11:22:23 -0800 | [diff] [blame] | 587 | func (c *config) SkipDeviceInstall() bool { | 
| Colin Cross | 893d816 | 2017-04-26 17:34:03 -0700 | [diff] [blame] | 588 | 	return c.EmbeddedInMake() | 
 | 589 | } | 
 | 590 |  | 
 | 591 | func (c *config) SkipMegaDeviceInstall(path string) bool { | 
 | 592 | 	return Bool(c.Mega_device) && | 
 | 593 | 		strings.HasPrefix(path, filepath.Join(c.buildDir, "target", "product")) | 
| Dan Willemsen | 322acaf | 2016-01-12 23:07:05 -0800 | [diff] [blame] | 594 | } | 
| Colin Cross | 16b2349 | 2016-01-06 14:41:07 -0800 | [diff] [blame] | 595 |  | 
 | 596 | func (c *config) SanitizeHost() []string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 597 | 	return append([]string(nil), c.productVariables.SanitizeHost...) | 
| Colin Cross | 16b2349 | 2016-01-06 14:41:07 -0800 | [diff] [blame] | 598 | } | 
 | 599 |  | 
 | 600 | func (c *config) SanitizeDevice() []string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 601 | 	return append([]string(nil), c.productVariables.SanitizeDevice...) | 
| Colin Cross | 23ae82a | 2016-11-02 14:34:39 -0700 | [diff] [blame] | 602 | } | 
 | 603 |  | 
| Ivan Lozano | 0c3a1ef | 2017-06-28 09:10:48 -0700 | [diff] [blame] | 604 | func (c *config) SanitizeDeviceDiag() []string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 605 | 	return append([]string(nil), c.productVariables.SanitizeDeviceDiag...) | 
| Ivan Lozano | 0c3a1ef | 2017-06-28 09:10:48 -0700 | [diff] [blame] | 606 | } | 
 | 607 |  | 
| Colin Cross | 23ae82a | 2016-11-02 14:34:39 -0700 | [diff] [blame] | 608 | func (c *config) SanitizeDeviceArch() []string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 609 | 	return append([]string(nil), c.productVariables.SanitizeDeviceArch...) | 
| Colin Cross | 16b2349 | 2016-01-06 14:41:07 -0800 | [diff] [blame] | 610 | } | 
| Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 611 |  | 
| Vishwath Mohan | 1b017a7 | 2017-01-19 13:54:55 -0800 | [diff] [blame] | 612 | func (c *config) EnableCFI() bool { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 613 | 	if c.productVariables.EnableCFI == nil { | 
| Vishwath Mohan | c32c3eb | 2017-01-24 14:20:54 -0800 | [diff] [blame] | 614 | 		return true | 
 | 615 | 	} else { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 616 | 		return *c.productVariables.EnableCFI | 
| Vishwath Mohan | c32c3eb | 2017-01-24 14:20:54 -0800 | [diff] [blame] | 617 | 	} | 
| Vishwath Mohan | 1b017a7 | 2017-01-19 13:54:55 -0800 | [diff] [blame] | 618 | } | 
 | 619 |  | 
| Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 620 | func (c *config) Android64() bool { | 
 | 621 | 	for _, t := range c.Targets[Device] { | 
 | 622 | 		if t.Arch.ArchType.Multilib == "lib64" { | 
 | 623 | 			return true | 
 | 624 | 		} | 
 | 625 | 	} | 
 | 626 |  | 
 | 627 | 	return false | 
 | 628 | } | 
| Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 629 |  | 
| Alan Leung | c37c634 | 2017-12-13 00:28:49 -0800 | [diff] [blame] | 630 | func (c *config) UseD8Desugar() bool { | 
| Alan Leung | e2fb629 | 2017-12-20 01:15:56 -0800 | [diff] [blame] | 631 | 	return !c.IsEnvFalse("USE_D8_DESUGAR") | 
| Alan Leung | c37c634 | 2017-12-13 00:28:49 -0800 | [diff] [blame] | 632 | } | 
 | 633 |  | 
| Colin Cross | 9d45bb7 | 2016-08-29 16:14:13 -0700 | [diff] [blame] | 634 | func (c *config) UseGoma() bool { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 635 | 	return Bool(c.productVariables.UseGoma) | 
| Colin Cross | 9d45bb7 | 2016-08-29 16:14:13 -0700 | [diff] [blame] | 636 | } | 
 | 637 |  | 
| Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 638 | // Returns true if OpenJDK9 prebuilts are being used | 
 | 639 | func (c *config) UseOpenJDK9() bool { | 
 | 640 | 	return c.useOpenJDK9 | 
 | 641 | } | 
 | 642 |  | 
 | 643 | // Returns true if -source 1.9 -target 1.9 is being passed to javac | 
 | 644 | func (c *config) TargetOpenJDK9() bool { | 
 | 645 | 	return c.targetOpenJDK9 | 
 | 646 | } | 
 | 647 |  | 
| Chih-Hung Hsieh | 02b4da5 | 2018-04-03 11:33:34 -0700 | [diff] [blame] | 648 | func (c *config) UseClangLld() bool { | 
 | 649 | 	return Bool(c.productVariables.UseClangLld) | 
 | 650 | } | 
 | 651 |  | 
| Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 652 | func (c *config) ClangTidy() bool { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 653 | 	return Bool(c.productVariables.ClangTidy) | 
| Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 654 | } | 
 | 655 |  | 
 | 656 | func (c *config) TidyChecks() string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 657 | 	if c.productVariables.TidyChecks == nil { | 
| Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 658 | 		return "" | 
 | 659 | 	} | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 660 | 	return *c.productVariables.TidyChecks | 
| Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 661 | } | 
 | 662 |  | 
| Colin Cross | 0f4e0d6 | 2016-07-27 10:56:55 -0700 | [diff] [blame] | 663 | func (c *config) LibartImgHostBaseAddress() string { | 
 | 664 | 	return "0x60000000" | 
 | 665 | } | 
 | 666 |  | 
 | 667 | func (c *config) LibartImgDeviceBaseAddress() string { | 
| Colin Cross | 20e1365 | 2017-06-22 15:34:51 -0700 | [diff] [blame] | 668 | 	archType := Common | 
 | 669 | 	if len(c.Targets[Device]) > 0 { | 
 | 670 | 		archType = c.Targets[Device][0].Arch.ArchType | 
 | 671 | 	} | 
 | 672 | 	switch archType { | 
| Colin Cross | 0f4e0d6 | 2016-07-27 10:56:55 -0700 | [diff] [blame] | 673 | 	default: | 
 | 674 | 		return "0x70000000" | 
 | 675 | 	case Mips, Mips64: | 
| Chris Larsen | ae7f3e2 | 2017-05-30 16:36:58 -0700 | [diff] [blame] | 676 | 		return "0x5C000000" | 
| Colin Cross | 0f4e0d6 | 2016-07-27 10:56:55 -0700 | [diff] [blame] | 677 | 	} | 
 | 678 | } | 
 | 679 |  | 
| Hiroshi Yamauchi | e2a1063 | 2016-12-19 13:44:41 -0800 | [diff] [blame] | 680 | func (c *config) ArtUseReadBarrier() bool { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 681 | 	return Bool(c.productVariables.ArtUseReadBarrier) | 
| Hiroshi Yamauchi | e2a1063 | 2016-12-19 13:44:41 -0800 | [diff] [blame] | 682 | } | 
 | 683 |  | 
| Dan Willemsen | 3fb1fae | 2018-03-12 15:30:26 -0700 | [diff] [blame] | 684 | func (c *config) EnforceRROForModule(name string) bool { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 685 | 	enforceList := c.productVariables.EnforceRROTargets | 
| Dan Willemsen | 3fb1fae | 2018-03-12 15:30:26 -0700 | [diff] [blame] | 686 | 	if enforceList != nil { | 
 | 687 | 		if len(*enforceList) == 1 && (*enforceList)[0] == "*" { | 
 | 688 | 			return true | 
 | 689 | 		} | 
 | 690 | 		return InList(name, *enforceList) | 
 | 691 | 	} | 
 | 692 | 	return false | 
 | 693 | } | 
 | 694 |  | 
 | 695 | func (c *config) EnforceRROExcludedOverlay(path string) bool { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 696 | 	excluded := c.productVariables.EnforceRROExcludedOverlays | 
| Dan Willemsen | 3fb1fae | 2018-03-12 15:30:26 -0700 | [diff] [blame] | 697 | 	if excluded != nil { | 
 | 698 | 		for _, exclude := range *excluded { | 
 | 699 | 			if strings.HasPrefix(path, exclude) { | 
 | 700 | 				return true | 
 | 701 | 			} | 
 | 702 | 		} | 
 | 703 | 	} | 
 | 704 | 	return false | 
 | 705 | } | 
 | 706 |  | 
 | 707 | func (c *config) ExportedNamespaces() []string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 708 | 	return append([]string(nil), c.productVariables.NamespacesToExport...) | 
| Dan Willemsen | 3fb1fae | 2018-03-12 15:30:26 -0700 | [diff] [blame] | 709 | } | 
 | 710 |  | 
 | 711 | func (c *config) HostStaticBinaries() bool { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 712 | 	return Bool(c.productVariables.HostStaticBinaries) | 
| Dan Willemsen | 3fb1fae | 2018-03-12 15:30:26 -0700 | [diff] [blame] | 713 | } | 
 | 714 |  | 
| Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 715 | func (c *deviceConfig) Arches() []Arch { | 
 | 716 | 	var arches []Arch | 
 | 717 | 	for _, target := range c.config.Targets[Device] { | 
 | 718 | 		arches = append(arches, target.Arch) | 
 | 719 | 	} | 
 | 720 | 	return arches | 
 | 721 | } | 
| Dan Willemsen | d2ede87 | 2016-11-18 14:54:24 -0800 | [diff] [blame] | 722 |  | 
| Jayant Chowdhary | 34ce67d | 2018-03-08 11:00:50 -0800 | [diff] [blame] | 723 | func (c *deviceConfig) BinderBitness() string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 724 | 	is32BitBinder := c.config.productVariables.Binder32bit | 
| Jayant Chowdhary | 34ce67d | 2018-03-08 11:00:50 -0800 | [diff] [blame] | 725 | 	if is32BitBinder != nil && *is32BitBinder { | 
 | 726 | 		return "32" | 
 | 727 | 	} | 
 | 728 | 	return "64" | 
 | 729 | } | 
 | 730 |  | 
| Dan Willemsen | 4353bc4 | 2016-12-05 17:16:02 -0800 | [diff] [blame] | 731 | func (c *deviceConfig) VendorPath() string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 732 | 	if c.config.productVariables.VendorPath != nil { | 
 | 733 | 		return *c.config.productVariables.VendorPath | 
| Dan Willemsen | 4353bc4 | 2016-12-05 17:16:02 -0800 | [diff] [blame] | 734 | 	} | 
 | 735 | 	return "vendor" | 
 | 736 | } | 
 | 737 |  | 
| Justin Yun | 7154928 | 2017-11-17 12:10:28 +0900 | [diff] [blame] | 738 | func (c *deviceConfig) VndkVersion() string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 739 | 	return String(c.config.productVariables.DeviceVndkVersion) | 
| Justin Yun | 7154928 | 2017-11-17 12:10:28 +0900 | [diff] [blame] | 740 | } | 
 | 741 |  | 
| Justin Yun | 8fe1212 | 2017-12-07 17:18:15 +0900 | [diff] [blame] | 742 | func (c *deviceConfig) PlatformVndkVersion() string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 743 | 	return String(c.config.productVariables.Platform_vndk_version) | 
| Justin Yun | 8fe1212 | 2017-12-07 17:18:15 +0900 | [diff] [blame] | 744 | } | 
 | 745 |  | 
| Justin Yun | 7154928 | 2017-11-17 12:10:28 +0900 | [diff] [blame] | 746 | func (c *deviceConfig) ExtraVndkVersions() []string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 747 | 	return c.config.productVariables.ExtraVndkVersions | 
| Dan Willemsen | d2ede87 | 2016-11-18 14:54:24 -0800 | [diff] [blame] | 748 | } | 
| Jack He | 8cc7143 | 2016-12-08 15:45:07 -0800 | [diff] [blame] | 749 |  | 
| Jiyong Park | 1a5d7b1 | 2018-01-15 15:05:10 +0900 | [diff] [blame] | 750 | func (c *deviceConfig) SystemSdkVersions() []string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 751 | 	if c.config.productVariables.DeviceSystemSdkVersions == nil { | 
| Jiyong Park | 1a5d7b1 | 2018-01-15 15:05:10 +0900 | [diff] [blame] | 752 | 		return nil | 
 | 753 | 	} | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 754 | 	return *c.config.productVariables.DeviceSystemSdkVersions | 
| Jiyong Park | 1a5d7b1 | 2018-01-15 15:05:10 +0900 | [diff] [blame] | 755 | } | 
 | 756 |  | 
 | 757 | func (c *deviceConfig) PlatformSystemSdkVersions() []string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 758 | 	return c.config.productVariables.Platform_systemsdk_versions | 
| Jiyong Park | 1a5d7b1 | 2018-01-15 15:05:10 +0900 | [diff] [blame] | 759 | } | 
 | 760 |  | 
| Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 761 | func (c *deviceConfig) OdmPath() string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 762 | 	if c.config.productVariables.OdmPath != nil { | 
 | 763 | 		return *c.config.productVariables.OdmPath | 
| Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 764 | 	} | 
 | 765 | 	return "odm" | 
 | 766 | } | 
 | 767 |  | 
| Jaekyun Seok | 5cfbfbb | 2018-01-10 19:00:15 +0900 | [diff] [blame] | 768 | func (c *deviceConfig) ProductPath() string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 769 | 	if c.config.productVariables.ProductPath != nil { | 
 | 770 | 		return *c.config.productVariables.ProductPath | 
| Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 771 | 	} | 
| Jaekyun Seok | 5cfbfbb | 2018-01-10 19:00:15 +0900 | [diff] [blame] | 772 | 	return "product" | 
| Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 773 | } | 
 | 774 |  | 
| Jack He | 8cc7143 | 2016-12-08 15:45:07 -0800 | [diff] [blame] | 775 | func (c *deviceConfig) BtConfigIncludeDir() string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 776 | 	return String(c.config.productVariables.BtConfigIncludeDir) | 
| Jack He | 8cc7143 | 2016-12-08 15:45:07 -0800 | [diff] [blame] | 777 | } | 
| Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 778 |  | 
| Jiyong Park | d773eb3 | 2017-07-03 13:18:12 +0900 | [diff] [blame] | 779 | func (c *deviceConfig) DeviceKernelHeaderDirs() []string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 780 | 	return c.config.productVariables.DeviceKernelHeaders | 
| Jiyong Park | d773eb3 | 2017-07-03 13:18:12 +0900 | [diff] [blame] | 781 | } | 
 | 782 |  | 
| Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 783 | func (c *deviceConfig) NativeCoverageEnabled() bool { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 784 | 	return Bool(c.config.productVariables.NativeCoverage) | 
| Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 785 | } | 
 | 786 |  | 
 | 787 | func (c *deviceConfig) CoverageEnabledForPath(path string) bool { | 
| Ryan Campbell | 469a18a | 2017-02-27 09:01:54 -0800 | [diff] [blame] | 788 | 	coverage := false | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 789 | 	if c.config.productVariables.CoveragePaths != nil { | 
 | 790 | 		if PrefixInList(path, *c.config.productVariables.CoveragePaths) { | 
| Ivan Lozano | 5f59553 | 2017-07-13 14:46:05 -0700 | [diff] [blame] | 791 | 			coverage = true | 
| Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 792 | 		} | 
 | 793 | 	} | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 794 | 	if coverage && c.config.productVariables.CoverageExcludePaths != nil { | 
 | 795 | 		if PrefixInList(path, *c.config.productVariables.CoverageExcludePaths) { | 
| Ivan Lozano | 5f59553 | 2017-07-13 14:46:05 -0700 | [diff] [blame] | 796 | 			coverage = false | 
| Ryan Campbell | 469a18a | 2017-02-27 09:01:54 -0800 | [diff] [blame] | 797 | 		} | 
 | 798 | 	} | 
 | 799 | 	return coverage | 
| Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 800 | } | 
| Ivan Lozano | 5f59553 | 2017-07-13 14:46:05 -0700 | [diff] [blame] | 801 |  | 
| Pirama Arumuga Nainar | 4954080 | 2018-01-29 23:11:42 -0800 | [diff] [blame] | 802 | func (c *deviceConfig) PgoAdditionalProfileDirs() []string { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 803 | 	return c.config.productVariables.PgoAdditionalProfileDirs | 
| Pirama Arumuga Nainar | 4954080 | 2018-01-29 23:11:42 -0800 | [diff] [blame] | 804 | } | 
 | 805 |  | 
| Tri Vo | 35a5143 | 2018-03-25 20:00:00 -0700 | [diff] [blame] | 806 | func (c *deviceConfig) VendorSepolicyDirs() []string { | 
 | 807 | 	return c.config.productVariables.BoardVendorSepolicyDirs | 
 | 808 | } | 
 | 809 |  | 
 | 810 | func (c *deviceConfig) OdmSepolicyDirs() []string { | 
 | 811 | 	return c.config.productVariables.BoardOdmSepolicyDirs | 
 | 812 | } | 
 | 813 |  | 
 | 814 | func (c *deviceConfig) PlatPublicSepolicyDir() string { | 
 | 815 | 	return c.config.productVariables.BoardPlatPublicSepolicyDir | 
 | 816 | } | 
 | 817 |  | 
 | 818 | func (c *deviceConfig) PlatPrivateSepolicyDir() string { | 
 | 819 | 	return c.config.productVariables.BoardPlatPrivateSepolicyDir | 
 | 820 | } | 
 | 821 |  | 
| Ivan Lozano | 5f59553 | 2017-07-13 14:46:05 -0700 | [diff] [blame] | 822 | func (c *config) IntegerOverflowDisabledForPath(path string) bool { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 823 | 	if c.productVariables.IntegerOverflowExcludePaths == nil { | 
| Ivan Lozano | 5f59553 | 2017-07-13 14:46:05 -0700 | [diff] [blame] | 824 | 		return false | 
 | 825 | 	} | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 826 | 	return PrefixInList(path, *c.productVariables.IntegerOverflowExcludePaths) | 
| Ivan Lozano | 5f59553 | 2017-07-13 14:46:05 -0700 | [diff] [blame] | 827 | } | 
| Vishwath Mohan | 1fa3ac5 | 2017-10-31 02:26:14 -0700 | [diff] [blame] | 828 |  | 
 | 829 | func (c *config) CFIDisabledForPath(path string) bool { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 830 | 	if c.productVariables.CFIExcludePaths == nil { | 
| Vishwath Mohan | 1fa3ac5 | 2017-10-31 02:26:14 -0700 | [diff] [blame] | 831 | 		return false | 
 | 832 | 	} | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 833 | 	return PrefixInList(path, *c.productVariables.CFIExcludePaths) | 
| Vishwath Mohan | 1fa3ac5 | 2017-10-31 02:26:14 -0700 | [diff] [blame] | 834 | } | 
 | 835 |  | 
 | 836 | func (c *config) CFIEnabledForPath(path string) bool { | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 837 | 	if c.productVariables.CFIIncludePaths == nil { | 
| Vishwath Mohan | 1fa3ac5 | 2017-10-31 02:26:14 -0700 | [diff] [blame] | 838 | 		return false | 
 | 839 | 	} | 
| Dan Willemsen | 45133ac | 2018-03-09 21:22:06 -0800 | [diff] [blame] | 840 | 	return PrefixInList(path, *c.productVariables.CFIIncludePaths) | 
| Vishwath Mohan | 1fa3ac5 | 2017-10-31 02:26:14 -0700 | [diff] [blame] | 841 | } | 
| Colin Cross | e15ddaf | 2017-12-04 11:24:31 -0800 | [diff] [blame] | 842 |  | 
| Dan Willemsen | 0fe7866 | 2018-03-26 12:41:18 -0700 | [diff] [blame] | 843 | func (c *config) VendorConfig(name string) VendorConfig { | 
 | 844 | 	return vendorConfig(c.productVariables.VendorVars[name]) | 
 | 845 | } | 
 | 846 |  | 
 | 847 | func (c vendorConfig) Bool(name string) bool { | 
 | 848 | 	v := strings.ToLower(c[name]) | 
 | 849 | 	return v == "1" || v == "y" || v == "yes" || v == "on" || v == "true" | 
 | 850 | } | 
 | 851 |  | 
 | 852 | func (c vendorConfig) String(name string) string { | 
 | 853 | 	return c[name] | 
 | 854 | } | 
 | 855 |  | 
 | 856 | func (c vendorConfig) IsSet(name string) bool { | 
 | 857 | 	_, ok := c[name] | 
 | 858 | 	return ok | 
 | 859 | } | 
 | 860 |  | 
| Colin Cross | e15ddaf | 2017-12-04 11:24:31 -0800 | [diff] [blame] | 861 | func stringSlice(s *[]string) []string { | 
 | 862 | 	if s != nil { | 
 | 863 | 		return *s | 
 | 864 | 	} else { | 
 | 865 | 		return nil | 
 | 866 | 	} | 
 | 867 | } |