08db1477a1a4d11052fc234bf87a11a8a84c08e6
[platform/upstream/connectedhomeip.git] / config / nrfconnect / 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
17 import("//${chip_root}/build/chip/tests.gni")
18
19 assert(current_os == "zephyr")
20
21 declare_args() {
22   chip_build_libshell = false
23   chip_build_pw_rpc_lib = false
24 }
25
26 group("dummy") {
27 }
28
29 group("nrfconnect") {
30   deps = [ "${chip_root}/src/lib" ]
31
32   if (chip_build_libshell) {
33     deps += [ "${chip_root}/src/lib/shell" ]
34   }
35
36   # Building PW_RPC lib with GN may go obsolete after getting full CMake
37   # support in Pigweed.
38   if (chip_build_pw_rpc_lib) {
39     deps += [ "${chip_root}/config/nrfconnect/lib/pw_rpc" ]
40   }
41 }
42
43 group("default") {
44   deps = [ ":nrfconnect" ]
45
46   if (chip_build_tests) {
47     deps += [ "${chip_root}/src:tests" ]
48   }
49 }