blob: ea48443b44509b7be856624c003c68c062da488a [file] [log] [blame]
Colin Cross2acaac52017-10-02 16:57:00 -07001// Copyright (C) 2014 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_library_host {
16 name: "jarjar",
17 manifest: "manifest.txt",
18
Artur Satayev05bc0102020-04-09 19:53:35 +010019 srcs: [
20 "src/android/**/*.java",
21 "src/main/**/*.java",
22 ],
Colin Cross2acaac52017-10-02 16:57:00 -070023 java_resource_dirs: ["res"],
24
25 static_libs: [
Tobias Thierer2db8c522017-10-25 02:35:59 +010026 "asm-6.0",
27 "asm-commons-6.0",
Colin Cross2acaac52017-10-02 16:57:00 -070028 ],
29
30 libs: [
31 "jarjar-maven-plugin-api",
32 "jarjar-apache-ant",
33 ],
34}
35
36//#################################################
37
38java_import_host {
39 name: "jarjar-maven-plugin-api",
40 jars: ["lib/maven-plugin-api.jar"],
41}
42
43java_import_host {
44 name: "jarjar-apache-ant",
45 jars: ["lib/apache-ant-1.9.4.jar"],
46}