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