blob: 1d40d9bd73d409bf26d82f68d4594e162022700a [file] [log] [blame]
Rob Mohrbe98ead2019-11-14 07:16:40 -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
15package(default_visibility = ["//visibility:public"])
16
17load(
18 "//pw_build:pigweed.bzl",
19 "pw_default_copts",
20 "pw_default_linkopts",
21 "pw_test",
22)
23
24cc_library(
25 name = "pw_preprocessor",
26 hdrs = glob(["public/pw_preprocessor/*.h"]),
27 copts = pw_default_copts(),
28 linkopts = pw_default_linkopts(),
29)
30
31TESTS = [
32 "boolean_test",
33 "concat_test",
34 "macro_arg_count_test",
35 "util_test",
36]
37
38[
39 pw_test(
40 name = t,
41 srcs = [t + ".cc"],
42 copts = pw_default_copts(),
43 linkopts = pw_default_linkopts(),
44 deps = ["//pw_preprocessor"],
45 )
46 for t in TESTS
47]