1# 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
15import("//build_overrides/pigweed.gni")
16
17import("$dir_pw_bloat/bloat.gni")
18import("$dir_pw_build/target_types.gni")
19import("$dir_pw_docgen/docs.gni")
20import("$dir_pw_unit_test/test.gni")
21
22config("default_config") {
23  include_dirs = [ "public" ]
24  visibility = [ ":*" ]
25}
26
27pw_source_set("pw_bytes") {
28  public_configs = [ ":default_config" ]
29  public = [
30    "public/pw_bytes/array.h",
31    "public/pw_bytes/byte_builder.h",
32    "public/pw_bytes/endian.h",
33    "public/pw_bytes/span.h",
34  ]
35  sources = [ "byte_builder.cc" ]
36  public_deps = [
37    dir_pw_preprocessor,
38    dir_pw_status,
39  ]
40}
41
42pw_test_group("tests") {
43  tests = [
44    ":array_test",
45    ":byte_builder_test",
46    ":endian_test",
47  ]
48  group_deps = [
49    "$dir_pw_preprocessor:tests",
50    "$dir_pw_status:tests",
51  ]
52}
53
54pw_test("array_test") {
55  deps = [ ":pw_bytes" ]
56  sources = [ "array_test.cc" ]
57}
58
59pw_test("byte_builder_test") {
60  deps = [ ":pw_bytes" ]
61  sources = [ "byte_builder_test.cc" ]
62}
63
64pw_test("endian_test") {
65  deps = [ ":pw_bytes" ]
66  sources = [ "endian_test.cc" ]
67}
68
69pw_doc_group("docs") {
70  sources = [ "docs.rst" ]
71  report_deps = [ ":byte_builder_size_report" ]
72}
73
74pw_size_report("byte_builder_size_report") {
75  title = "Using pw::ByteBuilder"
76
77  binaries = [
78    {
79      target = "size_report:with_byte_builder"
80      base = "size_report:without_byte_builder"
81      label = "Using ByteBuilder vs not using it"
82    },
83  ]
84}
85