Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / third_party / pigweed / repo / pw_log_basic / 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/module_config.gni")
18 import("$dir_pw_build/target_types.gni")
19 import("$dir_pw_docgen/docs.gni")
20
21 declare_args() {
22   # The build target that overrides the default configuration options for this
23   # module. This should point to a source set that provides defines through a
24   # public config (which may -include a file or add defines directly).
25   pw_log_basic_CONFIG = pw_build_DEFAULT_MODULE_CONFIG
26 }
27
28 config("default_config") {
29   include_dirs = [ "public" ]
30 }
31
32 config("backend_config") {
33   include_dirs = [ "public_overrides" ]
34 }
35
36 pw_source_set("pw_log_basic") {
37   public_configs = [
38     ":backend_config",
39     ":default_config",
40   ]
41   public = [ "public_overrides/pw_log_backend/log_backend.h" ]
42   public_deps = [ ":core" ]
43 }
44
45 pw_source_set("core") {
46   public_configs = [ ":default_config" ]
47   public_deps = [ dir_pw_preprocessor ]
48   deps = [
49     "$dir_pw_log:facade",
50     dir_pw_string,
51     dir_pw_sys_io,
52     pw_log_basic_CONFIG,
53   ]
54   public = [ "public/pw_log_basic/log_basic.h" ]
55
56   # Use emoji log levels if they've been enabled.
57   _use_emoji = getenv("PW_EMOJI")
58   defines = []
59   if (_use_emoji == "1") {
60     defines += [ "PW_EMOJI=1" ]
61   }
62
63   sources = [
64     "log_basic.cc",
65     "pw_log_basic_private/config.h",
66   ]
67 }
68
69 pw_doc_group("docs") {
70   sources = [ "docs.rst" ]
71 }