blob: 0b9e612ddf5dd05822440f1ef0e89eccd968f19d [file] [log] [blame]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -08001# 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 Hepler6639c452020-05-06 11:43:07 -070015import("$dir_pw_build/facade.gni")
Alexei Frolovedd2f142020-06-09 19:11:27 -070016import("$dir_pw_build/target_types.gni")
Wyatt Hepler80c6ee52020-01-03 09:54:58 -080017import("$dir_pw_docgen/docs.gni")
karthik bharadwajeabe9a22020-04-14 09:28:28 -070018import("$dir_pw_fuzzer/fuzzer.gni")
Wyatt Hepler80c6ee52020-01-03 09:54:58 -080019import("$dir_pw_unit_test/test.gni")
20
21config("default_config") {
22 include_dirs = [ "public" ]
23}
24
Alexei Frolovedd2f142020-06-09 19:11:27 -070025pw_source_set("pw_tokenizer") {
Wyatt Hepler21192402020-01-15 15:40:51 -080026 public_configs = [ ":default_config" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -080027 public_deps = [
Wyatt Hepler6639c452020-05-06 11:43:07 -070028 dir_pw_preprocessor,
29 dir_pw_span,
Wyatt Hepler80c6ee52020-01-03 09:54:58 -080030 ]
Wyatt Hepler6639c452020-05-06 11:43:07 -070031 deps = [ dir_pw_varint ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -080032 public = [
33 "public/pw_tokenizer/pw_tokenizer_65599_fixed_length_hash.h",
34 "public/pw_tokenizer/tokenize.h",
35 ]
36 sources = [
Wyatt Hepler6639c452020-05-06 11:43:07 -070037 "encode_args.cc",
Wyatt Hepler80c6ee52020-01-03 09:54:58 -080038 "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 Hepler6639c452020-05-06 11:43:07 -070046 "pw_tokenizer_private/encode_args.h",
Wyatt Hepler80c6ee52020-01-03 09:54:58 -080047 "tokenize.cc",
48 ]
Wyatt Heplera8557ef2020-05-04 16:29:23 -070049 friend = [ ":*" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -080050}
51
Wyatt Hepler6639c452020-05-06 11:43:07 -070052# 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.
55if (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 Frolovedd2f142020-06-09 19:11:27 -070059 pw_source_set("test_backend") {
Wyatt Hepler6639c452020-05-06 11:43:07 -070060 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
71pw_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
81pw_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 Frolovedd2f142020-06-09 19:11:27 -070091pw_source_set("base64") {
Wyatt Hepler21192402020-01-15 15:40:51 -080092 public_configs = [ ":default_config" ]
Rob Mohra0ba54f2020-02-27 11:43:49 -080093 public = [ "public/pw_tokenizer/base64.h" ]
Wyatt Heplera8557ef2020-05-04 16:29:23 -070094 sources = [ "base64.cc" ]
Wyatt Hepler3c2e9522020-01-09 16:08:54 -080095 public_deps = [
Wyatt Hepler6639c452020-05-06 11:43:07 -070096 dir_pw_preprocessor,
97 dir_pw_span,
Wyatt Hepler3c2e9522020-01-09 16:08:54 -080098 ]
Wyatt Hepler6639c452020-05-06 11:43:07 -070099 deps = [ dir_pw_base64 ]
Wyatt Hepler3c2e9522020-01-09 16:08:54 -0800100}
101
Alexei Frolovedd2f142020-06-09 19:11:27 -0700102pw_source_set("decoder") {
Wyatt Hepler21192402020-01-15 15:40:51 -0800103 public_configs = [ ":default_config" ]
Wyatt Hepler6639c452020-05-06 11:43:07 -0700104 public_deps = [ dir_pw_span ]
105 deps = [ dir_pw_varint ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800106 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 Heplera8557ef2020-05-04 16:29:23 -0700116 friend = [ ":*" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800117}
118
119# Executable for generating test data for the C++ and Python detokenizers. This
120# target should only be built for the host.
121executable("generate_decoding_test_data") {
122 deps = [
123 ":decoder",
124 ":pw_tokenizer",
Wyatt Hepler6639c452020-05-06 11:43:07 -0700125 dir_pw_varint,
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800126 ]
Aaron Greenb3ae1dc2020-04-13 11:37:05 -0700127 sources = [
128 "generate_decoding_test_data.cc",
129 "tokenize_test_fakes.cc",
130 ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800131}
132
Wyatt Heplerbc254972020-01-06 18:35:30 -0800133# 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.
135executable("elf_reader_test_binary") {
136 deps = [
137 ":pw_tokenizer",
138 "$dir_pw_varint",
139 ]
Rob Mohra0ba54f2020-02-27 11:43:49 -0800140 sources = [ "py/elf_reader_test_binary.c" ]
Wyatt Heplerbc254972020-01-06 18:35:30 -0800141 ldflags = [ "-Wl,--unresolved-symbols=ignore-all" ] # main is not defined
142}
143
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800144pw_test_group("tests") {
145 tests = [
146 ":argument_types_test",
Wyatt Hepler3c2e9522020-01-09 16:08:54 -0800147 ":base64_test",
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800148 ":decode_test",
karthik bharadwajeabe9a22020-04-14 09:28:28 -0700149 ":detokenize_fuzzer",
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800150 ":detokenize_test",
Wyatt Hepler6639c452020-05-06 11:43:07 -0700151 ":global_handlers_test",
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800152 ":hash_test",
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800153 ":simple_tokenize_test_cpp11",
154 ":simple_tokenize_test_cpp14",
155 ":simple_tokenize_test_cpp17",
karthik bharadwaj2ee244b2020-04-16 14:08:22 -0700156 ":token_database_fuzzer",
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800157 ":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
167pw_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 Greenb3ae1dc2020-04-13 11:37:05 -0700172 "tokenize_test_fakes.cc",
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800173 ]
Rob Mohra0ba54f2020-02-27 11:43:49 -0800174 deps = [ ":pw_tokenizer" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800175}
176
Wyatt Hepler3c2e9522020-01-09 16:08:54 -0800177pw_test("base64_test") {
Rob Mohra0ba54f2020-02-27 11:43:49 -0800178 sources = [ "base64_test.cc" ]
179 deps = [ ":base64" ]
Wyatt Hepler3c2e9522020-01-09 16:08:54 -0800180}
181
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800182pw_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
194pw_test("detokenize_test") {
Rob Mohra0ba54f2020-02-27 11:43:49 -0800195 sources = [ "detokenize_test.cc" ]
196 deps = [ ":decoder" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800197}
198
Wyatt Hepler6639c452020-05-06 11:43:07 -0700199pw_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 Hepler80c6ee52020-01-03 09:54:58 -0800214pw_test("hash_test") {
215 sources = [
216 "hash_test.cc",
217 "pw_tokenizer_private/generated_hash_test_cases.h",
Aaron Greenb3ae1dc2020-04-13 11:37:05 -0700218 "tokenize_test_fakes.cc",
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800219 ]
Rob Mohra0ba54f2020-02-27 11:43:49 -0800220 deps = [ ":pw_tokenizer" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800221}
222
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800223# 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 Mohra0ba54f2020-02-27 11:43:49 -0800226 "$dir_pw_varint/public/pw_varint/varint.h",
227 "$dir_pw_varint/varint.cc",
Wyatt Hepler6639c452020-05-06 11:43:07 -0700228 "encode_args.cc",
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800229 "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 Mohra0ba54f2020-02-27 11:43:49 -0800237 "public/pw_tokenizer/pw_tokenizer_65599_fixed_length_hash.h",
238 "public/pw_tokenizer/tokenize.h",
Wyatt Hepler6639c452020-05-06 11:43:07 -0700239 "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 Heplera6d5cc62020-01-17 14:15:40 -0800242 "simple_tokenize_test.cc",
Rob Mohra0ba54f2020-02-27 11:43:49 -0800243 "tokenize.cc",
Wyatt Hepler6639c452020-05-06 11:43:07 -0700244 "tokenize_to_global_handler.cc",
245 "tokenize_to_global_handler_with_payload.cc",
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800246]
247_simple_tokenize_test_configs = [
248 ":default_config",
249 "$dir_pw_varint:default_config",
250]
251
252pw_test("simple_tokenize_test_cpp11") {
Alexei Frolov844ff0f2020-05-06 12:15:29 -0700253 remove_configs = [ "$dir_pw_build:cpp17" ]
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800254 configs = [ "$dir_pw_build:cpp11" ] + _simple_tokenize_test_configs
255 sources = _simple_tokenize_test_sources
Rob Mohra0ba54f2020-02-27 11:43:49 -0800256 deps = [ dir_pw_preprocessor ]
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800257}
258
259pw_test("simple_tokenize_test_cpp14") {
Alexei Frolov844ff0f2020-05-06 12:15:29 -0700260 remove_configs = [ "$dir_pw_build:cpp17" ]
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800261 configs = [ "$dir_pw_build:cpp14" ] + _simple_tokenize_test_configs
262 sources = _simple_tokenize_test_sources
Rob Mohra0ba54f2020-02-27 11:43:49 -0800263 deps = [ dir_pw_preprocessor ]
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800264}
265
266pw_test("simple_tokenize_test_cpp17") {
Alexei Frolov844ff0f2020-05-06 12:15:29 -0700267 configs = _simple_tokenize_test_configs
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800268 sources = _simple_tokenize_test_sources
Rob Mohra0ba54f2020-02-27 11:43:49 -0800269 deps = [ dir_pw_preprocessor ]
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800270}
271
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800272pw_test("token_database_test") {
Rob Mohra0ba54f2020-02-27 11:43:49 -0800273 sources = [ "token_database_test.cc" ]
274 deps = [ ":decoder" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800275}
276
277pw_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 bharadwaj2ee244b2020-04-16 14:08:22 -0700289pw_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 bharadwajeabe9a22020-04-14 09:28:28 -0700299pw_fuzzer("detokenize_fuzzer") {
300 sources = [ "detokenize_fuzzer.cc" ]
301 deps = [
302 ":decoder",
303 "$dir_pw_fuzzer",
304 "$dir_pw_preprocessor",
305 ]
306}
307
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800308declare_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 Frolovedd2f142020-06-09 19:11:27 -0700326pw_shared_library("detokenizer_jni") {
Wyatt Hepler21192402020-01-15 15:40:51 -0800327 public_configs = [ ":default_config" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800328 include_dirs = pw_java_native_interface_include_dirs
Rob Mohra0ba54f2020-02-27 11:43:49 -0800329 sources = [ "java/dev/pigweed/tokenizer/detokenizer.cc" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800330 public_deps = [
331 ":decoder",
332 "$dir_pw_preprocessor",
333 ]
334}
335
336pw_doc_group("docs") {
Rob Mohra0ba54f2020-02-27 11:43:49 -0800337 sources = [ "docs.rst" ]
Wyatt Heplerf5e984a2020-04-15 18:15:09 -0700338 inputs = [ "py/pw_tokenizer/encode.py" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800339}