diff options
| author | 2020-04-28 14:15:17 +0100 | |
|---|---|---|
| committer | 2020-05-01 10:23:12 +0100 | |
| commit | 608bcf73eea39f249b3e4aebd62f468f6b35a996 (patch) | |
| tree | e771d40f5d4db8812e08e9b6db878af6a15d5ca9 /sdk/java_sdk_test.go | |
| parent | cceb7f2c1095e7ed3ee8adb316e96cf767e61805 (diff) | |
Fix definition of android_stubs_current in sdk tests
This change fixes an issue with the definition of the
android_stubs_current (and similar) modules in the sdk tests. They were
incorrectly defined as java_sdk_library_import and not java_import.
Test: m nothing
Bug: 155164730
Merged-In: I4e9bfebdd2ff0a374e12284ccdf5ee5518968969
Change-Id: I4e9bfebdd2ff0a374e12284ccdf5ee5518968969
(cherry picked from commit 260bd316bf3b8722ddf3b9c11ca54b519466d189)
Diffstat (limited to 'sdk/java_sdk_test.go')
| -rw-r--r-- | sdk/java_sdk_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sdk/java_sdk_test.go b/sdk/java_sdk_test.go index bce2ab390..a844a5313 100644 --- a/sdk/java_sdk_test.go +++ b/sdk/java_sdk_test.go @@ -46,13 +46,13 @@ java_system_modules_import { java_import { name: "core.platform.api.stubs", } -java_sdk_library_import { +java_import { name: "android_stubs_current", } -java_sdk_library_import { +java_import { name: "android_system_stubs_current", } -java_sdk_library_import { +java_import { name: "android_test_stubs_current", } java_import { |