xref: /aosp_15_r20/tools/loganalysis/javatests/Android.bp (revision eb1e03308b1d4f76dd9da63845a4604cd39326c6)
1*eb1e0330SXin Li// Copyright (C) 2013 The Android Open Source Project
2*eb1e0330SXin Li//
3*eb1e0330SXin Li// Licensed under the Apache License, Version 2.0 (the "License");
4*eb1e0330SXin Li// you may not use this file except in compliance with the License.
5*eb1e0330SXin Li// You may obtain a copy of the License at
6*eb1e0330SXin Li//
7*eb1e0330SXin Li//      http://www.apache.org/licenses/LICENSE-2.0
8*eb1e0330SXin Li//
9*eb1e0330SXin Li// Unless required by applicable law or agreed to in writing, software
10*eb1e0330SXin Li// distributed under the License is distributed on an "AS IS" BASIS,
11*eb1e0330SXin Li// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12*eb1e0330SXin Li// See the License for the specific language governing permissions and
13*eb1e0330SXin Li// limitations under the License.
14*eb1e0330SXin Li
15*eb1e0330SXin Lipackage {
16*eb1e0330SXin Li    default_team: "trendy_team_android_test_surfaces",
17*eb1e0330SXin Li    default_applicable_licenses: ["Android-Apache-2.0"],
18*eb1e0330SXin Li}
19*eb1e0330SXin Li
20*eb1e0330SXin Lijava_test_host {
21*eb1e0330SXin Li    name: "loganalysis-tests",
22*eb1e0330SXin Li    defaults: ["tradefed_defaults"],
23*eb1e0330SXin Li
24*eb1e0330SXin Li    // Only compile source java files in this lib.
25*eb1e0330SXin Li    srcs: ["com/**/*.java"],
26*eb1e0330SXin Li
27*eb1e0330SXin Li    static_libs: [
28*eb1e0330SXin Li        "loganalysis",
29*eb1e0330SXin Li        "json-prebuilt",
30*eb1e0330SXin Li        "junit",
31*eb1e0330SXin Li        "guava",
32*eb1e0330SXin Li    ],
33*eb1e0330SXin Li}
34