blob: fdc611aa00c02cfa6d0ea52cffd8aed112db9b7a [file] [log] [blame]
ejzb1db86e2020-03-03 16:21:32 -08001// Copyright 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
Bob Badour90545892021-02-23 18:55:26 -080015package {
16 default_applicable_licenses: ["Android-Apache-2.0"],
17}
18
ejzb1db86e2020-03-03 16:21:32 -080019java_test_host {
20 name: "CtsIncrementalInstallHostTestCases",
21 srcs: ["src/**/*.java"],
22 libs: [
23 "compatibility-host-util",
24 "cts-tradefed",
25 "tradefed",
26 "guava",
27 ],
28 static_libs: [
29 "incremental-install-common-host-lib",
30 ],
31 test_suites: [
32 "cts",
Dan Shi880952f2020-10-27 13:57:33 -070033 "general-tests",
ejzb1db86e2020-03-03 16:21:32 -080034 ],
Jaewoong Jungb66c9c72020-05-06 12:53:42 -070035 data: [
Alex Buynytskyy575d09f2022-03-31 11:18:33 -070036 ":IncrementalTestApp",
37 ":IncrementalTestAppUncompressed",
38 ":IncrementalTestApp2_v1",
39 ":IncrementalTestApp2_v2",
Jaewoong Jungb66c9c72020-05-06 12:53:42 -070040 ":IncrementalTestAppDynamicAsset",
41 ":IncrementalTestAppDynamicCode",
42 ":IncrementalTestAppCompressedNativeLib",
43 ":IncrementalTestAppUncompressedNativeLib",
Alex Buynytskyy575d09f2022-03-31 11:18:33 -070044 ":IncrementalTestAppValidator",
Jaewoong Jungb66c9c72020-05-06 12:53:42 -070045 ],
Alex Buynytskyy575d09f2022-03-31 11:18:33 -070046 per_testcase_directory: true,
ejzb1db86e2020-03-03 16:21:32 -080047}