blob: 7f029397228a48584cba21d4d0cf7e7b1faf5b66 [file] [log] [blame]
Andreas Gampe049b2112018-02-21 13:49:04 -08001// Copyright (C) 2017 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
15java_import {
16 name: "error_prone_annotations",
17 host_supported: true,
Andreas Gampe19bb7642018-10-14 22:23:05 -070018 jars: ["error_prone/error_prone_annotations-2.3.2.jar"],
Andreas Gampe049b2112018-02-21 13:49:04 -080019}
20
Julien Desprez6fc8c6d2018-07-24 11:03:46 -070021java_import {
22 name: "error_prone_core",
23 host_supported: true,
24 jars: [
Andreas Gampe19bb7642018-10-14 22:23:05 -070025 "checkerframework/dataflow-2.5.3.jar",
26 "checkerframework/javacutil-2.5.3.jar",
27 "error_prone/error_prone_core-2.3.2-with-dependencies.jar",
28 "error_prone/error_prone_annotations-2.3.2.jar",
Julien Desprez6fc8c6d2018-07-24 11:03:46 -070029 "javac/javac-9+181-r4173-1.jar",
30 "jFormatString/jFormatString-3.0.0.jar",
31 ],
32}
33
Colin Crosscf1a56d2019-03-25 10:25:48 -070034java_import {
35 name: "error_prone_test_helpers",
36 host_supported: true,
Colin Crossabf489f2019-04-22 23:34:16 -070037 jars: [
38 "error_prone/error_prone_test_helpers-2.3.2.jar",
39 "jimfs/jimfs-1.1.jar",
40 ],
Colin Crosscf1a56d2019-03-25 10:25:48 -070041}
42
Colin Crosse6e85f92017-09-05 13:19:32 -070043subdirs = ["soong"]