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 /contrib/restricted/googletest | |
parent | 269126dcced1cc8b53eb4398b4a33e5142f10290 (diff) | |
download | ydb-056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11.tar.gz |
add library/cpp/actors, ymake build to ydb oss export
Diffstat (limited to 'contrib/restricted/googletest')
-rw-r--r-- | contrib/restricted/googletest/googlemock/ya.make | 28 | ||||
-rw-r--r-- | contrib/restricted/googletest/googletest/ya.make | 33 |
2 files changed, 61 insertions, 0 deletions
diff --git a/contrib/restricted/googletest/googlemock/ya.make b/contrib/restricted/googletest/googlemock/ya.make new file mode 100644 index 0000000000..d01f1c1aa2 --- /dev/null +++ b/contrib/restricted/googletest/googlemock/ya.make @@ -0,0 +1,28 @@ +# Generated by devtools/yamaker. + +LIBRARY() + +LICENSE(BSD-3-Clause) + +LICENSE_TEXTS(.yandex_meta/licenses.list.txt) + +PEERDIR( + contrib/restricted/googletest/googletest +) + +ADDINCL( + GLOBAL contrib/restricted/googletest/googlemock/include + contrib/restricted/googletest/googlemock + contrib/restricted/googletest/googletest + contrib/restricted/googletest/googletest/include +) + +NO_COMPILER_WARNINGS() + +NO_UTIL() + +SRCS( + src/gmock-all.cc +) + +END() diff --git a/contrib/restricted/googletest/googletest/ya.make b/contrib/restricted/googletest/googletest/ya.make new file mode 100644 index 0000000000..f48cd9b702 --- /dev/null +++ b/contrib/restricted/googletest/googletest/ya.make @@ -0,0 +1,33 @@ +# Generated by devtools/yamaker. + +LIBRARY() + +LICENSE(BSD-3-Clause) + +LICENSE_TEXTS(.yandex_meta/licenses.list.txt) + +PEERDIR( + contrib/libs/re2 +) + +ADDINCL( + GLOBAL contrib/restricted/googletest/googletest/include + contrib/restricted/googletest/googletest +) + +NO_COMPILER_WARNINGS() + +NO_UTIL() + +CFLAGS( + GLOBAL -DGTEST_HAS_ABSL=0 + GLOBAL -DGTEST_HAS_POSIX_RE=0 + GLOBAL -DGTEST_HAS_STD_WSTRING=1 + GLOBAL -DGTEST_USES_RE2=1 +) + +SRCS( + src/gtest-all.cc +) + +END() |