blob: d1e8bfb9c8acbd48a91f26981e0275aa66ce7bee [file] [log] [blame]
Idries Hamadi41ad4ed2018-01-25 21:13:36 +00001//
2// Copyright (C) 2018 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
17java_library_static {
18 name: "apkzlib_zip",
Idries Hamadi22710482018-06-15 16:22:56 +010019 sdk_version: "24",
Idries Hamadi41ad4ed2018-01-25 21:13:36 +000020 srcs: [
Idries Hamadife54ae32018-06-08 19:34:42 +010021 "src/main/java/com/android/tools/build/apkzlib/utils/**/*.java",
22 "src/main/java/com/android/tools/build/apkzlib/zip/**/*.java",
Idries Hamadi41ad4ed2018-01-25 21:13:36 +000023 ],
24 static_libs: ["guava"],
25}
26
27java_library_host {
28 name: "apkzlib",
Idries Hamadife54ae32018-06-08 19:34:42 +010029 srcs: [
30 "src/main/java/com/android/tools/build/apkzlib/**/*.java",
31 ],
Idries Hamadi41ad4ed2018-01-25 21:13:36 +000032 static_libs: ["guava", "apksig"],
33}