-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathBUILD.gn
50 lines (47 loc) · 1.06 KB
/
BUILD.gn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
### nginx quic stack build spec
source_set("ngx_quic_stack_src") {
sources = [
"src/tQuicAlarmFactory.hh",
"src/tQuicAlarmFactory.cc",
"src/tQuicClock.hh",
"src/tQuicClock.cc",
"src/tQuicProofSource.hh",
"src/tQuicProofSource.cc",
"src/tQuicConnectionHelper.hh",
"src/tQuicConnectionHelper.cc",
"src/tQuicCryptoServerStream.hh",
"src/tQuicCryptoServerStream.cc",
"src/tQuicDispatcher.hh",
"src/tQuicDispatcher.cc",
"src/tQuicServerSession.hh",
"src/tQuicServerSession.cc",
"src/tQuicServerStream.hh",
"src/tQuicServerStream.cc",
]
deps = [
"//net",
"//net:simple_quic_tools",
"//net:epoll_quic_tools",
"//base",
"//base/third_party/dynamic_annotations",
"//url",
]
}
if (is_linux) {
shared_library("ngxquicstack") {
sources = [
"src/quic_stack_api.h",
"src/tQuicStack.hh",
"src/tQuicStack.cc",
]
deps = [
":ngx_quic_stack_src",
"//net",
"//base",
"//third_party/boringssl",
]
ldflags = [
"-Wl,-Bsymbolic",
]
}
}