Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / third_party / pigweed / repo / pw_log / BUILD.gn
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 import("//build_overrides/pigweed.gni")
16
17 import("$dir_pw_build/facade.gni")
18 import("$dir_pw_docgen/docs.gni")
19 import("$dir_pw_log/backend.gni")
20 import("$dir_pw_protobuf_compiler/proto.gni")
21 import("$dir_pw_unit_test/test.gni")
22
23 config("default_config") {
24   include_dirs = [ "public" ]
25 }
26
27 pw_facade("pw_log") {
28   backend = pw_log_BACKEND
29   public_configs = [ ":default_config" ]
30   public = [
31     "public/pw_log/levels.h",
32     "public/pw_log/log.h",
33     "public/pw_log/options.h",
34   ]
35 }
36
37 pw_test_group("tests") {
38   tests = [ ":basic_log_test" ]
39 }
40
41 pw_test("basic_log_test") {
42   enable_if = pw_log_BACKEND != ""
43   deps = [
44     ":pw_log",
45     dir_pw_preprocessor,
46     pw_log_BACKEND,
47   ]
48
49   sources = [
50     "basic_log_test.cc",
51     "basic_log_test_plain_c.c",
52   ]
53 }
54
55 pw_proto_library("protos") {
56   sources = [ "pw_log_proto/log.proto" ]
57 }
58
59 pw_doc_group("docs") {
60   sources = [ "docs.rst" ]
61 }