aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/thrift
diff options
context:
space:
mode:
authoralexv-smirnov <alex@ydb.tech>2023-03-28 22:25:04 +0300
committeralexv-smirnov <alex@ydb.tech>2023-03-28 22:25:04 +0300
commitb8a17f9b1c166d2e9a26b99348a4c29d972caf55 (patch)
tree1a2d881f1a9452b9c6103dbf69d73da7624e98e5 /contrib/restricted/thrift
parent25659221f18577ea38430a8ec3349836f5626b6a (diff)
downloadydb-b8a17f9b1c166d2e9a26b99348a4c29d972caf55.tar.gz
Revert ymake build from ydb oss export
Diffstat (limited to 'contrib/restricted/thrift')
-rw-r--r--contrib/restricted/thrift/ya.make100
1 files changed, 0 insertions, 100 deletions
diff --git a/contrib/restricted/thrift/ya.make b/contrib/restricted/thrift/ya.make
deleted file mode 100644
index 87fa705203..0000000000
--- a/contrib/restricted/thrift/ya.make
+++ /dev/null
@@ -1,100 +0,0 @@
-LIBRARY()
-
-VERSION(0.10.0)
-
-LICENSE(Apache-2.0)
-
-LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-
-NO_UTIL()
-
-NO_COMPILER_WARNINGS()
-
-ADDINCL(
- GLOBAL contrib/restricted/thrift
-)
-
-PEERDIR(
- contrib/libs/libevent
- contrib/libs/openssl
- contrib/libs/zlib
- contrib/restricted/boost/interprocess
- contrib/restricted/boost/locale
- contrib/restricted/boost/math
- contrib/restricted/boost/system
- contrib/restricted/boost/thread
-)
-
-SRCS(
- thrift/TApplicationException.cpp
- thrift/TOutput.cpp
- thrift/VirtualProfiling.cpp
- thrift/async/TAsyncChannel.cpp
- thrift/async/TAsyncProtocolProcessor.cpp
- thrift/async/TConcurrentClientSyncInfo.cpp
- thrift/async/TEvhttpClientChannel.cpp
- thrift/async/TEvhttpServer.cpp
- thrift/concurrency/StdMonitor.cpp
- thrift/concurrency/StdMutex.cpp
- thrift/concurrency/StdThreadFactory.cpp
- thrift/concurrency/ThreadManager.cpp
- thrift/concurrency/TimerManager.cpp
- thrift/concurrency/Util.cpp
- thrift/processor/PeekProcessor.cpp
- thrift/protocol/TBase64Utils.cpp
- thrift/protocol/TDebugProtocol.cpp
- thrift/protocol/THeaderProtocol.cpp
- thrift/protocol/TJSONProtocol.cpp
- thrift/protocol/TMultiplexedProtocol.cpp
- thrift/protocol/TProtocol.cpp
- thrift/server/TConnectedClient.cpp
- thrift/server/TNonblockingServer.cpp
- thrift/server/TServer.cpp
- thrift/server/TServerFramework.cpp
- thrift/server/TSimpleServer.cpp
- thrift/server/TThreadPoolServer.cpp
- thrift/server/TThreadedServer.cpp
- thrift/transport/TBufferTransports.cpp
- thrift/transport/TFDTransport.cpp
- thrift/transport/TFileTransport.cpp
- thrift/transport/THeaderTransport.cpp
- thrift/transport/THttpClient.cpp
- thrift/transport/THttpServer.cpp
- thrift/transport/THttpTransport.cpp
- thrift/transport/TNonblockingSSLServerSocket.cpp
- thrift/transport/TNonblockingServerSocket.cpp
- thrift/transport/TPipe.cpp
- thrift/transport/TPipeServer.cpp
- thrift/transport/TSSLServerSocket.cpp
- thrift/transport/TSSLSocket.cpp
- thrift/transport/TServerSocket.cpp
- thrift/transport/TSimpleFileTransport.cpp
- thrift/transport/TSocket.cpp
- thrift/transport/TSocketPool.cpp
- thrift/transport/TTransportException.cpp
- thrift/transport/TTransportUtils.cpp
- thrift/transport/TZlibTransport.cpp
-)
-
-IF (OS_WINDOWS)
- PEERDIR(
- contrib/restricted/boost/scope_exit
- )
- SRCS(
- thrift/windows/GetTimeOfDay.cpp
- thrift/windows/OverlappedSubmissionThread.cpp
- thrift/windows/SocketPair.cpp
- thrift/windows/TWinsockSingleton.cpp
- thrift/windows/WinFcntl.cpp
- )
-ELSE()
- CXXFLAGS(
- -Wno-deprecated-declarations
- -Wno-unused-function
- -Wno-unused-parameter
- -Wno-unused-private-field
- -Wno-unused-variable
- )
-ENDIF()
-
-END()