diff options
author | Jiyong Park <jiyong@google.com> | 2020-02-12 04:36:43 +0900 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2020-02-12 04:36:43 +0900 |
commit | aae9bd11c2e911807686c6bb0be0b9fa96dfcbb0 (patch) | |
tree | 86debb93a921ae9380310d65ca0aa5c2f6340f85 /java/sdk_test.go | |
parent | 2b2aee33a77e2da23da6bfa8f3d355b21dcb4cd4 (diff) | |
download | build_soong-aae9bd11c2e911807686c6bb0be0b9fa96dfcbb0.tar.gz build_soong-aae9bd11c2e911807686c6bb0be0b9fa96dfcbb0.tar.bz2 build_soong-aae9bd11c2e911807686c6bb0be0b9fa96dfcbb0.zip |
sdk_version: "system_server_current"
The new sdk version "system_server_current" is for system server
components that needs to use all public APIs, system APIs, module APIs,
and the system server APIs.
Bug: 146757305
Test: m
Change-Id: I24fd5af010532a110393676607dc90889f2ec17e
Diffstat (limited to 'java/sdk_test.go')
-rw-r--r-- | java/sdk_test.go | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/java/sdk_test.go b/java/sdk_test.go index c815fe3c..ea6733d8 100644 --- a/java/sdk_test.go +++ b/java/sdk_test.go @@ -212,7 +212,6 @@ func TestClasspath(t *testing.T) { aidl: "-pprebuilts/sdk/29/public/framework.aidl", }, { - name: "module_current", properties: `sdk_version: "module_current",`, bootclasspath: []string{"android_module_lib_stubs_current", "core-lambda-stubs"}, @@ -220,6 +219,14 @@ func TestClasspath(t *testing.T) { java9classpath: []string{"android_module_lib_stubs_current"}, aidl: "-p" + buildDir + "/framework.aidl", }, + { + name: "system_server_current", + properties: `sdk_version: "system_server_current",`, + bootclasspath: []string{"android_module_lib_stubs_current", "services-stubs", "core-lambda-stubs"}, + system: "core-current-stubs-system-modules", + java9classpath: []string{"android_module_lib_stubs_current", "services-stubs"}, + aidl: "-p" + buildDir + "/framework.aidl", + }, } for _, testcase := range classpathTestcases { |