blob: bbb19cbbaad2312984b3a1ad6f2136a31bd6890e [file] [log] [blame] [edit]
# Copyright 2020 The Pigweed Authors
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
import("//build_overrides/pigweed.gni")
import("$dir_pw_arduino_build/arduino.gni")
import("$dir_pw_bloat/bloat.gni")
import("$dir_pw_build/cc_blob_library.gni")
import("$dir_pw_build/module_config.gni")
import("$dir_pw_build/target_types.gni")
import("$dir_pw_fuzzer/fuzzer.gni")
import("$dir_pw_perf_test/perf_test.gni")
import("$dir_pw_protobuf_compiler/proto.gni")
import("$dir_pw_unit_test/test.gni")
declare_args() {
# The build target that overrides the default configuration options for this
# module. This should point to a source set that provides defines through a
# public config (which may -include a file or add defines directly).
pw_tokenizer_CONFIG = pw_build_DEFAULT_MODULE_CONFIG
}
config("public_include_path") {
include_dirs = [ "public" ]
visibility = [ ":*" ]
}
config("linker_script") {
inputs = [ "pw_tokenizer_linker_sections.ld" ]
lib_dirs = [ "." ]
# Automatically add the tokenizer linker sections when cross-compiling or
# building for Linux. macOS and Windows executables are not supported.
if (current_os == "" || current_os == "freertos") {
ldflags = [
"-T",
rebase_path("pw_tokenizer_linker_sections.ld", root_build_dir),
]
} else if (current_os == "linux" && !pw_toolchain_OSS_FUZZ_ENABLED) {
# When building for Linux, the linker provides a default linker script.
# The add_tokenizer_sections_to_default_script.ld wrapper includes the
# pw_tokenizer_linker_sections.ld script in a way that appends to the the
# default linker script instead of overriding it.
ldflags = [
"-T",
rebase_path("add_tokenizer_sections_to_default_script.ld",
root_build_dir),
]
inputs += [ "add_tokenizer_sections_to_default_script.ld" ]
}
visibility = [ ":*" ]
}
pw_source_set("config") {
public = [ "public/pw_tokenizer/config.h" ]
public_configs = [ ":public_include_path" ]
public_deps = [ pw_tokenizer_CONFIG ]
}
pw_source_set("pw_tokenizer") {
public_configs = [ ":public_include_path" ]
all_dependent_configs = [ ":linker_script" ]
public_deps = [
":config",
"$dir_pw_containers:to_array",
dir_pw_polyfill,
dir_pw_preprocessor,
dir_pw_span,
dir_pw_varint,
]
public = [
"public/pw_tokenizer/encode_args.h",
"public/pw_tokenizer/enum.h",
"public/pw_tokenizer/hash.h",
"public/pw_tokenizer/nested_tokenization.h",
"public/pw_tokenizer/tokenize.h",
]
sources = [
"encode_args.cc",
"hash.cc",
"public/pw_tokenizer/internal/argument_types.h",
"public/pw_tokenizer/internal/argument_types_macro_4_byte.h",
"public/pw_tokenizer/internal/argument_types_macro_8_byte.h",
"public/pw_tokenizer/internal/enum.h",
"public/pw_tokenizer/internal/pw_tokenizer_65599_fixed_length_128_hash_macro.h",
"public/pw_tokenizer/internal/pw_tokenizer_65599_fixed_length_256_hash_macro.h",
"public/pw_tokenizer/internal/pw_tokenizer_65599_fixed_length_80_hash_macro.h",
"public/pw_tokenizer/internal/pw_tokenizer_65599_fixed_length_96_hash_macro.h",
"public/pw_tokenizer/internal/tokenize_string.h",
"tokenize.cc",
]
friend = [ ":*" ]
# TODO(b/259746255): Remove this when everything compiles with -Wconversion.
configs = [ "$dir_pw_build:conversion_warnings" ]
}
pw_source_set("base64") {
public_configs = [ ":public_include_path" ]
public = [ "public/pw_tokenizer/base64.h" ]
sources = [ "base64.cc" ]
public_deps = [
":pw_tokenizer",
"$dir_pw_string:string",
dir_pw_base64,
dir_pw_preprocessor,
]
# TODO(b/259746255): Remove this when everything compiles with -Wconversion.
configs = [ "$dir_pw_build:conversion_warnings" ]
}
pw_source_set("decoder") {
public_configs = [ ":public_include_path" ]
public_deps = [
dir_pw_preprocessor,
dir_pw_result,
dir_pw_span,
dir_pw_stream,
]
deps = [
":base64",
":csv",
"$dir_pw_bytes:bit",
"$dir_pw_elf:reader",
dir_pw_base64,
dir_pw_bytes,
dir_pw_varint,
]
public = [
"public/pw_tokenizer/detokenize.h",
"public/pw_tokenizer/token_database.h",
]
sources = [
"decode.cc",
"detokenize.cc",
"public/pw_tokenizer/internal/decode.h",
"token_database.cc",
]
friend = [ ":*" ]
# TODO(b/259746255): Remove this when everything compiles with -Wconversion.
configs = [ "$dir_pw_build:conversion_warnings" ]
}
config("detokenize_from_this_program_linker_script") {
inputs = [ "add_detokenize_from_this_program_sections.ld" ]
ldflags = [
"-T",
rebase_path("add_detokenize_from_this_program_sections.ld", root_build_dir),
]
# TODO: https://pwbug.dev/450130202 - Set this visibility to private when
# :detokenize_from_this_program automatically includes it.
}
pw_source_set("detokenize_from_this_program") {
public_configs = [ ":public_include_path" ]
public = [ "public/pw_tokenizer/detokenize_from_this_program.h" ]
sources = [ "detokenize_from_this_program.cc" ]
public_deps = [
":decoder",
dir_pw_result,
]
# TODO: https://pwbug.dev/450130202 - Automatically use
# detokenize_from_this_program_linker_script when :pw_tokenizer no longer
# automatically includes :linker_script which conflicts.
#
# Until that is resolved, consumers of this target should also specifiy:
#
# configs = [ "$dir_pw_tokenizer:detokenize_from_this_program_linker_script" ]
#
# This is safe because configs specified in a target's "configs" list apply
# before those speicified on dependencies.
}
pw_source_set("csv") {
public = [ "pw_tokenizer_private/csv.h" ]
sources = [ "csv.cc" ]
deps = [ dir_pw_log ]
visibility = [ ":*" ]
# TODO(b/259746255): Remove this when everything compiles with -Wconversion.
configs = [ "$dir_pw_build:conversion_warnings" ]
}
pw_test("csv_test") {
sources = [ "csv_test.cc" ]
deps = [ ":csv" ]
}
# Executable for generating test data for the C++ and Python detokenizers. This
# target should only be built for the host.
pw_executable("generate_decoding_test_data") {
deps = [
":decoder",
":pw_tokenizer",
dir_pw_varint,
]
sources = [ "generate_decoding_test_data.cc" ]
}
# Executable for generating a test ELF file for elf_reader_test.py. A host
# version of this binary is checked in for use in elf_reader_test.py.
pw_executable("elf_reader_test_binary") {
deps = [
":pw_tokenizer",
"$dir_pw_varint",
]
sources = [ "py/elf_reader_test_binary.c" ]
ldflags = [ "-Wl,--unresolved-symbols=ignore-all" ] # main is not defined
}
pw_test_group("tests") {
tests = [
":argument_types_test",
":csv_test",
":base64_test",
":decode_test",
":detokenize_test",
":detokenize_from_this_program_test",
":enum_test",
":encode_args_test",
":hash_test",
":simple_tokenize_test",
":token_database_test",
":tokenize_test",
":tokenize_c99_test",
]
group_deps = [
":fuzzers",
"$dir_pw_preprocessor:tests",
]
}
pw_fuzzer_group("fuzzers") {
fuzzers = [
":detokenize_fuzzer",
":token_database_fuzzer",
]
}
pw_test("argument_types_test") {
sources = [
"argument_types_test.cc",
"argument_types_test_c.c",
"pw_tokenizer_private/argument_types_test.h",
]
deps = [ ":pw_tokenizer" ]
if (pw_arduino_build_CORE_PATH != "") {
remove_configs = [ "$dir_pw_build:strict_warnings" ]
}
}
pw_test("base64_test") {
sources = [ "base64_test.cc" ]
deps = [
":base64",
dir_pw_span,
]
}
pw_test("decode_test") {
sources = [
"decode_test.cc",
"pw_tokenizer_private/tokenized_string_decoding_test_data.h",
"pw_tokenizer_private/varint_decoding_test_data.h",
]
deps = [
":decoder",
"$dir_pw_varint",
]
# TODO(tonymd): This fails on Teensyduino 1.54 beta core. It may be related to
# linking in stl functions. Will debug when 1.54 is released.
enable_if = pw_build_EXECUTABLE_TARGET_TYPE != "arduino_executable"
}
pw_test("detokenize_test") {
sources = [ "detokenize_test.cc" ]
deps = [
":base64",
":decoder",
":detokenizer_elf_test_blob",
dir_pw_stream,
]
# TODO(tonymd): This fails on Teensyduino 1.54 beta core. It may be related to
# linking in stl functions. Will debug when 1.54 is released.
enable_if = pw_build_EXECUTABLE_TARGET_TYPE != "arduino_executable"
}
pw_test("detokenize_from_this_program_test") {
sources = [ "detokenize_from_this_program_test.cc" ]
deps = [
":detokenize_from_this_program",
":pw_tokenizer",
dir_pw_bytes,
]
# This test requires a linker script to load the tokenizer sections. This is
# currently only supported on Linux.
enable_if = current_os == "linux"
configs = [ "$dir_pw_tokenizer:detokenize_from_this_program_linker_script" ]
}
pw_perf_test("detokenize_perf_test") {
sources = [ "detokenize_perf_test.cc" ]
deps = [
":decoder",
"$dir_pw_assert:check",
dir_pw_bytes,
dir_pw_span,
]
}
pw_test("encode_args_test") {
sources = [ "encode_args_test.cc" ]
deps = [ ":pw_tokenizer" ]
}
pw_test("enum_test") {
sources = [ "enum_test.cc" ]
deps = [ ":pw_tokenizer" ]
negative_compilation_tests = true
}
pw_test("hash_test") {
sources = [
"hash_test.cc",
"pw_tokenizer_private/generated_hash_test_cases.h",
]
deps = [ ":pw_tokenizer" ]
}
pw_test("simple_tokenize_test") {
sources = [ "simple_tokenize_test.cc" ]
deps = [ ":pw_tokenizer" ]
}
pw_test("token_database_test") {
sources = [ "token_database_test.cc" ]
deps = [ ":decoder" ]
}
pw_test("tokenize_test") {
sources = [
"pw_tokenizer_private/tokenize_test.h",
"tokenize_test.cc",
"tokenize_test_c.c",
]
deps = [
":pw_tokenizer",
"$dir_pw_string:string",
"$dir_pw_varint",
]
negative_compilation_tests = true
}
pw_test("tokenize_c99_test") {
cflags_c = [
"-std=c99",
# pw_tokenizer uses static_assert, so this test uses a static_assert to
# verify that it works. Silence warnings about preadopting C11 features.
"-Wno-c11-extensions",
]
sources = [
"tokenize_c99_test.c",
"tokenize_c99_test_entry_point.cc",
]
deps = [
":pw_tokenizer",
"$dir_pw_containers:inline_var_len_entry_queue",
]
}
pw_fuzzer("token_database_fuzzer") {
sources = [ "token_database_fuzzer.cc" ]
deps = [
":decoder",
dir_pw_preprocessor,
dir_pw_span,
]
}
pw_fuzzer("detokenize_fuzzer") {
sources = [ "detokenize_fuzzer.cc" ]
deps = [
":decoder",
dir_pw_preprocessor,
]
}
pw_proto_library("proto") {
sources = [ "pw_tokenizer_proto/options.proto" ]
python_package = "py"
}
pw_cc_blob_library("detokenizer_elf_test_blob") {
out_header = "pw_tokenizer/example_binary_with_tokenized_strings.h"
namespace = "test::ns"
blobs = [
{
file_path = "py/example_binary_with_tokenized_strings.elf"
symbol_name = "kElfSection"
},
]
visibility = [ ":*" ]
}