blob: b4663ffb92f540e156e90e93932b68915ad6c7ad [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
15import("$dir_pw_docgen/docs.gni")
karthik bharadwajeabe9a22020-04-14 09:28:28 -070016import("$dir_pw_fuzzer/fuzzer.gni")
Wyatt Hepler80c6ee52020-01-03 09:54:58 -080017import("$dir_pw_unit_test/test.gni")
18
19config("default_config") {
20 include_dirs = [ "public" ]
21}
22
23source_set("pw_tokenizer") {
Wyatt Hepler21192402020-01-15 15:40:51 -080024 public_configs = [ ":default_config" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -080025 public_deps = [
26 "$dir_pw_preprocessor",
27 "$dir_pw_span",
28 ]
Rob Mohra0ba54f2020-02-27 11:43:49 -080029 deps = [ "$dir_pw_varint" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -080030 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 Hepler3c2e9522020-01-09 16:08:54 -080052source_set("base64") {
Wyatt Hepler21192402020-01-15 15:40:51 -080053 public_configs = [ ":default_config" ]
Rob Mohra0ba54f2020-02-27 11:43:49 -080054 public = [ "public/pw_tokenizer/base64.h" ]
Wyatt Hepler3c2e9522020-01-09 16:08:54 -080055 sources = [ "base64.cc" ] + public
56 public_deps = [
57 "$dir_pw_preprocessor",
58 "$dir_pw_span",
59 ]
Rob Mohra0ba54f2020-02-27 11:43:49 -080060 deps = [ "$dir_pw_base64" ]
Wyatt Hepler3c2e9522020-01-09 16:08:54 -080061}
62
Wyatt Hepler80c6ee52020-01-03 09:54:58 -080063source_set("decoder") {
Wyatt Hepler21192402020-01-15 15:40:51 -080064 public_configs = [ ":default_config" ]
Rob Mohra0ba54f2020-02-27 11:43:49 -080065 public_deps = [ "$dir_pw_span" ]
66 deps = [ "$dir_pw_varint" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -080067 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.
86executable("generate_decoding_test_data") {
87 deps = [
88 ":decoder",
89 ":pw_tokenizer",
90 "$dir_pw_varint",
91 ]
Aaron Greenb3ae1dc2020-04-13 11:37:05 -070092 sources = [
93 "generate_decoding_test_data.cc",
94 "tokenize_test_fakes.cc",
95 ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -080096}
97
Wyatt Heplerbc254972020-01-06 18:35:30 -080098# 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.
100executable("elf_reader_test_binary") {
101 deps = [
102 ":pw_tokenizer",
103 "$dir_pw_varint",
104 ]
Rob Mohra0ba54f2020-02-27 11:43:49 -0800105 sources = [ "py/elf_reader_test_binary.c" ]
Wyatt Heplerbc254972020-01-06 18:35:30 -0800106 ldflags = [ "-Wl,--unresolved-symbols=ignore-all" ] # main is not defined
107}
108
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800109pw_test_group("tests") {
110 tests = [
111 ":argument_types_test",
Wyatt Hepler3c2e9522020-01-09 16:08:54 -0800112 ":base64_test",
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800113 ":decode_test",
karthik bharadwajeabe9a22020-04-14 09:28:28 -0700114 ":detokenize_fuzzer",
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800115 ":detokenize_test",
116 ":hash_test",
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800117 ":simple_tokenize_test_cpp11",
118 ":simple_tokenize_test_cpp14",
119 ":simple_tokenize_test_cpp17",
karthik bharadwaj2ee244b2020-04-16 14:08:22 -0700120 ":token_database_fuzzer",
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800121 ":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
131pw_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 Greenb3ae1dc2020-04-13 11:37:05 -0700136 "tokenize_test_fakes.cc",
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800137 ]
Rob Mohra0ba54f2020-02-27 11:43:49 -0800138 deps = [ ":pw_tokenizer" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800139}
140
Wyatt Hepler3c2e9522020-01-09 16:08:54 -0800141pw_test("base64_test") {
Rob Mohra0ba54f2020-02-27 11:43:49 -0800142 sources = [ "base64_test.cc" ]
143 deps = [ ":base64" ]
Wyatt Hepler3c2e9522020-01-09 16:08:54 -0800144}
145
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800146pw_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
158pw_test("detokenize_test") {
Rob Mohra0ba54f2020-02-27 11:43:49 -0800159 sources = [ "detokenize_test.cc" ]
160 deps = [ ":decoder" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800161}
162
163pw_test("hash_test") {
164 sources = [
165 "hash_test.cc",
166 "pw_tokenizer_private/generated_hash_test_cases.h",
Aaron Greenb3ae1dc2020-04-13 11:37:05 -0700167 "tokenize_test_fakes.cc",
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800168 ]
Rob Mohra0ba54f2020-02-27 11:43:49 -0800169 deps = [ ":pw_tokenizer" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800170}
171
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800172# 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 Mohra0ba54f2020-02-27 11:43:49 -0800175 "$dir_pw_varint/public/pw_varint/varint.h",
176 "$dir_pw_varint/varint.cc",
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800177 "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 Mohra0ba54f2020-02-27 11:43:49 -0800185 "public/pw_tokenizer/pw_tokenizer_65599_fixed_length_hash.h",
186 "public/pw_tokenizer/tokenize.h",
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800187 "simple_tokenize_test.cc",
Rob Mohra0ba54f2020-02-27 11:43:49 -0800188 "tokenize.cc",
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800189]
190_simple_tokenize_test_configs = [
191 ":default_config",
192 "$dir_pw_varint:default_config",
193]
194
195pw_test("simple_tokenize_test_cpp11") {
196 configs = [ "$dir_pw_build:cpp11" ] + _simple_tokenize_test_configs
197 sources = _simple_tokenize_test_sources
Rob Mohra0ba54f2020-02-27 11:43:49 -0800198 deps = [ dir_pw_preprocessor ]
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800199}
200
201pw_test("simple_tokenize_test_cpp14") {
202 configs = [ "$dir_pw_build:cpp14" ] + _simple_tokenize_test_configs
203 sources = _simple_tokenize_test_sources
Rob Mohra0ba54f2020-02-27 11:43:49 -0800204 deps = [ dir_pw_preprocessor ]
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800205}
206
207pw_test("simple_tokenize_test_cpp17") {
208 configs = [ "$dir_pw_build:cpp17" ] + _simple_tokenize_test_configs
209 sources = _simple_tokenize_test_sources
Rob Mohra0ba54f2020-02-27 11:43:49 -0800210 deps = [ dir_pw_preprocessor ]
Wyatt Heplera6d5cc62020-01-17 14:15:40 -0800211}
212
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800213pw_test("token_database_test") {
Rob Mohra0ba54f2020-02-27 11:43:49 -0800214 sources = [ "token_database_test.cc" ]
215 deps = [ ":decoder" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800216}
217
218pw_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 bharadwaj2ee244b2020-04-16 14:08:22 -0700230pw_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 bharadwajeabe9a22020-04-14 09:28:28 -0700240pw_fuzzer("detokenize_fuzzer") {
241 sources = [ "detokenize_fuzzer.cc" ]
242 deps = [
243 ":decoder",
244 "$dir_pw_fuzzer",
245 "$dir_pw_preprocessor",
246 ]
247}
248
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800249declare_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.
267shared_library("detokenizer_jni") {
Wyatt Hepler21192402020-01-15 15:40:51 -0800268 public_configs = [ ":default_config" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800269 include_dirs = pw_java_native_interface_include_dirs
Rob Mohra0ba54f2020-02-27 11:43:49 -0800270 sources = [ "java/dev/pigweed/tokenizer/detokenizer.cc" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800271 public_deps = [
272 ":decoder",
273 "$dir_pw_preprocessor",
274 ]
275}
276
277pw_doc_group("docs") {
Rob Mohra0ba54f2020-02-27 11:43:49 -0800278 sources = [ "docs.rst" ]
Wyatt Heplerf5e984a2020-04-15 18:15:09 -0700279 inputs = [ "py/pw_tokenizer/encode.py" ]
Wyatt Hepler80c6ee52020-01-03 09:54:58 -0800280}