diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-06-13 11:05:01 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-06-13 11:05:01 +0300 |
commit | bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0 (patch) | |
tree | 1d1df72c0541a59a81439842f46d95396d3e7189 /contrib/libs/grpc/third_party | |
parent | 8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff) | |
download | ydb-bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0.tar.gz |
add ymake export to ydb
Diffstat (limited to 'contrib/libs/grpc/third_party')
-rw-r--r-- | contrib/libs/grpc/third_party/address_sorting/ya.make | 31 | ||||
-rw-r--r-- | contrib/libs/grpc/third_party/upb/ya.make | 57 |
2 files changed, 88 insertions, 0 deletions
diff --git a/contrib/libs/grpc/third_party/address_sorting/ya.make b/contrib/libs/grpc/third_party/address_sorting/ya.make new file mode 100644 index 0000000000..3458b8825c --- /dev/null +++ b/contrib/libs/grpc/third_party/address_sorting/ya.make @@ -0,0 +1,31 @@ +# Generated by devtools/yamaker. + +LIBRARY() + +LICENSE(BSD-3-Clause) + +LICENSE_TEXTS(.yandex_meta/licenses.list.txt) + +ADDINCL( + ${ARCADIA_BUILD_ROOT}/contrib/libs/grpc + contrib/libs/grpc + contrib/libs/grpc/third_party/address_sorting/include +) + +NO_COMPILER_WARNINGS() + +NO_RUNTIME() + +IF (OS_LINUX OR OS_DARWIN) + CFLAGS( + -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 + ) +ENDIF() + +SRCS( + address_sorting.c + address_sorting_posix.c + address_sorting_windows.c +) + +END() diff --git a/contrib/libs/grpc/third_party/upb/ya.make b/contrib/libs/grpc/third_party/upb/ya.make new file mode 100644 index 0000000000..9c0e97275c --- /dev/null +++ b/contrib/libs/grpc/third_party/upb/ya.make @@ -0,0 +1,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() |