blob: 9c0e97275ce556947eb48fafa32e2b363f9ac3c8 (
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
|
# Generated by devtools/yamaker.
LIBRARY()
LICENSE(
BSD-3-Clause AND
MIT
)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
ADDINCL(
${ARCADIA_BUILD_ROOT}/contrib/libs/grpc
contrib/libs/grpc
contrib/libs/grpc/src/core/ext/upb-generated
contrib/libs/grpc/src/core/ext/upbdefs-generated
contrib/libs/grpc/third_party/upb
)
NO_COMPILER_WARNINGS()
NO_RUNTIME()
SRCDIR(contrib/libs/grpc)
IF (OS_LINUX OR OS_DARWIN)
CFLAGS(
-DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1
)
ENDIF()
SRCS(
src/core/ext/upb-generated/google/protobuf/descriptor.upb.c
src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c
third_party/upb/third_party/utf8_range/naive.c
third_party/upb/third_party/utf8_range/range2-neon.c
third_party/upb/third_party/utf8_range/range2-sse.c
third_party/upb/upb/arena.c
third_party/upb/upb/array.c
third_party/upb/upb/decode.c
third_party/upb/upb/decode_fast.c
third_party/upb/upb/def.c
third_party/upb/upb/encode.c
third_party/upb/upb/extension_registry.c
third_party/upb/upb/json_decode.c
third_party/upb/upb/json_encode.c
third_party/upb/upb/map.c
third_party/upb/upb/mini_table.c
third_party/upb/upb/msg.c
third_party/upb/upb/reflection.c
third_party/upb/upb/status.c
third_party/upb/upb/table.c
third_party/upb/upb/text_encode.c
third_party/upb/upb/upb.c
)
END()
|