blob: e17803b939c768b1e587467dee7ebfd099d9e600 [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
Alexei Frolovedd2f142020-06-09 19:11:27 -070015import("$dir_pw_build/target_types.gni")
Wyatt Hepler92ccb662020-01-21 18:28:41 -080016import("$dir_pw_docgen/docs.gni")
17import("$dir_pw_unit_test/test.gni")
18
19config("default_config") {
20 include_dirs = [ "public" ]
21}
22
Alexei Frolovedd2f142020-06-09 19:11:27 -070023pw_source_set("pw_checksum") {
Wyatt Hepler92ccb662020-01-21 18:28:41 -080024 public_configs = [ ":default_config" ]
Rob Mohra0ba54f2020-02-27 11:43:49 -080025 public = [ "public/pw_checksum/ccitt_crc16.h" ]
Wyatt Hepler92ccb662020-01-21 18:28:41 -080026 sources = [ "ccitt_crc16.cc" ] + public
Rob Mohra0ba54f2020-02-27 11:43:49 -080027 public_deps = [ dir_pw_span ]
Wyatt Hepler92ccb662020-01-21 18:28:41 -080028}
29
30pw_test_group("tests") {
31 tests = [ ":ccitt_crc16_test" ]
32}
33
34pw_test("ccitt_crc16_test") {
Rob Mohra0ba54f2020-02-27 11:43:49 -080035 deps = [ ":pw_checksum" ]
Wyatt Hepler92ccb662020-01-21 18:28:41 -080036 sources = [
37 "ccitt_crc16_test.c",
38 "ccitt_crc16_test.cc",
39 ]
40}
Wyatt Hepler3c4e5de2020-03-03 14:37:52 -080041
42pw_doc_group("docs") {
43 sources = [ "docs.rst" ]
44}