1//////////////////////////////////////////////////////////////////
2// Signed Package
3
4package {
5    default_applicable_licenses: ["Android-Apache-2.0"],
6}
7
8android_test_import {
9    name: "signed-CtsSecureElementAccessControlTestCases1",
10    apk: "apk/signed-CtsSecureElementAccessControlTestCases1.apk",
11
12    test_suites: [
13        "cts",
14        "general-tests",
15    ],
16    // Make sure the build system doesn't try to resign the APK
17    presigned: true,
18    dex_preopt: {
19        enabled: false,
20    },
21}
22
23//#################################################################
24// Unsigned Package
25
26android_test_helper_app {
27    name: "CtsSecureElementAccessControlTestCases1",
28    defaults: ["cts_defaults"],
29    static_libs: [
30        "ctstestrunner-axt",
31        "compatibility-device-util-axt",
32    ],
33    srcs: ["src/**/*.java"],
34    libs: [
35        "android.test.runner",
36        "android.test.base",
37    ],
38    // Tag this module as a cts test artifact
39    test_suites: [
40        "cts",
41        "general-tests",
42    ],
43    dist: {
44        targets: ["cts"],
45    },
46}
47