Trevor Holbrook | 934f89c | 2020-11-18 15:34:14 -0800 | [diff] [blame] | 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 | static_library("bdx") { |
| 18 | output_name = "libBdx" |
| 19 | |
| 20 | sources = [ |
| 21 | "BdxMessages.cpp", |
| 22 | "BdxMessages.h", |
Vivien Nicolas | f5b4caf | 2024-02-13 18:26:24 +0100 | [diff] [blame] | 23 | "BdxTransferDiagnosticLog.cpp", |
| 24 | "BdxTransferDiagnosticLog.h", |
| 25 | "BdxTransferDiagnosticLogPool.h", |
Vivien Nicolas | db7d887 | 2024-01-23 00:09:30 +0100 | [diff] [blame] | 26 | "BdxTransferProxy.h", |
| 27 | "BdxTransferProxyDiagnosticLog.cpp", |
| 28 | "BdxTransferProxyDiagnosticLog.h", |
| 29 | "BdxTransferServer.cpp", |
| 30 | "BdxTransferServer.h", |
Andrei Litvin | f3a71ce | 2024-02-05 09:02:56 -0500 | [diff] [blame] | 31 | "BdxTransferServerDelegate.h", |
Trevor Holbrook | 775e37f | 2021-02-05 07:23:29 -0800 | [diff] [blame] | 32 | "BdxTransferSession.cpp", |
| 33 | "BdxTransferSession.h", |
Damian Królik | d6dfe03 | 2021-12-10 06:41:33 +0100 | [diff] [blame] | 34 | "BdxUri.cpp", |
| 35 | "BdxUri.h", |
Andrei Litvin | f3a71ce | 2024-02-05 09:02:56 -0500 | [diff] [blame] | 36 | "DiagnosticLogs.h", |
Vivien Nicolas | db7d887 | 2024-01-23 00:09:30 +0100 | [diff] [blame] | 37 | "StatusCode.cpp", |
| 38 | "StatusCode.h", |
Trevor Holbrook | 77c1c53 | 2021-08-04 11:48:50 -0700 | [diff] [blame] | 39 | "TransferFacilitator.cpp", |
| 40 | "TransferFacilitator.h", |
Trevor Holbrook | 934f89c | 2020-11-18 15:34:14 -0800 | [diff] [blame] | 41 | ] |
| 42 | |
| 43 | cflags = [ "-Wconversion" ] |
| 44 | |
| 45 | public_deps = [ |
| 46 | "${chip_root}/src/lib/core", |
| 47 | "${chip_root}/src/lib/support", |
Trevor Holbrook | fe78161 | 2021-03-23 23:16:56 -0700 | [diff] [blame] | 48 | "${chip_root}/src/protocols/secure_channel", |
Trevor Holbrook | 934f89c | 2020-11-18 15:34:14 -0800 | [diff] [blame] | 49 | "${chip_root}/src/system", |
Kevin Schoedel | 0729778 | 2021-02-16 19:01:17 -0500 | [diff] [blame] | 50 | "${chip_root}/src/transport", |
Trevor Holbrook | 934f89c | 2020-11-18 15:34:14 -0800 | [diff] [blame] | 51 | ] |
| 52 | } |