blob: 524087da721b405e9f4e93384297df9a45db6de1 [file] [log] [blame]
Julien Desprez92581482021-02-02 15:53:38 -08001/*
2 * Copyright (C) 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17// This file contains all the build target that we expect tests writers
18// to need to build tests.
19
20java_import_host {
21 name: "tradefed",
22 jars: [
23 ":tradefed-prebuilt",
24 ":tradefed-test-framework-prebuilt",
Julien Desprezc1218c82021-03-05 13:32:52 -080025 // The following are for platform branches only
26 ":platformprotos",
Julien Desprez92581482021-02-02 15:53:38 -080027 ],
28 installable: true,
29}
30
31// Target used for backward compatibility with suites
32java_import_host {
33 name: "tradefed-no-fwk",
34 jars: [":tradefed-prebuilt"],
35 installable: true,
36}
37
38java_import_host {
39 name: "tradefed-test-framework",
40 jars: [":tradefed-test-framework-prebuilt"],
41 installable: true,
42}
43
44java_import_host {
45 name: "loganalysis",
46 jars: [":loganalysis-prebuilt"],
47 installable: true,
48}
49
50// Targets for test suites
51java_import_host {
52 name: "compatibility-tradefed",
53 jars: [":compatibility-tradefed-prebuilt"],
54 installable: true,
55}
56
57java_import_host {
58 name: "compatibility-host-util",
59 jars: [":compatibility-host-util-prebuilt"],
60 installable: true,
61}