blob: db3c184361e0251698ea71adaea3013ddd2542fd [file] [log] [blame]
# 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.
# gn-format disable
import("//build_overrides/pigweed.gni")
import("$dir_pigweed/legacy_target.gni")
import("$dir_pw_build/facade.gni")
import("$dir_pw_docgen/docs.gni")
import("$dir_pw_unit_test/test.gni")
config("default_config") {
include_dirs = [ "public" ]
}
pw_facade("pw_assert") {
backend = dir_pw_assert_backend
public_configs = [ ":default_config" ]
public = [
"public/pw_assert/assert.h",
"public/pw_assert/internal/assert_impl.h",
]
public_deps = [ dir_pw_preprocessor ]
}
pw_test_group("tests") {
tests = [
":assert_backend_compile_test",
":assert_facade_test",
]
}
# The assert facade test doesn't require a backend since a fake one is
# provided. However, since this doesn't depend on the backend it re-includes
# the facade headers.
pw_test("assert_facade_test") {
configs = [ ":default_config" ] # For internal/assert_impl.h
sources = [
"assert_facade_test.cc",
"fake_backend.cc",
"public/pw_assert/internal/assert_impl.h",
"pw_assert_test/fake_backend.h",
]
deps = [ dir_pw_status ]
# TODO(frolv): Fix this test on the QEMU target.
enable_if = pw_executable_config.target_type != "lm3s6965evb_executable"
}
pw_test("assert_backend_compile_test") {
enable_if = dir_pw_assert_backend != ""
deps = [
":pw_assert",
dir_pw_assert_backend,
dir_pw_status,
]
sources = [
"assert_backend_compile_test.c",
"assert_backend_compile_test.cc",
]
}
pw_doc_group("docs") {
sources = [ "docs.rst" ]
}