• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
15import("//build_overrides/pigweed.gni")
16
17import("$dir_pw_build/facade.gni")
18import("$dir_pw_build/target_types.gni")
19import("$dir_pw_docgen/docs.gni")
20import("backend.gni")
21
22config("default_config") {
23  include_dirs = [ "public" ]
24}
25
26config("backend_config") {
27  include_dirs = [ "public_overrides" ]
28}
29
30pw_facade("handler") {
31  backend = pw_assert_basic_HANDLER_BACKEND
32  public_configs = [ ":default_config" ]
33  public_deps = [ "$dir_pw_preprocessor" ]
34  public = [ "public/pw_assert_basic/handler.h" ]
35}
36
37pw_source_set("pw_assert_basic") {
38  public_configs = [
39    ":backend_config",
40    ":default_config",
41  ]
42  deps = [
43    "$dir_pw_assert:facade",
44    "$dir_pw_preprocessor",
45    pw_assert_basic_HANDLER_BACKEND,
46  ]
47  public = [
48    "public/pw_assert_basic/assert_basic.h",
49    "public/pw_assert_basic/handler.h",
50    "public_overrides/pw_assert_backend/assert_backend.h",
51  ]
52  sources = [ "assert_basic.cc" ]
53}
54
55# A basic handler backend using sysio.
56pw_source_set("basic_handler") {
57  deps = [
58    ":handler.facade",
59    "$dir_pw_assert:facade",
60    "$dir_pw_preprocessor",
61    "$dir_pw_string",
62    "$dir_pw_sys_io",
63  ]
64  sources = [ "basic_handler.cc" ]
65}
66
67pw_doc_group("docs") {
68  sources = [ "docs.rst" ]
69}
70