Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / third_party / pigweed / repo / pw_assert / BUILD
1 # 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
15 load(
16     "//pw_build:pigweed.bzl",
17     "pw_cc_library",
18     "pw_cc_test",
19 )
20
21 package(default_visibility = ["//visibility:public"])
22
23 licenses(["notice"])  # Apache License 2.0
24
25 # TODO(pwbug/101): Need to add support for facades/backends to Bazel.
26 PW_ASSERT_BACKEND = "//pw_assert_basic"
27
28 pw_cc_library(
29     name = "facade",
30     hdrs = [
31         "public/pw_assert/assert.h",
32         "public/pw_assert/light.h",
33         "public/pw_assert/options.h",
34         "public/pw_assert/internal/assert_impl.h",
35     ],
36     includes = ["public"],
37     deps = [
38         PW_ASSERT_BACKEND + ":headers",
39         "//pw_preprocessor",
40     ],
41 )
42
43 pw_cc_library(
44     name = "pw_assert",
45     deps = [
46         ":facade",
47         PW_ASSERT_BACKEND + ":headers",
48     ],
49 )
50
51 pw_cc_library(
52     name = "backend",
53     deps = [
54         PW_ASSERT_BACKEND,
55     ],
56 )
57
58 pw_cc_test(
59     name = "assert_facade_test",
60     srcs = [
61         "assert_facade_test.cc",
62         "fake_backend.cc",
63         "light_test.cc",
64         "public/pw_assert/internal/assert_impl.h",
65         "pw_assert_test/fake_backend.h",
66     ],
67     deps = [
68         ":facade",
69         "//pw_preprocessor",
70         "//pw_span",
71         "//pw_string",
72         "//pw_unit_test",
73     ],
74 )
75
76 pw_cc_test(
77     name = "assert_backend_compile_test",
78     srcs = [
79         "assert_backend_compile_test_c.c",
80         "assert_backend_compile_test.cc",
81     ],
82     deps = [
83         ":backend",
84         ":facade",
85         ":pw_assert",
86         "//pw_unit_test",
87     ],
88 )