blob: d1aa98c0dc961528686766b4bb972c7ca9e14430 [file] [log] [blame]
Alexei Frolov8ecefe92020-01-13 10:40:08 -08001# Copyright 2020 The Pigweed Authors
Alexei Frolov82d3cb32019-11-27 14:38:39 -08002#
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_unit_test/test.gni")
16
17config("default_config") {
18 include_dirs = [ "public" ]
19}
20
21source_set("pw_varint") {
Wyatt Hepler21192402020-01-15 15:40:51 -080022 public_configs = [ ":default_config" ]
Rob Mohra0ba54f2020-02-27 11:43:49 -080023 public_deps = [ "$dir_pw_span" ]
Alexei Frolov82d3cb32019-11-27 14:38:39 -080024 sources = [
25 "public/pw_varint/varint.h",
26 "varint.cc",
27 ]
Rob Mohra0ba54f2020-02-27 11:43:49 -080028 public = [ "public/pw_varint/varint.h" ]
Alexei Frolov82d3cb32019-11-27 14:38:39 -080029}
30
31pw_test_group("tests") {
32 tests = [ ":varint_test" ]
33}
34
35pw_test("varint_test") {
Rob Mohra0ba54f2020-02-27 11:43:49 -080036 deps = [ ":pw_varint" ]
Alexei Frolov82d3cb32019-11-27 14:38:39 -080037 sources = [
Alexei Frolov8ecefe92020-01-13 10:40:08 -080038 "varint_test.c",
Alexei Frolov82d3cb32019-11-27 14:38:39 -080039 "varint_test.cc",
40 ]
41}