diff options
author | 2023-04-21 17:37:11 -0700 | |
---|---|---|
committer | 2023-07-17 16:27:08 -0700 | |
commit | f8231dd0ea2aa0c2ba99e404a16d47db1322b223 (patch) | |
tree | 0e9579e2a1e4546581287ba02df243fb4e701d34 /android/configured_jars_test.go | |
parent | adb892c5393a6b1a3a40984fec14e3f51b102571 (diff) |
Platform mapping-based product config
This allows us to set product variables as build settings instead
of loading them from a target's provider, which further allows us
to read product config variables in transitions.
Bug: 287539062
Bug: 269577299
Test: Presubmits
Change-Id: I8497703f706162572ceb3486240e1eb02a37f5f6
Diffstat (limited to 'android/configured_jars_test.go')
-rw-r--r-- | android/configured_jars_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/configured_jars_test.go b/android/configured_jars_test.go index 32c3613f7..4b586e4d7 100644 --- a/android/configured_jars_test.go +++ b/android/configured_jars_test.go @@ -21,7 +21,7 @@ import ( func TestOverrideConfiguredJarLocationFor(t *testing.T) { cfg := NullConfig("", "") - cfg.productVariables = productVariables{ + cfg.productVariables = ProductVariables{ ConfiguredJarLocationOverrides: []string{ "platform:libfoo-old:com.android.foo:libfoo-new", "com.android.bar:libbar-old:platform:libbar-new", |