blob: 5ecd0c19c6822278931be49807baa06fb1b5d5bf [file] [log] [blame]
Keir Mierleb776cb22020-08-14 16:46:50 -07001# 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
Keir Mierleb776cb22020-08-14 16:46:50 -070015import("//build_overrides/pigweed.gni")
16
17import("$dir_pw_build/target_types.gni")
18import("$dir_pw_docgen/docs.gni")
Wyatt Heplerd49f8fe2020-10-15 10:13:47 -070019
Keir Mierleb776cb22020-08-14 16:46:50 -070020config("default_config") {
21 include_dirs = [ "public" ]
22}
23
24config("backend_config") {
25 include_dirs = [ "public_overrides" ]
26}
27
28pw_source_set("pw_assert_log") {
29 public_configs = [
30 ":backend_config",
31 ":default_config",
32 ]
Wyatt Hepler405b1462021-05-26 13:48:01 -070033 public_deps = [
34 ":core",
35 dir_pw_log,
36 ]
Keir Mierleb776cb22020-08-14 16:46:50 -070037 public = [ "public_overrides/pw_assert_backend/assert_backend.h" ]
38}
39
40pw_source_set("core") {
41 public_configs = [ ":default_config" ]
42 public_deps = [ "$dir_pw_log" ]
Ewout van Bekkume4d7b692020-10-15 13:12:30 -070043 deps = [
44 "$dir_pw_assert:facade",
45 "$dir_pw_preprocessor",
46 ]
Keir Mierleb776cb22020-08-14 16:46:50 -070047 public = [ "public/pw_assert_log/assert_log.h" ]
Keir Mierle854adec2020-09-03 14:07:19 -070048 sources = [ "assert_log.cc" ]
Keir Mierleb776cb22020-08-14 16:46:50 -070049}
50
Wyatt Hepler1e364002021-05-06 17:44:03 -070051# pw_assert_log doesn't have deps with potential circular dependencies, so this
52# impl group can be empty.
Wyatt Hepler61663222021-05-06 10:57:43 -070053group("pw_assert_log.impl") {
Wyatt Hepler8bd4fb02021-05-03 15:30:58 -070054}
55
Keir Mierleb776cb22020-08-14 16:46:50 -070056pw_doc_group("docs") {
57 sources = [ "docs.rst" ]
58}