blob: aa80fb9e0dddfa4f5683ac1cd4b6412445df9298 [file] [log] [blame]
Alexei Frolov80246792020-11-05 21:12:45 -08001# Copyright 2020 The Pigweed Authors
Alexei Frolovc10c8122019-11-01 16:31:19 -07002#
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
Alexei Frolovedd2f142020-06-09 19:11:27 -070017import("$dir_pw_build/target_types.gni")
Alexei Frolovea395522020-03-13 13:35:07 -070018import("$dir_pw_docgen/docs.gni")
Alexei Frolov80246792020-11-05 21:12:45 -080019import("$dir_pw_protobuf_compiler/proto.gni")
Wyatt Heplerb3fca3a2020-01-03 12:14:00 -080020import("$dir_pw_unit_test/test.gni")
Wyatt Heplerd49f8fe2020-10-15 10:13:47 -070021
Alexei Frolovc10c8122019-11-01 16:31:19 -070022config("default_config") {
Alexei Frolov802c6e42019-12-17 15:24:35 -080023 include_dirs = [
24 "public",
25 "public_overrides",
26 ]
Alexei Frolovc10c8122019-11-01 16:31:19 -070027}
28
29# pw_unit_test core library.
Alexei Frolovedd2f142020-06-09 19:11:27 -070030pw_source_set("pw_unit_test") {
Wyatt Hepler21192402020-01-15 15:40:51 -080031 public_configs = [ ":default_config" ]
Alexei Frolovc10c8122019-11-01 16:31:19 -070032 public_deps = [
Alexei Frolov47a43042021-04-06 14:19:55 -070033 dir_pw_polyfill,
34 dir_pw_preprocessor,
35 dir_pw_string,
Alexei Frolovc10c8122019-11-01 16:31:19 -070036 ]
37 public = [
Alexei Frolovc10c8122019-11-01 16:31:19 -070038 "public/pw_unit_test/event_handler.h",
39 "public/pw_unit_test/framework.h",
Alexei Frolov802c6e42019-12-17 15:24:35 -080040 "public_overrides/gtest/gtest.h",
Alexei Frolovc10c8122019-11-01 16:31:19 -070041 ]
Wyatt Hepler7e3f1d92020-08-07 14:09:03 -070042 sources = [ "framework.cc" ]
Alexei Frolovc10c8122019-11-01 16:31:19 -070043}
44
45# Library providing an event handler which outputs human-readable text.
Alexei Frolovedd2f142020-06-09 19:11:27 -070046pw_source_set("simple_printing_event_handler") {
Alexei Frolovc10c8122019-11-01 16:31:19 -070047 public_deps = [
48 ":pw_unit_test",
49 "$dir_pw_preprocessor",
50 ]
Rob Mohra0ba54f2020-02-27 11:43:49 -080051 public = [ "public/pw_unit_test/simple_printing_event_handler.h" ]
Wyatt Hepler7e3f1d92020-08-07 14:09:03 -070052 sources = [ "simple_printing_event_handler.cc" ]
Alexei Frolovc10c8122019-11-01 16:31:19 -070053}
54
55# Library providing a standard desktop main function for the pw_unit_test
56# framework. Unit test files can link against this library to build runnable
57# unit test executables.
Alexei Frolovedd2f142020-06-09 19:11:27 -070058pw_source_set("simple_printing_main") {
Rob Mohra0ba54f2020-02-27 11:43:49 -080059 public_deps = [ ":pw_unit_test" ]
Alexei Frolovc10c8122019-11-01 16:31:19 -070060 deps = [
61 ":simple_printing_event_handler",
Armando Montanezf7a5a742020-03-02 14:58:59 -080062 "$dir_pw_sys_io",
Alexei Frolovc10c8122019-11-01 16:31:19 -070063 ]
Rob Mohra0ba54f2020-02-27 11:43:49 -080064 sources = [ "simple_printing_main.cc" ]
Alexei Frolovc10c8122019-11-01 16:31:19 -070065}
66
Keir Mierleda0bccb2020-01-17 13:51:35 -080067# Library providing an event handler which logs using pw_log.
Alexei Frolov4c0428a2020-06-10 10:46:04 -070068pw_source_set("logging_event_handler") {
69 public_deps = [
70 ":pw_unit_test",
71 "$dir_pw_log",
72 "$dir_pw_preprocessor",
73 ]
74 public = [ "public/pw_unit_test/logging_event_handler.h" ]
Wyatt Hepler7e3f1d92020-08-07 14:09:03 -070075 sources = [ "logging_event_handler.cc" ]
Alexei Frolov4c0428a2020-06-10 10:46:04 -070076}
Keir Mierleda0bccb2020-01-17 13:51:35 -080077
Alexei Frolov4c0428a2020-06-10 10:46:04 -070078pw_source_set("logging_main") {
79 public_deps = [ ":pw_unit_test" ]
80 deps = [
81 ":logging_event_handler",
82 "$dir_pw_sys_io",
83 ]
84 sources = [ "logging_main.cc" ]
Keir Mierleda0bccb2020-01-17 13:51:35 -080085}
86
Alexei Frolov80246792020-11-05 21:12:45 -080087pw_source_set("rpc_service") {
88 public_configs = [ ":default_config" ]
89 public_deps = [
90 ":pw_unit_test",
91 ":unit_test_proto.pwpb",
92 ":unit_test_proto.raw_rpc",
Alexei Frolov47a43042021-04-06 14:19:55 -070093 "$dir_pw_containers:vector",
Alexei Frolov80246792020-11-05 21:12:45 -080094 ]
95 deps = [ dir_pw_log ]
96 public = [
97 "public/pw_unit_test/internal/rpc_event_handler.h",
98 "public/pw_unit_test/unit_test_service.h",
99 ]
100 sources = [
101 "rpc_event_handler.cc",
102 "unit_test_service.cc",
103 ]
104}
105
106pw_source_set("rpc_main") {
107 public_deps = [ ":pw_unit_test" ]
108 deps = [
109 ":rpc_service",
Alexei Froloveb94e962020-12-29 16:15:40 -0800110 "$dir_pw_rpc/system_server",
Alexei Frolov80246792020-11-05 21:12:45 -0800111 dir_pw_log,
112 ]
113 sources = [ "rpc_main.cc" ]
114}
115
116pw_proto_library("unit_test_proto") {
117 sources = [ "pw_unit_test_proto/unit_test.proto" ]
118}
119
120pw_doc_group("docs") {
121 sources = [ "docs.rst" ]
122}
123
Wyatt Heplerb3fca3a2020-01-03 12:14:00 -0800124pw_test("framework_test") {
Rob Mohra0ba54f2020-02-27 11:43:49 -0800125 sources = [ "framework_test.cc" ]
Alexei Frolovc10c8122019-11-01 16:31:19 -0700126}
Wyatt Heplerb3fca3a2020-01-03 12:14:00 -0800127
128pw_test_group("tests") {
129 tests = [ ":framework_test" ]
130}