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 | |
Wyatt Hepler | 6639c45 | 2020-05-06 11:43:07 -0700 | [diff] [blame] | 15 | import("$dir_pw_build/facade.gni") |
Alexei Frolov | edd2f14 | 2020-06-09 19:11:27 -0700 | [diff] [blame^] | 16 | import("$dir_pw_build/target_types.gni") |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 17 | import("$dir_pw_docgen/docs.gni") |
karthik bharadwaj | eabe9a2 | 2020-04-14 09:28:28 -0700 | [diff] [blame] | 18 | import("$dir_pw_fuzzer/fuzzer.gni") |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 19 | import("$dir_pw_unit_test/test.gni") |
| 20 | |
| 21 | config("default_config") { |
| 22 | include_dirs = [ "public" ] |
| 23 | } |
| 24 | |
Alexei Frolov | edd2f14 | 2020-06-09 19:11:27 -0700 | [diff] [blame^] | 25 | pw_source_set("pw_tokenizer") { |
Wyatt Hepler | 2119240 | 2020-01-15 15:40:51 -0800 | [diff] [blame] | 26 | public_configs = [ ":default_config" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 27 | public_deps = [ |
Wyatt Hepler | 6639c45 | 2020-05-06 11:43:07 -0700 | [diff] [blame] | 28 | dir_pw_preprocessor, |
| 29 | dir_pw_span, |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 30 | ] |
Wyatt Hepler | 6639c45 | 2020-05-06 11:43:07 -0700 | [diff] [blame] | 31 | deps = [ dir_pw_varint ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 32 | public = [ |
| 33 | "public/pw_tokenizer/pw_tokenizer_65599_fixed_length_hash.h", |
| 34 | "public/pw_tokenizer/tokenize.h", |
| 35 | ] |
| 36 | sources = [ |
Wyatt Hepler | 6639c45 | 2020-05-06 11:43:07 -0700 | [diff] [blame] | 37 | "encode_args.cc", |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 38 | "public/pw_tokenizer/config.h", |
| 39 | "public/pw_tokenizer/internal/argument_types.h", |
| 40 | "public/pw_tokenizer/internal/argument_types_macro_4_byte.h", |
| 41 | "public/pw_tokenizer/internal/argument_types_macro_8_byte.h", |
| 42 | "public/pw_tokenizer/internal/pw_tokenizer_65599_fixed_length_128_hash_macro.h", |
| 43 | "public/pw_tokenizer/internal/pw_tokenizer_65599_fixed_length_80_hash_macro.h", |
| 44 | "public/pw_tokenizer/internal/pw_tokenizer_65599_fixed_length_96_hash_macro.h", |
| 45 | "public/pw_tokenizer/internal/tokenize_string.h", |
Wyatt Hepler | 6639c45 | 2020-05-06 11:43:07 -0700 | [diff] [blame] | 46 | "pw_tokenizer_private/encode_args.h", |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 47 | "tokenize.cc", |
| 48 | ] |
Wyatt Hepler | a8557ef | 2020-05-04 16:29:23 -0700 | [diff] [blame] | 49 | friend = [ ":*" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 50 | } |
| 51 | |
Wyatt Hepler | 6639c45 | 2020-05-06 11:43:07 -0700 | [diff] [blame] | 52 | # As a temporary workaround, if no backend is set, use an empty test backend so |
| 53 | # that the test can define the handler function. |
| 54 | # TODO(hepler): Switch this to a facade test when available. |
| 55 | if (dir_pw_tokenizer_global_handler_backend == "" && |
| 56 | dir_pw_tokenizer_global_handler_with_payload_backend == "") { |
| 57 | # This is an empty library to use as the backend for global_handler and |
| 58 | # global_handler_with_payload tests. |
Alexei Frolov | edd2f14 | 2020-06-09 19:11:27 -0700 | [diff] [blame^] | 59 | pw_source_set("test_backend") { |
Wyatt Hepler | 6639c45 | 2020-05-06 11:43:07 -0700 | [diff] [blame] | 60 | visibility = [ ":*" ] |
| 61 | } |
| 62 | |
| 63 | dir_pw_tokenizer_global_handler_backend = ":test_backend" |
| 64 | dir_pw_tokenizer_global_handler_with_payload_backend = ":test_backend" |
| 65 | |
| 66 | enable_global_handler_test = true |
| 67 | } else { |
| 68 | enable_global_handler_test = false |
| 69 | } |
| 70 | |
| 71 | pw_facade("global_handler") { |
| 72 | facade_name = "global_handler_facade" |
| 73 | backend = dir_pw_tokenizer_global_handler_backend |
| 74 | |
| 75 | public_configs = [ ":default_config" ] |
| 76 | public = [ "public/pw_tokenizer/tokenize_to_global_handler.h" ] |
| 77 | sources = [ "tokenize_to_global_handler.cc" ] |
| 78 | public_deps = [ ":pw_tokenizer" ] |
| 79 | } |
| 80 | |
| 81 | pw_facade("global_handler_with_payload") { |
| 82 | facade_name = "global_handler_with_payload_facade" |
| 83 | backend = dir_pw_tokenizer_global_handler_with_payload_backend |
| 84 | |
| 85 | public_configs = [ ":default_config" ] |
| 86 | public = [ "public/pw_tokenizer/tokenize_to_global_handler_with_payload.h" ] |
| 87 | sources = [ "tokenize_to_global_handler_with_payload.cc" ] |
| 88 | public_deps = [ ":pw_tokenizer" ] |
| 89 | } |
| 90 | |
Alexei Frolov | edd2f14 | 2020-06-09 19:11:27 -0700 | [diff] [blame^] | 91 | pw_source_set("base64") { |
Wyatt Hepler | 2119240 | 2020-01-15 15:40:51 -0800 | [diff] [blame] | 92 | public_configs = [ ":default_config" ] |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 93 | public = [ "public/pw_tokenizer/base64.h" ] |
Wyatt Hepler | a8557ef | 2020-05-04 16:29:23 -0700 | [diff] [blame] | 94 | sources = [ "base64.cc" ] |
Wyatt Hepler | 3c2e952 | 2020-01-09 16:08:54 -0800 | [diff] [blame] | 95 | public_deps = [ |
Wyatt Hepler | 6639c45 | 2020-05-06 11:43:07 -0700 | [diff] [blame] | 96 | dir_pw_preprocessor, |
| 97 | dir_pw_span, |
Wyatt Hepler | 3c2e952 | 2020-01-09 16:08:54 -0800 | [diff] [blame] | 98 | ] |
Wyatt Hepler | 6639c45 | 2020-05-06 11:43:07 -0700 | [diff] [blame] | 99 | deps = [ dir_pw_base64 ] |
Wyatt Hepler | 3c2e952 | 2020-01-09 16:08:54 -0800 | [diff] [blame] | 100 | } |
| 101 | |
Alexei Frolov | edd2f14 | 2020-06-09 19:11:27 -0700 | [diff] [blame^] | 102 | pw_source_set("decoder") { |
Wyatt Hepler | 2119240 | 2020-01-15 15:40:51 -0800 | [diff] [blame] | 103 | public_configs = [ ":default_config" ] |
Wyatt Hepler | 6639c45 | 2020-05-06 11:43:07 -0700 | [diff] [blame] | 104 | public_deps = [ dir_pw_span ] |
| 105 | deps = [ dir_pw_varint ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 106 | public = [ |
| 107 | "public/pw_tokenizer/detokenize.h", |
| 108 | "public/pw_tokenizer/token_database.h", |
| 109 | ] |
| 110 | sources = [ |
| 111 | "decode.cc", |
| 112 | "detokenize.cc", |
| 113 | "public/pw_tokenizer/internal/decode.h", |
| 114 | "token_database.cc", |
| 115 | ] |
Wyatt Hepler | a8557ef | 2020-05-04 16:29:23 -0700 | [diff] [blame] | 116 | friend = [ ":*" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | # Executable for generating test data for the C++ and Python detokenizers. This |
| 120 | # target should only be built for the host. |
| 121 | executable("generate_decoding_test_data") { |
| 122 | deps = [ |
| 123 | ":decoder", |
| 124 | ":pw_tokenizer", |
Wyatt Hepler | 6639c45 | 2020-05-06 11:43:07 -0700 | [diff] [blame] | 125 | dir_pw_varint, |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 126 | ] |
Aaron Green | b3ae1dc | 2020-04-13 11:37:05 -0700 | [diff] [blame] | 127 | sources = [ |
| 128 | "generate_decoding_test_data.cc", |
| 129 | "tokenize_test_fakes.cc", |
| 130 | ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 131 | } |
| 132 | |
Wyatt Hepler | bc25497 | 2020-01-06 18:35:30 -0800 | [diff] [blame] | 133 | # Executable for generating a test ELF file for elf_reader_test.py. A host |
| 134 | # version of this binary is checked in for use in elf_reader_test.py. |
| 135 | executable("elf_reader_test_binary") { |
| 136 | deps = [ |
| 137 | ":pw_tokenizer", |
| 138 | "$dir_pw_varint", |
| 139 | ] |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 140 | sources = [ "py/elf_reader_test_binary.c" ] |
Wyatt Hepler | bc25497 | 2020-01-06 18:35:30 -0800 | [diff] [blame] | 141 | ldflags = [ "-Wl,--unresolved-symbols=ignore-all" ] # main is not defined |
| 142 | } |
| 143 | |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 144 | pw_test_group("tests") { |
| 145 | tests = [ |
| 146 | ":argument_types_test", |
Wyatt Hepler | 3c2e952 | 2020-01-09 16:08:54 -0800 | [diff] [blame] | 147 | ":base64_test", |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 148 | ":decode_test", |
karthik bharadwaj | eabe9a2 | 2020-04-14 09:28:28 -0700 | [diff] [blame] | 149 | ":detokenize_fuzzer", |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 150 | ":detokenize_test", |
Wyatt Hepler | 6639c45 | 2020-05-06 11:43:07 -0700 | [diff] [blame] | 151 | ":global_handlers_test", |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 152 | ":hash_test", |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 153 | ":simple_tokenize_test_cpp11", |
| 154 | ":simple_tokenize_test_cpp14", |
| 155 | ":simple_tokenize_test_cpp17", |
karthik bharadwaj | 2ee244b | 2020-04-16 14:08:22 -0700 | [diff] [blame] | 156 | ":token_database_fuzzer", |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 157 | ":token_database_test", |
| 158 | ":tokenize_test", |
| 159 | ] |
| 160 | group_deps = [ |
| 161 | "$dir_pw_preprocessor:tests", |
| 162 | "$dir_pw_span:tests", |
| 163 | "$dir_pw_status:tests", |
| 164 | ] |
| 165 | } |
| 166 | |
| 167 | pw_test("argument_types_test") { |
| 168 | sources = [ |
| 169 | "argument_types_test.c", |
| 170 | "argument_types_test.cc", |
| 171 | "pw_tokenizer_private/argument_types_test.h", |
Aaron Green | b3ae1dc | 2020-04-13 11:37:05 -0700 | [diff] [blame] | 172 | "tokenize_test_fakes.cc", |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 173 | ] |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 174 | deps = [ ":pw_tokenizer" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 175 | } |
| 176 | |
Wyatt Hepler | 3c2e952 | 2020-01-09 16:08:54 -0800 | [diff] [blame] | 177 | pw_test("base64_test") { |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 178 | sources = [ "base64_test.cc" ] |
| 179 | deps = [ ":base64" ] |
Wyatt Hepler | 3c2e952 | 2020-01-09 16:08:54 -0800 | [diff] [blame] | 180 | } |
| 181 | |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 182 | pw_test("decode_test") { |
| 183 | sources = [ |
| 184 | "decode_test.cc", |
| 185 | "pw_tokenizer_private/tokenized_string_decoding_test_data.h", |
| 186 | "pw_tokenizer_private/varint_decoding_test_data.h", |
| 187 | ] |
| 188 | deps = [ |
| 189 | ":decoder", |
| 190 | "$dir_pw_varint", |
| 191 | ] |
| 192 | } |
| 193 | |
| 194 | pw_test("detokenize_test") { |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 195 | sources = [ "detokenize_test.cc" ] |
| 196 | deps = [ ":decoder" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 197 | } |
| 198 | |
Wyatt Hepler | 6639c45 | 2020-05-06 11:43:07 -0700 | [diff] [blame] | 199 | pw_test("global_handlers_test") { |
| 200 | sources = [ |
| 201 | "global_handlers_test.c", |
| 202 | "global_handlers_test.cc", |
| 203 | "pw_tokenizer_private/tokenize_test.h", |
| 204 | ] |
| 205 | deps = [ |
| 206 | ":global_handler", |
| 207 | ":global_handler_with_payload", |
| 208 | ] |
| 209 | |
| 210 | # TODO(hepler): Switch this to a facade test when available. |
| 211 | enable_if = enable_global_handler_test |
| 212 | } |
| 213 | |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 214 | pw_test("hash_test") { |
| 215 | sources = [ |
| 216 | "hash_test.cc", |
| 217 | "pw_tokenizer_private/generated_hash_test_cases.h", |
Aaron Green | b3ae1dc | 2020-04-13 11:37:05 -0700 | [diff] [blame] | 218 | "tokenize_test_fakes.cc", |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 219 | ] |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 220 | deps = [ ":pw_tokenizer" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 221 | } |
| 222 | |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 223 | # Fully test C++11 and C++14 compatibility by compiling all sources as C++11 or |
| 224 | # C++14. |
| 225 | _simple_tokenize_test_sources = [ |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 226 | "$dir_pw_varint/public/pw_varint/varint.h", |
| 227 | "$dir_pw_varint/varint.cc", |
Wyatt Hepler | 6639c45 | 2020-05-06 11:43:07 -0700 | [diff] [blame] | 228 | "encode_args.cc", |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 229 | "public/pw_tokenizer/config.h", |
| 230 | "public/pw_tokenizer/internal/argument_types.h", |
| 231 | "public/pw_tokenizer/internal/argument_types_macro_4_byte.h", |
| 232 | "public/pw_tokenizer/internal/argument_types_macro_8_byte.h", |
| 233 | "public/pw_tokenizer/internal/pw_tokenizer_65599_fixed_length_128_hash_macro.h", |
| 234 | "public/pw_tokenizer/internal/pw_tokenizer_65599_fixed_length_80_hash_macro.h", |
| 235 | "public/pw_tokenizer/internal/pw_tokenizer_65599_fixed_length_96_hash_macro.h", |
| 236 | "public/pw_tokenizer/internal/tokenize_string.h", |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 237 | "public/pw_tokenizer/pw_tokenizer_65599_fixed_length_hash.h", |
| 238 | "public/pw_tokenizer/tokenize.h", |
Wyatt Hepler | 6639c45 | 2020-05-06 11:43:07 -0700 | [diff] [blame] | 239 | "public/pw_tokenizer/tokenize_to_global_handler.h", |
| 240 | "public/pw_tokenizer/tokenize_to_global_handler_with_payload.h", |
| 241 | "pw_tokenizer_private/encode_args.h", |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 242 | "simple_tokenize_test.cc", |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 243 | "tokenize.cc", |
Wyatt Hepler | 6639c45 | 2020-05-06 11:43:07 -0700 | [diff] [blame] | 244 | "tokenize_to_global_handler.cc", |
| 245 | "tokenize_to_global_handler_with_payload.cc", |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 246 | ] |
| 247 | _simple_tokenize_test_configs = [ |
| 248 | ":default_config", |
| 249 | "$dir_pw_varint:default_config", |
| 250 | ] |
| 251 | |
| 252 | pw_test("simple_tokenize_test_cpp11") { |
Alexei Frolov | 844ff0f | 2020-05-06 12:15:29 -0700 | [diff] [blame] | 253 | remove_configs = [ "$dir_pw_build:cpp17" ] |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 254 | configs = [ "$dir_pw_build:cpp11" ] + _simple_tokenize_test_configs |
| 255 | sources = _simple_tokenize_test_sources |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 256 | deps = [ dir_pw_preprocessor ] |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | pw_test("simple_tokenize_test_cpp14") { |
Alexei Frolov | 844ff0f | 2020-05-06 12:15:29 -0700 | [diff] [blame] | 260 | remove_configs = [ "$dir_pw_build:cpp17" ] |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 261 | configs = [ "$dir_pw_build:cpp14" ] + _simple_tokenize_test_configs |
| 262 | sources = _simple_tokenize_test_sources |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 263 | deps = [ dir_pw_preprocessor ] |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | pw_test("simple_tokenize_test_cpp17") { |
Alexei Frolov | 844ff0f | 2020-05-06 12:15:29 -0700 | [diff] [blame] | 267 | configs = _simple_tokenize_test_configs |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 268 | sources = _simple_tokenize_test_sources |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 269 | deps = [ dir_pw_preprocessor ] |
Wyatt Hepler | a6d5cc6 | 2020-01-17 14:15:40 -0800 | [diff] [blame] | 270 | } |
| 271 | |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 272 | pw_test("token_database_test") { |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 273 | sources = [ "token_database_test.cc" ] |
| 274 | deps = [ ":decoder" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 275 | } |
| 276 | |
| 277 | pw_test("tokenize_test") { |
| 278 | sources = [ |
| 279 | "pw_tokenizer_private/tokenize_test.h", |
| 280 | "tokenize_test.c", |
| 281 | "tokenize_test.cc", |
| 282 | ] |
| 283 | deps = [ |
| 284 | ":pw_tokenizer", |
| 285 | "$dir_pw_varint", |
| 286 | ] |
| 287 | } |
| 288 | |
karthik bharadwaj | 2ee244b | 2020-04-16 14:08:22 -0700 | [diff] [blame] | 289 | pw_fuzzer("token_database_fuzzer") { |
| 290 | sources = [ "token_database_fuzzer.cc" ] |
| 291 | deps = [ |
| 292 | ":decoder", |
| 293 | "$dir_pw_fuzzer", |
| 294 | "$dir_pw_preprocessor", |
| 295 | "$dir_pw_span", |
| 296 | ] |
| 297 | } |
| 298 | |
karthik bharadwaj | eabe9a2 | 2020-04-14 09:28:28 -0700 | [diff] [blame] | 299 | pw_fuzzer("detokenize_fuzzer") { |
| 300 | sources = [ "detokenize_fuzzer.cc" ] |
| 301 | deps = [ |
| 302 | ":decoder", |
| 303 | "$dir_pw_fuzzer", |
| 304 | "$dir_pw_preprocessor", |
| 305 | ] |
| 306 | } |
| 307 | |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 308 | declare_args() { |
| 309 | # pw_java_native_interface_include_dirs specifies the paths to use for |
| 310 | # building Java Native Interface libraries. If no paths are provided, targets |
| 311 | # that require JNI may not build correctly. |
| 312 | # |
| 313 | # Example JNI include paths for a Linux system: |
| 314 | # |
| 315 | # pw_java_native_interface_include_dirs = [ |
| 316 | # "/usr/local/buildtools/java/jdk/include/", |
| 317 | # "/usr/local/buildtools/java/jdk/include/linux", |
| 318 | # ] |
| 319 | # |
| 320 | pw_java_native_interface_include_dirs = [] |
| 321 | } |
| 322 | |
| 323 | # Create a shared library for the tokenizer JNI wrapper. The include paths for |
| 324 | # the JNI headers must be available in the system or provided with the |
| 325 | # pw_java_native_interface_include_dirs variable. |
Alexei Frolov | edd2f14 | 2020-06-09 19:11:27 -0700 | [diff] [blame^] | 326 | pw_shared_library("detokenizer_jni") { |
Wyatt Hepler | 2119240 | 2020-01-15 15:40:51 -0800 | [diff] [blame] | 327 | public_configs = [ ":default_config" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 328 | include_dirs = pw_java_native_interface_include_dirs |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 329 | sources = [ "java/dev/pigweed/tokenizer/detokenizer.cc" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 330 | public_deps = [ |
| 331 | ":decoder", |
| 332 | "$dir_pw_preprocessor", |
| 333 | ] |
| 334 | } |
| 335 | |
| 336 | pw_doc_group("docs") { |
Rob Mohr | a0ba54f | 2020-02-27 11:43:49 -0800 | [diff] [blame] | 337 | sources = [ "docs.rst" ] |
Wyatt Hepler | f5e984a | 2020-04-15 18:15:09 -0700 | [diff] [blame] | 338 | inputs = [ "py/pw_tokenizer/encode.py" ] |
Wyatt Hepler | 80c6ee5 | 2020-01-03 09:54:58 -0800 | [diff] [blame] | 339 | } |