Alex Deymo | 831dc45 | 2017-09-07 21:09:58 +0200 | [diff] [blame] | 1 | // 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 | |
| 15 | cc_defaults { |
| 16 | name: "bsdiff_defaults", |
| 17 | host_supported: true, |
Tianjie Xu | 1c26e2e | 2017-10-26 17:19:41 -0700 | [diff] [blame^] | 18 | static_libs: ["libbz", "libbrotli"], |
Alex Deymo | dcd423b | 2017-09-13 20:54:24 +0200 | [diff] [blame] | 19 | // Allow internal includes to be referenced with the "bsdiff/" prefix in the |
| 20 | // path. |
| 21 | include_dirs: ["external"], |
Alex Deymo | 831dc45 | 2017-09-07 21:09:58 +0200 | [diff] [blame] | 22 | export_include_dirs: [ |
| 23 | "include", |
| 24 | // TODO(deymo): Remove include/bsdiff when all callers use the "bsdiff/" |
| 25 | // prefix when including code. |
| 26 | "include/bsdiff", |
| 27 | ], |
| 28 | cflags: [ |
| 29 | "-D_FILE_OFFSET_BITS=64", |
| 30 | "-Wall", |
| 31 | "-Werror", |
| 32 | "-Wextra", |
| 33 | "-Wno-unused-parameter", |
| 34 | ], |
| 35 | } |
| 36 | |
| 37 | // Host and target static libraries. |
| 38 | cc_library_static { |
| 39 | name: "libbspatch", |
| 40 | defaults: ["bsdiff_defaults"], |
| 41 | |
| 42 | srcs: [ |
| 43 | "bspatch.cc", |
Tianjie Xu | 6528812 | 2017-10-13 15:10:58 -0700 | [diff] [blame] | 44 | "bz2_decompressor.cc", |
Alex Deymo | 831dc45 | 2017-09-07 21:09:58 +0200 | [diff] [blame] | 45 | "buffer_file.cc", |
| 46 | "extents.cc", |
| 47 | "extents_file.cc", |
| 48 | "file.cc", |
| 49 | "memory_file.cc", |
Tianjie Xu | 6528812 | 2017-10-13 15:10:58 -0700 | [diff] [blame] | 50 | "patch_reader.cc", |
Alex Deymo | 831dc45 | 2017-09-07 21:09:58 +0200 | [diff] [blame] | 51 | "sink_file.cc", |
Tianjie Xu | 6528812 | 2017-10-13 15:10:58 -0700 | [diff] [blame] | 52 | "utils.cc", |
Alex Deymo | 831dc45 | 2017-09-07 21:09:58 +0200 | [diff] [blame] | 53 | ], |
| 54 | } |
| 55 | |
| 56 | cc_library_static { |
| 57 | name: "libbsdiff", |
| 58 | defaults: ["bsdiff_defaults"], |
| 59 | |
Alex Deymo | a28e019 | 2017-09-08 14:21:05 +0200 | [diff] [blame] | 60 | srcs: [ |
Tianjie Xu | 1c26e2e | 2017-10-26 17:19:41 -0700 | [diff] [blame^] | 61 | "brotli_compressor.cc", |
Alex Deymo | a28e019 | 2017-09-08 14:21:05 +0200 | [diff] [blame] | 62 | "bsdiff.cc", |
| 63 | "bz2_compressor.cc", |
Tianjie Xu | 1c26e2e | 2017-10-26 17:19:41 -0700 | [diff] [blame^] | 64 | "compressor_buffer.cc", |
| 65 | "compressor_interface.cc", |
Alex Deymo | 68c0e7f | 2017-10-02 20:38:12 +0200 | [diff] [blame] | 66 | "diff_encoder.cc", |
Alex Deymo | a28e019 | 2017-09-08 14:21:05 +0200 | [diff] [blame] | 67 | "patch_writer.cc", |
Alex Deymo | 8a179e5 | 2017-10-26 17:10:20 +0200 | [diff] [blame] | 68 | "patch_writer_factory.cc", |
Alex Deymo | e1140a2 | 2017-10-02 21:01:15 +0200 | [diff] [blame] | 69 | "split_patch_writer.cc", |
Alex Deymo | 48ad5ab | 2017-09-13 22:17:57 +0200 | [diff] [blame] | 70 | "suffix_array_index.cc", |
Alex Deymo | a28e019 | 2017-09-08 14:21:05 +0200 | [diff] [blame] | 71 | ], |
Alex Deymo | 831dc45 | 2017-09-07 21:09:58 +0200 | [diff] [blame] | 72 | static_libs: [ |
| 73 | "libdivsufsort64", |
| 74 | "libdivsufsort", |
Tianjie Xu | 1c26e2e | 2017-10-26 17:19:41 -0700 | [diff] [blame^] | 75 | "libbrotli", |
Alex Deymo | 831dc45 | 2017-09-07 21:09:58 +0200 | [diff] [blame] | 76 | ], |
| 77 | } |
| 78 | |
| 79 | // Host and target Executables. |
| 80 | cc_binary { |
| 81 | name: "bspatch", |
| 82 | defaults: ["bsdiff_defaults"], |
| 83 | |
| 84 | srcs: ["bspatch_main.cc"], |
| 85 | static_libs: [ |
| 86 | "libbspatch", |
| 87 | "libbz", |
Tianjie Xu | 1c26e2e | 2017-10-26 17:19:41 -0700 | [diff] [blame^] | 88 | "libbrotli", |
Alex Deymo | 831dc45 | 2017-09-07 21:09:58 +0200 | [diff] [blame] | 89 | ], |
| 90 | } |
| 91 | |
| 92 | // Host executables, bsdiff is only built for the host. |
| 93 | cc_binary_host { |
| 94 | name: "bsdiff", |
| 95 | defaults: ["bsdiff_defaults"], |
| 96 | |
| 97 | srcs: ["bsdiff_main.cc"], |
| 98 | static_libs: [ |
| 99 | "libbsdiff", |
| 100 | "libdivsufsort64", |
| 101 | "libdivsufsort", |
| 102 | "libbz", |
Tianjie Xu | 1c26e2e | 2017-10-26 17:19:41 -0700 | [diff] [blame^] | 103 | "libbrotli", |
Alex Deymo | 831dc45 | 2017-09-07 21:09:58 +0200 | [diff] [blame] | 104 | ], |
| 105 | } |
| 106 | |
| 107 | // Unit tests. |
| 108 | cc_test { |
| 109 | name: "bsdiff_unittest", |
| 110 | defaults: ["bsdiff_defaults"], |
| 111 | test_suites: ["device-tests"], |
| 112 | srcs: [ |
Tianjie Xu | 1c26e2e | 2017-10-26 17:19:41 -0700 | [diff] [blame^] | 113 | "brotli_compressor_unittest.cc", |
Alex Deymo | 831dc45 | 2017-09-07 21:09:58 +0200 | [diff] [blame] | 114 | "bsdiff_unittest.cc", |
| 115 | "bspatch_unittest.cc", |
Alex Deymo | 68c0e7f | 2017-10-02 20:38:12 +0200 | [diff] [blame] | 116 | "diff_encoder_unittest.cc", |
Alex Deymo | 831dc45 | 2017-09-07 21:09:58 +0200 | [diff] [blame] | 117 | "extents_file_unittest.cc", |
| 118 | "extents_unittest.cc", |
Tianjie Xu | 6528812 | 2017-10-13 15:10:58 -0700 | [diff] [blame] | 119 | "patch_reader_unittest.cc", |
Alex Deymo | fb3b632 | 2017-09-27 14:28:54 +0200 | [diff] [blame] | 120 | "patch_writer_unittest.cc", |
Alex Deymo | e1140a2 | 2017-10-02 21:01:15 +0200 | [diff] [blame] | 121 | "split_patch_writer_unittest.cc", |
Alex Deymo | 48ad5ab | 2017-09-13 22:17:57 +0200 | [diff] [blame] | 122 | "suffix_array_index_unittest.cc", |
Alex Deymo | 831dc45 | 2017-09-07 21:09:58 +0200 | [diff] [blame] | 123 | "test_utils.cc", |
| 124 | "testrunner.cc", |
| 125 | ], |
Alex Deymo | 831dc45 | 2017-09-07 21:09:58 +0200 | [diff] [blame] | 126 | static_libs: [ |
| 127 | "libbsdiff", |
| 128 | "libbspatch", |
| 129 | "libgmock", |
| 130 | "libdivsufsort64", |
| 131 | "libdivsufsort", |
| 132 | "libbz", |
Tianjie Xu | 1c26e2e | 2017-10-26 17:19:41 -0700 | [diff] [blame^] | 133 | "libbrotli", |
Alex Deymo | 831dc45 | 2017-09-07 21:09:58 +0200 | [diff] [blame] | 134 | ], |
Alex Deymo | fb3b632 | 2017-09-27 14:28:54 +0200 | [diff] [blame] | 135 | target: { |
| 136 | android: { |
| 137 | cflags: ["-DBSDIFF_TARGET_UNITTEST"], |
| 138 | }, |
| 139 | }, |
Alex Deymo | 831dc45 | 2017-09-07 21:09:58 +0200 | [diff] [blame] | 140 | } |