blob: d0e593333e9438cd6f55f29dea22b69e51abf38a [file] [log] [blame]
Alex Deymo831dc452017-09-07 21:09:58 +02001// Copyright (C) 2008 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
15cc_defaults {
16 name: "bsdiff_defaults",
17 host_supported: true,
Tianjie Xu1c26e2e2017-10-26 17:19:41 -070018 static_libs: ["libbz", "libbrotli"],
Alex Deymodcd423b2017-09-13 20:54:24 +020019 // Allow internal includes to be referenced with the "bsdiff/" prefix in the
20 // path.
21 include_dirs: ["external"],
Alex Deymocb620ca2017-10-30 11:51:38 +010022 export_include_dirs: ["include"],
Alex Deymo831dc452017-09-07 21:09:58 +020023 cflags: [
24 "-D_FILE_OFFSET_BITS=64",
25 "-Wall",
26 "-Werror",
27 "-Wextra",
28 "-Wno-unused-parameter",
29 ],
30}
31
32// Host and target static libraries.
33cc_library_static {
34 name: "libbspatch",
35 defaults: ["bsdiff_defaults"],
Dan Willemsen141f70a2018-10-23 13:44:38 -070036 recovery_available: true,
Alex Deymo831dc452017-09-07 21:09:58 +020037
38 srcs: [
Tianjie Xu4d10c3e2017-10-26 14:02:06 -070039 "brotli_decompressor.cc",
Alex Deymo831dc452017-09-07 21:09:58 +020040 "bspatch.cc",
Tianjie Xu65288122017-10-13 15:10:58 -070041 "bz2_decompressor.cc",
Alex Deymo831dc452017-09-07 21:09:58 +020042 "buffer_file.cc",
Tianjie Xu4d10c3e2017-10-26 14:02:06 -070043 "decompressor_interface.cc",
Alex Deymo831dc452017-09-07 21:09:58 +020044 "extents.cc",
45 "extents_file.cc",
46 "file.cc",
Tianjie Xu18480eb2017-11-29 16:21:43 -080047 "logging.cc",
Alex Deymo831dc452017-09-07 21:09:58 +020048 "memory_file.cc",
Tianjie Xu65288122017-10-13 15:10:58 -070049 "patch_reader.cc",
Alex Deymo831dc452017-09-07 21:09:58 +020050 "sink_file.cc",
Tianjie Xu65288122017-10-13 15:10:58 -070051 "utils.cc",
Alex Deymo831dc452017-09-07 21:09:58 +020052 ],
53}
54
55cc_library_static {
56 name: "libbsdiff",
57 defaults: ["bsdiff_defaults"],
58
Alex Deymoa28e0192017-09-08 14:21:05 +020059 srcs: [
Tianjie Xu1c26e2e2017-10-26 17:19:41 -070060 "brotli_compressor.cc",
Alex Deymoa28e0192017-09-08 14:21:05 +020061 "bsdiff.cc",
62 "bz2_compressor.cc",
Tianjie Xu1c26e2e2017-10-26 17:19:41 -070063 "compressor_buffer.cc",
Alex Deymo68c0e7f2017-10-02 20:38:12 +020064 "diff_encoder.cc",
Alex Deymo710b3da2017-10-26 13:13:28 +020065 "endsley_patch_writer.cc",
Tianjie Xu18480eb2017-11-29 16:21:43 -080066 "logging.cc",
Alex Deymoa28e0192017-09-08 14:21:05 +020067 "patch_writer.cc",
Alex Deymo8a179e52017-10-26 17:10:20 +020068 "patch_writer_factory.cc",
Alex Deymoe1140a22017-10-02 21:01:15 +020069 "split_patch_writer.cc",
Alex Deymo48ad5ab2017-09-13 22:17:57 +020070 "suffix_array_index.cc",
Alex Deymoa28e0192017-09-08 14:21:05 +020071 ],
Alex Deymo831dc452017-09-07 21:09:58 +020072 static_libs: [
73 "libdivsufsort64",
74 "libdivsufsort",
Tianjie Xu1c26e2e2017-10-26 17:19:41 -070075 "libbrotli",
Alex Deymo831dc452017-09-07 21:09:58 +020076 ],
77}
78
Tao Bao1c1bce92019-01-10 11:28:53 -080079// Host executables: bsdiff and bspatch are only built for the host.
80cc_binary_host {
Alex Deymo831dc452017-09-07 21:09:58 +020081 name: "bspatch",
82 defaults: ["bsdiff_defaults"],
83
84 srcs: ["bspatch_main.cc"],
85 static_libs: [
86 "libbspatch",
87 "libbz",
Tianjie Xu1c26e2e2017-10-26 17:19:41 -070088 "libbrotli",
Alex Deymo831dc452017-09-07 21:09:58 +020089 ],
90}
91
Alex Deymo831dc452017-09-07 21:09:58 +020092cc_binary_host {
93 name: "bsdiff",
94 defaults: ["bsdiff_defaults"],
95
Tianjie Xu1f1cdb22017-11-20 11:05:55 -080096 srcs: [
97 "bsdiff_arguments.cc",
98 "bsdiff_main.cc",
99 ],
Alex Deymo831dc452017-09-07 21:09:58 +0200100 static_libs: [
101 "libbsdiff",
102 "libdivsufsort64",
103 "libdivsufsort",
104 "libbz",
Tianjie Xu1c26e2e2017-10-26 17:19:41 -0700105 "libbrotli",
Alex Deymo831dc452017-09-07 21:09:58 +0200106 ],
107}
108
109// Unit tests.
110cc_test {
111 name: "bsdiff_unittest",
112 defaults: ["bsdiff_defaults"],
113 test_suites: ["device-tests"],
114 srcs: [
Tianjie Xu1c26e2e2017-10-26 17:19:41 -0700115 "brotli_compressor_unittest.cc",
Alex Deymo338f3402018-03-23 13:40:17 +0100116 "brotli_decompressor_unittest.cc",
Tianjie Xu1f1cdb22017-11-20 11:05:55 -0800117 "bsdiff_arguments.cc",
118 "bsdiff_arguments_unittest.cc",
Alex Deymo831dc452017-09-07 21:09:58 +0200119 "bsdiff_unittest.cc",
120 "bspatch_unittest.cc",
Alex Deymo64d5cd82018-03-12 20:00:04 +0100121 "bz2_decompressor_unittest.cc",
Alex Deymo68c0e7f2017-10-02 20:38:12 +0200122 "diff_encoder_unittest.cc",
Alex Deymo710b3da2017-10-26 13:13:28 +0200123 "endsley_patch_writer_unittest.cc",
Alex Deymo831dc452017-09-07 21:09:58 +0200124 "extents_file_unittest.cc",
125 "extents_unittest.cc",
Tianjie Xu65288122017-10-13 15:10:58 -0700126 "patch_reader_unittest.cc",
Alex Deymofb3b6322017-09-27 14:28:54 +0200127 "patch_writer_unittest.cc",
Alex Deymoe1140a22017-10-02 21:01:15 +0200128 "split_patch_writer_unittest.cc",
Alex Deymo48ad5ab2017-09-13 22:17:57 +0200129 "suffix_array_index_unittest.cc",
Alex Deymo831dc452017-09-07 21:09:58 +0200130 "test_utils.cc",
131 "testrunner.cc",
132 ],
Alex Deymo831dc452017-09-07 21:09:58 +0200133 static_libs: [
134 "libbsdiff",
135 "libbspatch",
136 "libgmock",
137 "libdivsufsort64",
138 "libdivsufsort",
139 "libbz",
Tianjie Xu1c26e2e2017-10-26 17:19:41 -0700140 "libbrotli",
Alex Deymo831dc452017-09-07 21:09:58 +0200141 ],
Alex Deymofb3b6322017-09-27 14:28:54 +0200142 target: {
143 android: {
144 cflags: ["-DBSDIFF_TARGET_UNITTEST"],
145 },
146 },
Alex Deymo831dc452017-09-07 21:09:58 +0200147}