blob: 41a207c2ce27491db74563fd9a16246a4061de75 [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
15# gn-format disable
16import("//build_overrides/pigweed.gni")
17
18import("$dir_pw_build/target_types.gni")
19import("$dir_pw_docgen/docs.gni")
20config("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 ]
33 deps = [ ":core" ]
34 public_deps = [ "$dir_pw_log" ]
35 public = [ "public_overrides/pw_assert_backend/assert_backend.h" ]
36}
37
38pw_source_set("core") {
39 public_configs = [ ":default_config" ]
40 public_deps = [ "$dir_pw_log" ]
41 deps = [ "$dir_pw_preprocessor" ]
42 public = [ "public/pw_assert_log/assert_log.h" ]
Keir Mierle854adec2020-09-03 14:07:19 -070043 sources = [ "assert_log.cc" ]
Keir Mierleb776cb22020-08-14 16:46:50 -070044}
45
46pw_doc_group("docs") {
47 sources = [ "docs.rst" ]
48}