blob: 7e2aff9be82a93d568697eedbeb1f921bc5c4eb0 [file] [log] [blame]
Wyatt Hepler76293e32020-02-07 18:07:19 -08001# Copyright 2019 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_unit_test/test.gni")
16
17config("default_config") {
18 include_dirs = [ "public" ]
19}
20
21source_set("pw_containers") {
22 public_configs = [ ":default_config" ]
Rob Mohra0ba54f2020-02-27 11:43:49 -080023 public = [ "public/pw_containers/vector.h" ]
Wyatt Hepler76293e32020-02-07 18:07:19 -080024 sources = public
25}
26
27pw_test_group("tests") {
28 tests = [ ":vector_test" ]
29}
30
31pw_test("vector_test") {
Rob Mohra0ba54f2020-02-27 11:43:49 -080032 deps = [ ":pw_containers" ]
33 sources = [ "vector_test.cc" ]
Wyatt Hepler76293e32020-02-07 18:07:19 -080034}