Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 1 | # Copyright 2020 The Pigweed Authors |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 4 | # use this file except in compliance with the License. You may obtain a copy of |
| 5 | # the License at |
| 6 | # |
| 7 | # https://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, WITHOUT |
| 11 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 12 | # License for the specific language governing permissions and limitations under |
| 13 | # the License. |
| 14 | |
| 15 | import("$dir_pw_docgen/docs.gni") |
karthik bharadwaj | eabe9a2 | 2020-04-14 09:28:28 -0700 | [diff] [blame] | 16 | import("$dir_pw_fuzzer/fuzzer.gni") |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 17 | import("$dir_pw_unit_test/test.gni") |
| 18 | |
| 19 | config("default_config") { |
| 20 | include_dirs = [ "public" ] |
| 21 | } |
| 22 | |
| 23 | source_set("pw_tokenizer") { |
Wyatt Hepler | 2119240 | 2020-01-15 15:40:51 -0800 | [diff] [blame] | 24 | public_configs = [ ":default_config" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 25 | public_deps = [ |
| 26 | "$dir_pw_preprocessor", |
| 27 | "$dir_pw_span", |
| 28 | ] |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 29 | deps = [ "$dir_pw_varint" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 30 | public = [ |
| 31 | "public/pw_tokenizer/pw_tokenizer_65599_fixed_length_hash.h", |
| 32 | "public/pw_tokenizer/tokenize.h", |
| 33 | ] |
| 34 | sources = [ |
| 35 | "public/pw_tokenizer/config.h", |
| 36 | "public/pw_tokenizer/internal/argument_types.h", |
| 37 | "public/pw_tokenizer/internal/argument_types_macro_4_byte.h", |
| 38 | "public/pw_tokenizer/internal/argument_types_macro_8_byte.h", |
| 39 | "public/pw_tokenizer/internal/pw_tokenizer_65599_fixed_length_128_hash_macro.h", |
| 40 | "public/pw_tokenizer/internal/pw_tokenizer_65599_fixed_length_80_hash_macro.h", |
| 41 | "public/pw_tokenizer/internal/pw_tokenizer_65599_fixed_length_96_hash_macro.h", |
| 42 | "public/pw_tokenizer/internal/tokenize_string.h", |
| 43 | "tokenize.cc", |
| 44 | ] |
| 45 | sources += public |
| 46 | friend = [ |
| 47 | ":argument_types_test", |
| 48 | ":hash_test", |
| 49 | ] |
| 50 | } |
| 51 | |
Wyatt Hepler | 3c2e952 | 2020-01-09 16:08:54 -0800 | [diff] [blame] | 52 | source_set("base64") { |
Wyatt Hepler | 2119240 | 2020-01-15 15:40:51 -0800 | [diff] [blame] | 53 | public_configs = [ ":default_config" ] |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 54 | public = [ "public/pw_tokenizer/base64.h" ] |
Wyatt Hepler | 3c2e952 | 2020-01-09 16:08:54 -0800 | [diff] [blame] | 55 | sources = [ "base64.cc" ] + public |
| 56 | public_deps = [ |
| 57 | "$dir_pw_preprocessor", |
| 58 | "$dir_pw_span", |
| 59 | ] |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 60 | deps = [ "$dir_pw_base64" ] |
Wyatt Hepler | 3c2e952 | 2020-01-09 16:08:54 -0800 | [diff] [blame] | 61 | } |
| 62 | |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 63 | source_set("decoder") { |
Wyatt Hepler | 2119240 | 2020-01-15 15:40:51 -0800 | [diff] [blame] | 64 | public_configs = [ ":default_config" ] |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 65 | public_deps = [ "$dir_pw_span" ] |
| 66 | deps = [ "$dir_pw_varint" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 67 | public = [ |
| 68 | "public/pw_tokenizer/detokenize.h", |
| 69 | "public/pw_tokenizer/token_database.h", |
| 70 | ] |
| 71 | sources = [ |
| 72 | "decode.cc", |
| 73 | "detokenize.cc", |
| 74 | "public/pw_tokenizer/internal/decode.h", |
| 75 | "token_database.cc", |
| 76 | ] |
| 77 | sources += public |
| 78 | friend = [ |
| 79 | ":decode_test", |
| 80 | ":generate_decoding_test_data", |
| 81 | ] |
| 82 | } |
| 83 | |
| 84 | # Executable for generating test data for the C++ and Python detokenizers. This |
| 85 | # target should only be built for the host. |
| 86 | executable("generate_decoding_test_data") { |
| 87 | deps = [ |
| 88 | ":decoder", |
| 89 | ":pw_tokenizer", |
| 90 | "$dir_pw_varint", |
| 91 | ] |
Aaron Green | b3ae1dc | 2020-04-13 11:37:05 -0700 | [diff] [blame] | 92 | sources = [ |
| 93 | "generate_decoding_test_data.cc", |
| 94 | "tokenize_test_fakes.cc", |
| 95 | ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 96 | } |
| 97 | |
Wyatt Hepler | bc25497 | 2020-01-06 18:35:30 -0800 | [diff] [blame] | 98 | # Executable for generating a test ELF file for elf_reader_test.py. A host |
| 99 | # version of this binary is checked in for use in elf_reader_test.py. |
| 100 | executable("elf_reader_test_binary") { |
| 101 | deps = [ |
| 102 | ":pw_tokenizer", |
| 103 | "$dir_pw_varint", |
| 104 | ] |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 105 | sources = [ "py/elf_reader_test_binary.c" ] |
Wyatt Hepler | bc25497 | 2020-01-06 18:35:30 -0800 | [diff] [blame] | 106 | ldflags = [ "-Wl,--unresolved-symbols=ignore-all" ] # main is not defined |
| 107 | } |
| 108 | |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 109 | pw_test_group("tests") { |
| 110 | tests = [ |
| 111 | ":argument_types_test", |
Wyatt Hepler | 3c2e952 | 2020-01-09 16:08:54 -0800 | [diff] [blame] | 112 | ":base64_test", |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 113 | ":decode_test", |
karthik bharadwaj | eabe9a2 | 2020-04-14 09:28:28 -0700 | [diff] [blame] | 114 | ":detokenize_fuzzer", |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 115 | ":detokenize_test", |
| 116 | ":hash_test", |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 117 | ":simple_tokenize_test_cpp11", |
| 118 | ":simple_tokenize_test_cpp14", |
| 119 | ":simple_tokenize_test_cpp17", |
karthik bharadwaj | 2ee244b | 2020-04-16 14:08:22 -0700 | [diff] [blame^] | 120 | ":token_database_fuzzer", |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 121 | ":token_database_test", |
| 122 | ":tokenize_test", |
| 123 | ] |
| 124 | group_deps = [ |
| 125 | "$dir_pw_preprocessor:tests", |
| 126 | "$dir_pw_span:tests", |
| 127 | "$dir_pw_status:tests", |
| 128 | ] |
| 129 | } |
| 130 | |
| 131 | pw_test("argument_types_test") { |
| 132 | sources = [ |
| 133 | "argument_types_test.c", |
| 134 | "argument_types_test.cc", |
| 135 | "pw_tokenizer_private/argument_types_test.h", |
Aaron Green | b3ae1dc | 2020-04-13 11:37:05 -0700 | [diff] [blame] | 136 | "tokenize_test_fakes.cc", |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 137 | ] |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 138 | deps = [ ":pw_tokenizer" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 139 | } |
| 140 | |
Wyatt Hepler | 3c2e952 | 2020-01-09 16:08:54 -0800 | [diff] [blame] | 141 | pw_test("base64_test") { |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 142 | sources = [ "base64_test.cc" ] |
| 143 | deps = [ ":base64" ] |
Wyatt Hepler | 3c2e952 | 2020-01-09 16:08:54 -0800 | [diff] [blame] | 144 | } |
| 145 | |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 146 | pw_test("decode_test") { |
| 147 | sources = [ |
| 148 | "decode_test.cc", |
| 149 | "pw_tokenizer_private/tokenized_string_decoding_test_data.h", |
| 150 | "pw_tokenizer_private/varint_decoding_test_data.h", |
| 151 | ] |
| 152 | deps = [ |
| 153 | ":decoder", |
| 154 | "$dir_pw_varint", |
| 155 | ] |
| 156 | } |
| 157 | |
| 158 | pw_test("detokenize_test") { |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 159 | sources = [ "detokenize_test.cc" ] |
| 160 | deps = [ ":decoder" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | pw_test("hash_test") { |
| 164 | sources = [ |
| 165 | "hash_test.cc", |
| 166 | "pw_tokenizer_private/generated_hash_test_cases.h", |
Aaron Green | b3ae1dc | 2020-04-13 11:37:05 -0700 | [diff] [blame] | 167 | "tokenize_test_fakes.cc", |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 168 | ] |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 169 | deps = [ ":pw_tokenizer" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 170 | } |
| 171 | |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 172 | # Fully test C++11 and C++14 compatibility by compiling all sources as C++11 or |
| 173 | # C++14. |
| 174 | _simple_tokenize_test_sources = [ |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 175 | "$dir_pw_varint/public/pw_varint/varint.h", |
| 176 | "$dir_pw_varint/varint.cc", |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 177 | "public/pw_tokenizer/config.h", |
| 178 | "public/pw_tokenizer/internal/argument_types.h", |
| 179 | "public/pw_tokenizer/internal/argument_types_macro_4_byte.h", |
| 180 | "public/pw_tokenizer/internal/argument_types_macro_8_byte.h", |
| 181 | "public/pw_tokenizer/internal/pw_tokenizer_65599_fixed_length_128_hash_macro.h", |
| 182 | "public/pw_tokenizer/internal/pw_tokenizer_65599_fixed_length_80_hash_macro.h", |
| 183 | "public/pw_tokenizer/internal/pw_tokenizer_65599_fixed_length_96_hash_macro.h", |
| 184 | "public/pw_tokenizer/internal/tokenize_string.h", |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 185 | "public/pw_tokenizer/pw_tokenizer_65599_fixed_length_hash.h", |
| 186 | "public/pw_tokenizer/tokenize.h", |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 187 | "simple_tokenize_test.cc", |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 188 | "tokenize.cc", |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 189 | ] |
| 190 | _simple_tokenize_test_configs = [ |
| 191 | ":default_config", |
| 192 | "$dir_pw_varint:default_config", |
| 193 | ] |
| 194 | |
| 195 | pw_test("simple_tokenize_test_cpp11") { |
| 196 | configs = [ "$dir_pw_build:cpp11" ] + _simple_tokenize_test_configs |
| 197 | sources = _simple_tokenize_test_sources |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 198 | deps = [ dir_pw_preprocessor ] |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | pw_test("simple_tokenize_test_cpp14") { |
| 202 | configs = [ "$dir_pw_build:cpp14" ] + _simple_tokenize_test_configs |
| 203 | sources = _simple_tokenize_test_sources |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 204 | deps = [ dir_pw_preprocessor ] |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | pw_test("simple_tokenize_test_cpp17") { |
| 208 | configs = [ "$dir_pw_build:cpp17" ] + _simple_tokenize_test_configs |
| 209 | sources = _simple_tokenize_test_sources |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 210 | deps = [ dir_pw_preprocessor ] |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 211 | } |
| 212 | |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 213 | pw_test("token_database_test") { |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 214 | sources = [ "token_database_test.cc" ] |
| 215 | deps = [ ":decoder" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | pw_test("tokenize_test") { |
| 219 | sources = [ |
| 220 | "pw_tokenizer_private/tokenize_test.h", |
| 221 | "tokenize_test.c", |
| 222 | "tokenize_test.cc", |
| 223 | ] |
| 224 | deps = [ |
| 225 | ":pw_tokenizer", |
| 226 | "$dir_pw_varint", |
| 227 | ] |
| 228 | } |
| 229 | |
karthik bharadwaj | 2ee244b | 2020-04-16 14:08:22 -0700 | [diff] [blame^] | 230 | pw_fuzzer("token_database_fuzzer") { |
| 231 | sources = [ "token_database_fuzzer.cc" ] |
| 232 | deps = [ |
| 233 | ":decoder", |
| 234 | "$dir_pw_fuzzer", |
| 235 | "$dir_pw_preprocessor", |
| 236 | "$dir_pw_span", |
| 237 | ] |
| 238 | } |
| 239 | |
karthik bharadwaj | eabe9a2 | 2020-04-14 09:28:28 -0700 | [diff] [blame] | 240 | pw_fuzzer("detokenize_fuzzer") { |
| 241 | sources = [ "detokenize_fuzzer.cc" ] |
| 242 | deps = [ |
| 243 | ":decoder", |
| 244 | "$dir_pw_fuzzer", |
| 245 | "$dir_pw_preprocessor", |
| 246 | ] |
| 247 | } |
| 248 | |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 249 | declare_args() { |
| 250 | # pw_java_native_interface_include_dirs specifies the paths to use for |
| 251 | # building Java Native Interface libraries. If no paths are provided, targets |
| 252 | # that require JNI may not build correctly. |
| 253 | # |
| 254 | # Example JNI include paths for a Linux system: |
| 255 | # |
| 256 | # pw_java_native_interface_include_dirs = [ |
| 257 | # "/usr/local/buildtools/java/jdk/include/", |
| 258 | # "/usr/local/buildtools/java/jdk/include/linux", |
| 259 | # ] |
| 260 | # |
| 261 | pw_java_native_interface_include_dirs = [] |
| 262 | } |
| 263 | |
| 264 | # Create a shared library for the tokenizer JNI wrapper. The include paths for |
| 265 | # the JNI headers must be available in the system or provided with the |
| 266 | # pw_java_native_interface_include_dirs variable. |
| 267 | shared_library("detokenizer_jni") { |
Wyatt Hepler | 2119240 | 2020-01-15 15:40:51 -0800 | [diff] [blame] | 268 | public_configs = [ ":default_config" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 269 | include_dirs = pw_java_native_interface_include_dirs |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 270 | sources = [ "java/dev/pigweed/tokenizer/detokenizer.cc" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 271 | public_deps = [ |
| 272 | ":decoder", |
| 273 | "$dir_pw_preprocessor", |
| 274 | ] |
| 275 | } |
| 276 | |
| 277 | pw_doc_group("docs") { |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 278 | sources = [ "docs.rst" ] |
Wyatt Hepler | f5e984a | 2020-04-15 18:15:09 -0700 | [diff] [blame] | 279 | inputs = [ "py/pw_tokenizer/encode.py" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 280 | } |