blob: 82a9552aae8c30a01db07e33c3dd63d11bd56d8f (
plain) (
blame)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Generated by devtools/yamaker.
LIBRARY()
OWNER(
orivej
g:cpp-contrib
)
VERSION(0.7.0)
LICENSE(Apache-2.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
PEERDIR(
contrib/restricted/aws/aws-c-cal
contrib/restricted/aws/aws-c-common
contrib/restricted/aws/s2n
)
ADDINCL(
GLOBAL contrib/restricted/aws/aws-c-io/include
)
NO_COMPILER_WARNINGS()
NO_RUNTIME()
SRCS(
source/alpn_handler.c
source/channel.c
source/channel_bootstrap.c
source/event_loop.c
source/exponential_backoff_retry_strategy.c
source/file_utils_shared.c
source/host_resolver.c
source/io.c
source/message_pool.c
source/pki_utils.c
source/posix/file_utils.c
source/posix/host_resolver.c
source/posix/pipe.c
source/posix/shared_library.c
source/posix/socket.c
source/retry_strategy.c
source/s2n/s2n_tls_channel_handler.c
source/socket_channel_handler.c
source/statistics.c
source/stream.c
source/tls_channel_handler.c
source/tls_channel_handler_shared.c
source/uri.c
)
IF (OS_DARWIN)
SRCS(
source/bsd/kqueue_event_loop.c
)
ELSEIF (OS_LINUX)
SRCS(
source/linux/epoll_event_loop.c
)
ENDIF()
END()
|