blob: 25111d2055ca31e1f0dad6bfa435ff1ebee5361b [file] [log] [blame]
Robert Oliverd1323f42020-04-27 12:05:16 -04001# 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
Armando Montanezfb3d3fb2020-06-09 18:12:12 -070015import("//build_overrides/pigweed.gni")
16
Robert Oliverd1323f42020-04-27 12:05:16 -040017import("$dir_pw_build/facade.gni")
18import("$dir_pw_docgen/docs.gni")
19import("$dir_pw_unit_test/test.gni")
Wyatt Heplerd49f8fe2020-10-15 10:13:47 -070020
Alexei Frolov4c0428a2020-06-10 10:46:04 -070021declare_args() {
22 # Backend for the pw_trace module.
23 pw_trace_BACKEND = ""
24}
25
Robert Oliverd1323f42020-04-27 12:05:16 -040026config("default_config") {
27 include_dirs = [ "public" ]
28}
29
30pw_facade("pw_trace") {
Alexei Frolov4c0428a2020-06-10 10:46:04 -070031 backend = pw_trace_BACKEND
Robert Oliverd1323f42020-04-27 12:05:16 -040032 public_configs = [ ":default_config" ]
33 public = [
34 "public/pw_trace/internal/trace_internal.h",
35 "public/pw_trace/trace.h",
36 ]
37 deps = [ dir_pw_preprocessor ]
38}
39
40pw_test_group("tests") {
41 tests = [ ":trace_facade_test" ]
Alexei Frolov4c0428a2020-06-10 10:46:04 -070042 if (pw_trace_BACKEND != "") {
Robert Oliverd1323f42020-04-27 12:05:16 -040043 tests += [ ":trace_backend_compile_test" ]
44 }
45}
46
47pw_test("trace_facade_test") {
48 configs = [ ":default_config" ]
49 sources = [ "trace_facade_test.cc" ]
50 public = [
51 "public/pw_trace/internal/trace_internal.h",
52 "public/pw_trace/trace.h",
53 "pw_trace_test/fake_backend.h",
54 "pw_trace_test/public_overrides/pw_trace_backend/trace_backend.h",
55 ]
56 include_dirs = [
57 "pw_trace_test",
58 "pw_trace_test/public_overrides",
59 ]
60}
61
62pw_test("trace_backend_compile_test") {
Alexei Frolov4c0428a2020-06-10 10:46:04 -070063 enable_if = pw_trace_BACKEND != ""
Robert Oliverd1323f42020-04-27 12:05:16 -040064
65 deps = [
66 ":pw_trace",
Alexei Frolov4c0428a2020-06-10 10:46:04 -070067 pw_trace_BACKEND,
Robert Oliverd1323f42020-04-27 12:05:16 -040068 ]
69
70 sources = [
Robert Oliverd1323f42020-04-27 12:05:16 -040071 "trace_backend_compile_test.cc",
Armando Montanezccc3ee12020-06-11 16:36:11 -070072 "trace_backend_compile_test_c.c",
Robert Oliverd1323f42020-04-27 12:05:16 -040073 ]
74}
75
76pw_doc_group("docs") {
77 sources = [ "docs.rst" ]
78}
Robert Oliver70b92642020-07-13 15:04:10 -040079
80config("trace_sample_app_config") {
81 include_dirs = [ "example/public" ]
82}
83
84# The trace sample app produces a variety of different trace events to help
85# understand tracing.
86pw_source_set("trace_sample_app") {
87 deps = [ ":pw_trace" ]
88 public_deps = [ "$dir_pw_ring_buffer" ]
89 sources = [ "example/sample_app.cc" ]
90 public_configs = [ ":trace_sample_app_config" ]
91 public = [ "example/public/pw_trace/example/sample_app.h" ]
92}
93
94# Builds the trace sample app with whichever backend is connected
95pw_executable("trace_example_basic") {
96 deps = [
97 ":trace_sample_app",
98 "$dir_pw_log",
99 ]
100 sources = [ "example/basic.cc" ]
101}