d11a5ae99a9e87faa142a12e675be737a17f19dc
[platform/upstream/connectedhomeip.git] / examples / shell / shell_common / BUILD.gn
1 # Copyright (c) 2020 Project CHIP Authors
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://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,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 import("//build_overrides/chip.gni")
16 import("//build_overrides/openthread.gni")
17 import("${chip_root}/src/platform/device.gni")
18
19 config("shell_common_config") {
20   include_dirs = [
21     ".",
22     "./include",
23     "${chip_root}/src/lib/shell",
24   ]
25
26   defines = [
27     "ENABLE_CHIP_SHELL",
28     "OPENTHREAD_CONFIG_CLI_TRANSPORT=OT_CLI_TRANSPORT_CONSOLE",
29   ]
30 }
31
32 static_library("shell_common") {
33   sources = [
34     "cmd_base64.cpp",
35     "cmd_btp.cpp",
36     "cmd_device.cpp",
37     "cmd_misc.cpp",
38     "cmd_otcli.cpp",
39   ]
40
41   public_deps = [
42     "${chip_root}/src/lib",
43     "${chip_root}/src/lib/shell",
44     "${chip_root}/src/setup_payload",
45   ]
46
47   if (chip_enable_openthread &&
48       (current_os == "freertos" || current_os == "zephyr")) {
49     public_deps += [
50       "${openthread_root}:libopenthread-cli-ftd",
51       "${openthread_root}:libopenthread-ftd",
52     ]
53   }
54
55   public_configs = [ ":shell_common_config" ]
56 }