[gn] add tcplp (#12205)

This commit adds the tcp support in gn build for projects relying on
OpenThread.
This commit is contained in:
Yakun Xu
2025-12-18 00:07:31 +08:00
committed by GitHub
parent f38c0a6774
commit 7c9de986c7
2 changed files with 89 additions and 0 deletions
+6
View File
@@ -783,12 +783,18 @@ group("libopenthread_platform") {
static_library("libopenthread-ftd") {
sources = openthread_core_sources
if (openthread_config_tcp_enable) {
deps = [ "../../third_party/tcplp" ]
}
public_deps = [ ":libopenthread_platform" ]
public_configs = [ "../..:openthread_ftd_config" ]
}
static_library("libopenthread-mtd") {
sources = openthread_core_sources
if (openthread_config_tcp_enable) {
deps = [ "../../third_party/tcplp" ]
}
public_deps = [ ":libopenthread_platform" ]
public_configs = [ "../..:openthread_mtd_config" ]
}
+83
View File
@@ -0,0 +1,83 @@
# Copyright (c) 2025, The OpenThread Authors.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. Neither the name of the copyright holder nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
config("warnings_fix_config") {
cflags = [
"-Wno-conversion",
"-Wno-sign-compare",
"-Wno-undef",
"-Wno-unused-parameter",
"-Wno-vla",
]
}
group("warnings_fix") {
public_configs = [
":warnings_fix_config",
]
}
static_library("tcplp") {
sources = [
"bsdtcp/tcp_seq.h",
"bsdtcp/tcp_output.c",
"bsdtcp/cc.h",
"bsdtcp/icmp_var.h",
"bsdtcp/tcp_timer.c",
"bsdtcp/tcp_reass.c",
"bsdtcp/tcp_subr.c",
"bsdtcp/tcp_fsm.h",
"bsdtcp/ip.h",
"bsdtcp/tcp_const.h",
"bsdtcp/sys/queue.h",
"bsdtcp/tcp_fastopen.h",
"bsdtcp/tcp_sack.c",
"bsdtcp/tcp_usrreq.c",
"bsdtcp/tcp_timewait.c",
"bsdtcp/tcp.h",
"bsdtcp/cc/cc_module.h",
"bsdtcp/cc/cc_newreno.c",
"bsdtcp/ip6.h",
"bsdtcp/types.h",
"bsdtcp/tcp_fastopen.c",
"bsdtcp/tcp_timer.h",
"bsdtcp/tcp_input.c",
"bsdtcp/tcp_var.h",
"tcplp.h",
"lib/bitmap.c",
"lib/cbuf.c",
"lib/cbuf.h",
"lib/bitmap.h",
"lib/lbuf.h",
"lib/lbuf.c",
"lib/test/test_all.c",
]
deps = [
":warnings_fix",
"../../include/openthread",
]
}