blob: 0a7e169a22f2fb43628f2a41cd018a796d3a9059 [file] [log] [blame]
Wyatt Hepler92ccb662020-01-21 18:28:41 -08001# 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("$dir_pw_docgen/docs.gni")
16import("$dir_pw_unit_test/test.gni")
17
18config("default_config") {
19 include_dirs = [ "public" ]
20}
21
22source_set("pw_checksum") {
23 public_configs = [ ":default_config" ]
Rob Mohra0ba54f2020-02-27 11:43:49 -080024 public = [ "public/pw_checksum/ccitt_crc16.h" ]
Wyatt Hepler92ccb662020-01-21 18:28:41 -080025 sources = [ "ccitt_crc16.cc" ] + public
Rob Mohra0ba54f2020-02-27 11:43:49 -080026 public_deps = [ dir_pw_span ]
Wyatt Hepler92ccb662020-01-21 18:28:41 -080027}
28
29pw_test_group("tests") {
30 tests = [ ":ccitt_crc16_test" ]
31}
32
33pw_test("ccitt_crc16_test") {
Rob Mohra0ba54f2020-02-27 11:43:49 -080034 deps = [ ":pw_checksum" ]
Wyatt Hepler92ccb662020-01-21 18:28:41 -080035 sources = [
36 "ccitt_crc16_test.c",
37 "ccitt_crc16_test.cc",
38 ]
39}
Wyatt Hepler3c4e5de2020-03-03 14:37:52 -080040
41pw_doc_group("docs") {
42 sources = [ "docs.rst" ]
43}