diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-03-15 19:59:12 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-03-15 19:59:12 +0300 |
commit | 056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11 (patch) | |
tree | 4740980126f32e3af7937ba0ca5f83e59baa4ab0 /library/python/symbols | |
parent | 269126dcced1cc8b53eb4398b4a33e5142f10290 (diff) | |
download | ydb-056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11.tar.gz |
add library/cpp/actors, ymake build to ydb oss export
Diffstat (limited to 'library/python/symbols')
-rw-r--r-- | library/python/symbols/libc/ya.make | 17 | ||||
-rw-r--r-- | library/python/symbols/module/ya.make | 21 | ||||
-rw-r--r-- | library/python/symbols/python/ut/py2/ya.make | 7 | ||||
-rw-r--r-- | library/python/symbols/python/ut/py3/ya.make | 7 | ||||
-rw-r--r-- | library/python/symbols/python/ut/ya.make | 14 | ||||
-rw-r--r-- | library/python/symbols/python/ya.make | 13 | ||||
-rw-r--r-- | library/python/symbols/registry/ya.make | 7 | ||||
-rw-r--r-- | library/python/symbols/win_unicode_console/ya.make | 11 |
8 files changed, 97 insertions, 0 deletions
diff --git a/library/python/symbols/libc/ya.make b/library/python/symbols/libc/ya.make new file mode 100644 index 0000000000..1aa4d90ac8 --- /dev/null +++ b/library/python/symbols/libc/ya.make @@ -0,0 +1,17 @@ +LIBRARY() + +PEERDIR( + library/python/symbols/registry +) + +IF (GCC OR CLANG) + CFLAGS( + -Wno-deprecated-declarations # For sem_getvalue. + ) +ENDIF() + +SRCS( + GLOBAL syms.cpp +) + +END() diff --git a/library/python/symbols/module/ya.make b/library/python/symbols/module/ya.make new file mode 100644 index 0000000000..87bcd72b4a --- /dev/null +++ b/library/python/symbols/module/ya.make @@ -0,0 +1,21 @@ +PY23_LIBRARY() + +NO_PYTHON_INCLUDES() + +PEERDIR( + contrib/libs/python/Include +) + +SRCS( + module.cpp +) + +PY_REGISTER( + library.python.symbols.module.syms +) + +PY_SRCS( + __init__.py +) + +END() diff --git a/library/python/symbols/python/ut/py2/ya.make b/library/python/symbols/python/ut/py2/ya.make new file mode 100644 index 0000000000..991cbedf65 --- /dev/null +++ b/library/python/symbols/python/ut/py2/ya.make @@ -0,0 +1,7 @@ +PY2TEST() + +PEERDIR( + library/python/symbols/python/ut +) + +END() diff --git a/library/python/symbols/python/ut/py3/ya.make b/library/python/symbols/python/ut/py3/ya.make new file mode 100644 index 0000000000..e5542a6c4e --- /dev/null +++ b/library/python/symbols/python/ut/py3/ya.make @@ -0,0 +1,7 @@ +PY3TEST() + +PEERDIR( + library/python/symbols/python/ut +) + +END() diff --git a/library/python/symbols/python/ut/ya.make b/library/python/symbols/python/ut/ya.make new file mode 100644 index 0000000000..933c81781f --- /dev/null +++ b/library/python/symbols/python/ut/ya.make @@ -0,0 +1,14 @@ +PY23_LIBRARY() + +TEST_SRCS(test_ctypes.py) + +PEERDIR( + library/python/symbols/python +) + +END() + +RECURSE_FOR_TESTS( + py2 + py3 +) diff --git a/library/python/symbols/python/ya.make b/library/python/symbols/python/ya.make new file mode 100644 index 0000000000..e19c591608 --- /dev/null +++ b/library/python/symbols/python/ya.make @@ -0,0 +1,13 @@ +LIBRARY() + +PEERDIR( + library/python/symbols/registry +) + +SRCS( + GLOBAL syms.cpp +) + +END() + +RECURSE_FOR_TESTS(ut) diff --git a/library/python/symbols/registry/ya.make b/library/python/symbols/registry/ya.make new file mode 100644 index 0000000000..16cf260372 --- /dev/null +++ b/library/python/symbols/registry/ya.make @@ -0,0 +1,7 @@ +LIBRARY() + +SRCS( + syms.cpp +) + +END() diff --git a/library/python/symbols/win_unicode_console/ya.make b/library/python/symbols/win_unicode_console/ya.make new file mode 100644 index 0000000000..f1fe4ad2ce --- /dev/null +++ b/library/python/symbols/win_unicode_console/ya.make @@ -0,0 +1,11 @@ +LIBRARY() + +PEERDIR( + library/python/symbols/registry +) + +SRCS( + GLOBAL syms.cpp +) + +END() |