blob: c45363eea6d65c7a68074383a46f211dbb2f1fb9 [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" ]
24 public = [
25 "public/pw_checksum/ccitt_crc16.h",
26 ]
27 sources = [ "ccitt_crc16.cc" ] + public
28 public_deps = [
29 dir_pw_span,
30 ]
31}
32
33pw_test_group("tests") {
34 tests = [ ":ccitt_crc16_test" ]
35}
36
37pw_test("ccitt_crc16_test") {
38 deps = [
39 ":pw_checksum",
40 ]
41 sources = [
42 "ccitt_crc16_test.c",
43 "ccitt_crc16_test.cc",
44 ]
45}