1// Copyright (C) 2014 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//      http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package {
16    default_team: "trendy_team_credential_manager",
17    default_applicable_licenses: ["Android-Apache-2.0"],
18}
19
20android_test {
21    name: "CtsCredentialManagerTestCases",
22    defaults: ["cts_defaults"],
23    dex_preopt: {
24        enabled: false,
25    },
26    optimize: {
27        enabled: false,
28    },
29    static_libs: [
30        "android-common",
31        "android-support-v4",
32        "androidx.test.ext.junit",
33        "androidx.test.rules",
34        "compatibility-device-util-axt",
35        "compatibility-device-util-axt",
36        "cts-wm-util",
37        "platform-test-annotations",
38        "testng",
39        "ctstestrunner-axt",
40        "truth",
41        "mockito-target-minus-junit4",
42        "androidx.test.ext.junit",
43        "EventLib",
44        "ActivityContext",
45        "Harrier",
46        "DeviceAdminApp",
47        "TestApp",
48        "MetricsRecorder",
49        "statsdprotolite",
50        "Interactive",
51        "android.credentials.flags-aconfig-java",
52        "flag-junit",
53    ],
54    libs: [
55        "android.test.base",
56        "android.test.runner",
57    ],
58    srcs: ["src/**/*.java"],
59    // Tag this module as a cts test artifact
60    test_suites: [
61        "cts",
62        "general-tests",
63    ],
64    sdk_version: "test_current",
65}
66