1// Copyright (C) 2020 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_framework_android_packages",
17    default_applicable_licenses: ["Android-Apache-2.0"],
18}
19
20android_test_import {
21    name: "CtsCorruptApkTests_Compressed_Q",
22    apk: "compressed_Q.apk",
23    presigned: true,
24    test_suites: [
25        "cts",
26        "general-tests",
27    ],
28}
29
30android_test_import {
31    name: "CtsCorruptApkTests_Compressed_R",
32    apk: "compressed_R.apk",
33    preprocessed: true,
34    presigned: true,
35    test_suites: [
36        "cts",
37        "general-tests",
38    ],
39}
40
41android_test_import {
42    name: "CtsCorruptApkTests_Unaligned_Q",
43    apk: "unaligned_Q.apk",
44    presigned: true,
45    preprocessed: true,
46    // So the build system doesn't check that this apk is aligned
47    skip_preprocessed_apk_checks: true,
48    test_suites: [
49        "cts",
50        "general-tests",
51    ],
52}
53
54android_test_import {
55    name: "CtsCorruptApkTests_Unaligned_R",
56    apk: "unaligned_R.apk",
57    presigned: true,
58    preprocessed: true,
59    // So the build system doesn't check that this apk is aligned
60    skip_preprocessed_apk_checks: true,
61    test_suites: [
62        "cts",
63        "general-tests",
64    ],
65}
66