• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    // See: http://go/android-license-faq
3    default_applicable_licenses: ["frameworks_base_license"],
4}
5
6android_robolectric_test {
7    name: "CredentialSelectorTests",
8    srcs: [
9        "src/**/*.kt",
10    ],
11    // Include test libraries.
12    instrumentation_for: "ClockworkCredentialManager",
13    libs: [
14        "androidx.test.runner",
15        "androidx.test.ext.junit",
16        "kotlinx_coroutines_android",
17        "kotlinx_coroutines",
18        "kotlinx-coroutines-core",
19        "kotlinx_coroutines_test",
20        "mockito-robolectric-prebuilt",
21        "mockito-kotlin2",
22        "CredentialManagerShared",
23        "ClockworkCredentialManager",
24        "framework_graphics_flags_java_lib",
25    ],
26    java_resource_dirs: ["config"],
27    upstream: true,
28    strict_mode: false,
29}
30