blob: 075fb86e12a127dfd223cb5e04a22139f5497012 [file] [log] [blame]
Colin Cross45566ba2016-07-12 18:45:19 -07001//
2// Copyright (C) 2013 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
16cc_defaults {
17 name: "libziparchive_flags",
18 cflags: [
19 // ZLIB_CONST turns on const for input buffers, which is pretty standard.
20 "-DZLIB_CONST",
21 "-Werror",
22 "-Wall",
Christian Poetzsch3081c5e2016-12-20 16:13:41 +000023 "-D_FILE_OFFSET_BITS=64",
Colin Cross45566ba2016-07-12 18:45:19 -070024 ],
25 cppflags: [
26 "-Wold-style-cast",
27 // Incorrectly warns when C++11 empty brace {} initializer is used.
28 // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61489
29 "-Wno-missing-field-initializers",
30 ],
31}
32
33cc_defaults {
34 name: "libziparchive_defaults",
35 srcs: [
36 "zip_archive.cc",
37 "zip_archive_stream_entry.cc",
38 "zip_writer.cc",
39 ],
40
41 target: {
42 windows: {
43 cflags: ["-mno-ms-bitfields"],
44
45 enabled: true,
46 },
47 },
48
49 shared_libs: [
50 "libbase",
51 "liblog",
52 ],
Andreas Gampea10a7e72017-07-05 22:02:54 -070053
54 export_include_dirs: ["include"],
Colin Cross45566ba2016-07-12 18:45:19 -070055}
56
Colin Cross45566ba2016-07-12 18:45:19 -070057cc_library {
58 name: "libziparchive",
59 host_supported: true,
Elliott Hughes55fd2932017-05-28 22:59:04 -070060 vendor_available: true,
Justin Yun096114d2017-08-03 15:51:33 +090061 vndk: {
62 enabled: true,
63 },
Jayant Chowdhary2c87bcc2017-05-16 13:09:54 -070064
Elliott Hughes55fd2932017-05-28 22:59:04 -070065 defaults: [
66 "libziparchive_defaults",
67 "libziparchive_flags",
68 ],
69 shared_libs: [
70 "liblog",
71 "libbase",
Dan Willemsen5cfa0062017-09-27 16:24:45 -070072 "libz",
Elliott Hughes55fd2932017-05-28 22:59:04 -070073 ],
Colin Cross45566ba2016-07-12 18:45:19 -070074 target: {
75 android: {
Elliott Hughes55fd2932017-05-28 22:59:04 -070076 shared_libs: [
Elliott Hughes55fd2932017-05-28 22:59:04 -070077 "libutils",
78 ],
Jaekyun Seok86e80b92016-12-21 14:22:00 +090079 },
80 host: {
81 static_libs: ["libutils"],
Colin Cross45566ba2016-07-12 18:45:19 -070082 },
Dan Willemsenab34b472016-11-29 13:32:55 -080083 linux_bionic: {
Dan Willemsenab34b472016-11-29 13:32:55 -080084 enabled: true,
85 },
Colin Cross45566ba2016-07-12 18:45:19 -070086 },
87}
88
Colin Cross45566ba2016-07-12 18:45:19 -070089// Tests.
90cc_test {
91 name: "ziparchive-tests",
92 host_supported: true,
93 defaults: ["libziparchive_flags"],
94
95 srcs: [
96 "entry_name_utils_test.cc",
97 "zip_archive_test.cc",
98 "zip_writer_test.cc",
99 ],
100 shared_libs: [
101 "libbase",
102 "liblog",
103 ],
104
105 static_libs: [
106 "libziparchive",
107 "libz",
108 "libutils",
109 ],
110
111 target: {
112 host: {
113 cppflags: ["-Wno-unnamed-type-template-args"],
114 },
115 windows: {
116 enabled: true,
117 },
118 },
119}
Sebastian Pop0a94c562017-05-30 09:14:20 -0500120
121// Performance benchmarks.
122cc_benchmark {
123 name: "ziparchive-benchmarks",
124 defaults: ["libziparchive_flags"],
125
126 srcs: [
127 "zip_archive_benchmark.cpp",
128 ],
129 shared_libs: [
130 "libbase",
131 "liblog",
132 ],
133
134 static_libs: [
135 "libziparchive",
136 "libz",
137 "libutils",
138 ],
139
140 target: {
141 host: {
142 cppflags: ["-Wno-unnamed-type-template-args"],
143 },
144 },
145}
Elliott Hughes55fd2932017-05-28 22:59:04 -0700146
147cc_binary {
148 name: "unzip",
149 defaults: ["libziparchive_flags"],
150 srcs: ["unzip.cpp"],
151 shared_libs: [
152 "libbase",
153 "libziparchive",
154 ],
155}