diff options
author | 2023-04-21 17:37:11 -0700 | |
---|---|---|
committer | 2023-07-17 16:27:08 -0700 | |
commit | f8231dd0ea2aa0c2ba99e404a16d47db1322b223 (patch) | |
tree | 0e9579e2a1e4546581287ba02df243fb4e701d34 /android/sdk_version_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/sdk_version_test.go')
-rw-r--r-- | android/sdk_version_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/sdk_version_test.go b/android/sdk_version_test.go index ea99c4d62..30bd002c2 100644 --- a/android/sdk_version_test.go +++ b/android/sdk_version_test.go @@ -75,7 +75,7 @@ func TestSdkSpecFrom(t *testing.T) { config := NullConfig("", "") - config.productVariables = productVariables{ + config.productVariables = ProductVariables{ Platform_sdk_version: intPtr(31), Platform_sdk_codename: stringPtr("Tiramisu"), Platform_version_active_codenames: []string{"Tiramisu"}, |