1# Copyright 2019 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/target_types.gni")
18import("$dir_pw_docgen/docs.gni")
19import("$dir_pw_unit_test/test.gni")
20
21config("default_config") {
22  include_dirs = [ "public" ]
23}
24
25pw_source_set("pw_status") {
26  public_configs = [ ":default_config" ]
27  public = [
28    "public/pw_status/status.h",
29    "public/pw_status/status_with_size.h",
30    "public/pw_status/try.h",
31  ]
32  sources = [ "status.cc" ]
33}
34
35pw_test_group("tests") {
36  tests = [
37    ":status_test",
38    ":status_with_size_test",
39    ":try_test",
40  ]
41}
42
43pw_test("status_test") {
44  deps = [ ":pw_status" ]
45  sources = [
46    "status_test.cc",
47    "status_test_c.c",
48  ]
49}
50
51pw_test("status_with_size_test") {
52  deps = [ ":pw_status" ]
53  sources = [ "status_with_size_test.cc" ]
54}
55
56pw_test("try_test") {
57  deps = [ ":pw_status" ]
58  sources = [ "try_test.cc" ]
59}
60
61pw_doc_group("docs") {
62  sources = [ "docs.rst" ]
63}
64