blob: c1340d976e7e86f1d2018530a16fc4fe06e2eaa1 [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
19 srcs: ["src/main/**/*.java"],
20 java_resource_dirs: ["res"],
21
22 static_libs: [
Tobias Thierer2db8c522017-10-25 02:35:59 +010023 "asm-6.0",
24 "asm-commons-6.0",
Colin Cross2acaac52017-10-02 16:57:00 -070025 ],
26
27 libs: [
28 "jarjar-maven-plugin-api",
29 "jarjar-apache-ant",
30 ],
31}
32
33//#################################################
34
35java_import_host {
36 name: "jarjar-maven-plugin-api",
37 jars: ["lib/maven-plugin-api.jar"],
38}
39
40java_import_host {
41 name: "jarjar-apache-ant",
42 jars: ["lib/apache-ant-1.9.4.jar"],
43}