diff options
author | Daniil Cherednik <dan.cherednik@gmail.com> | 2022-09-21 20:17:38 +0300 |
---|---|---|
committer | Daniil Cherednik <dan.cherednik@gmail.com> | 2022-09-21 20:17:38 +0300 |
commit | e6c9b17192c56494adba359d5e132c431b241191 (patch) | |
tree | 6f2449871a118a0e8919ce842b1174e06cb470ef /contrib/restricted/abseil-cpp | |
parent | 285021ab1aac39e84b269d9bacd4deee69cf63fc (diff) | |
download | ydb-e6c9b17192c56494adba359d5e132c431b241191.tar.gz |
Ydb stable 22-4-2122.4.21
x-stable-origin-commit: e89099581237299a132feafb5b58af59ebd0468a
Diffstat (limited to 'contrib/restricted/abseil-cpp')
20 files changed, 155 insertions, 0 deletions
diff --git a/contrib/restricted/abseil-cpp/CMakeLists.txt b/contrib/restricted/abseil-cpp/CMakeLists.txt index 5252bb9cb7..31c2484988 100644 --- a/contrib/restricted/abseil-cpp/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/CMakeLists.txt @@ -6,6 +6,7 @@ # original buildsystem will not be accepted. +add_subdirectory(absl) add_library(contrib-restricted-abseil-cpp INTERFACE) target_link_libraries(contrib-restricted-abseil-cpp INTERFACE diff --git a/contrib/restricted/abseil-cpp/absl/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/CMakeLists.txt new file mode 100644 index 0000000000..6b663fea8e --- /dev/null +++ b/contrib/restricted/abseil-cpp/absl/CMakeLists.txt @@ -0,0 +1,28 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + +add_subdirectory(algorithm) +add_subdirectory(base) +add_subdirectory(city) +add_subdirectory(container) +add_subdirectory(debugging) +add_subdirectory(demangle) +add_subdirectory(flags) +add_subdirectory(functional) +add_subdirectory(hash) +add_subdirectory(memory) +add_subdirectory(meta) +add_subdirectory(numeric) +add_subdirectory(profiling) +add_subdirectory(random) +add_subdirectory(status) +add_subdirectory(strings) +add_subdirectory(synchronization) +add_subdirectory(time) +add_subdirectory(types) +add_subdirectory(utility) diff --git a/contrib/restricted/abseil-cpp/absl/base/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/base/CMakeLists.txt index 8ff5c8c5f2..d53905ea73 100644 --- a/contrib/restricted/abseil-cpp/absl/base/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/base/CMakeLists.txt @@ -6,6 +6,8 @@ # original buildsystem will not be accepted. +add_subdirectory(internal) +add_subdirectory(log_severity) add_library(abseil-cpp-absl-base) target_compile_options(abseil-cpp-absl-base PRIVATE diff --git a/contrib/restricted/abseil-cpp/absl/base/internal/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/base/internal/CMakeLists.txt new file mode 100644 index 0000000000..e32cdd70be --- /dev/null +++ b/contrib/restricted/abseil-cpp/absl/base/internal/CMakeLists.txt @@ -0,0 +1,14 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + +add_subdirectory(low_level_alloc) +add_subdirectory(raw_logging) +add_subdirectory(scoped_set_env) +add_subdirectory(spinlock_wait) +add_subdirectory(strerror) +add_subdirectory(throw_delegate) diff --git a/contrib/restricted/abseil-cpp/absl/container/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/container/CMakeLists.txt index 3f71875a2a..ee52ca4a20 100644 --- a/contrib/restricted/abseil-cpp/absl/container/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/container/CMakeLists.txt @@ -6,5 +6,6 @@ # original buildsystem will not be accepted. +add_subdirectory(internal) add_library(abseil-cpp-absl-container INTERFACE) diff --git a/contrib/restricted/abseil-cpp/absl/container/internal/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/container/internal/CMakeLists.txt new file mode 100644 index 0000000000..377678a185 --- /dev/null +++ b/contrib/restricted/abseil-cpp/absl/container/internal/CMakeLists.txt @@ -0,0 +1,10 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + +add_subdirectory(absl_hashtablez_sampler) +add_subdirectory(raw_hash_set) diff --git a/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.txt index a73ff5ab2f..65240b53b9 100644 --- a/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/debugging/CMakeLists.txt @@ -6,6 +6,12 @@ # original buildsystem will not be accepted. +add_subdirectory(failure_signal_handler) +add_subdirectory(internal) +add_subdirectory(leak_check) +add_subdirectory(leak_check_disable) +add_subdirectory(stacktrace) +add_subdirectory(symbolize) add_library(abseil-cpp-absl-debugging) target_compile_options(abseil-cpp-absl-debugging PRIVATE diff --git a/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.txt index b0b286edbd..e79b24e3ae 100644 --- a/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/flags/CMakeLists.txt @@ -6,6 +6,13 @@ # original buildsystem will not be accepted. +add_subdirectory(commandlineflag) +add_subdirectory(internal) +add_subdirectory(marshalling) +add_subdirectory(parse) +add_subdirectory(reflection) +add_subdirectory(usage) +add_subdirectory(usage_config) add_library(abseil-cpp-absl-flags) target_compile_options(abseil-cpp-absl-flags PRIVATE diff --git a/contrib/restricted/abseil-cpp/absl/flags/internal/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/flags/internal/CMakeLists.txt new file mode 100644 index 0000000000..406ed60168 --- /dev/null +++ b/contrib/restricted/abseil-cpp/absl/flags/internal/CMakeLists.txt @@ -0,0 +1,13 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + +add_subdirectory(commandlineflag) +add_subdirectory(flag) +add_subdirectory(private_handle_accessor) +add_subdirectory(program_name) +add_subdirectory(usage) diff --git a/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.txt index 23d66a6f73..373b7b6f97 100644 --- a/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/hash/CMakeLists.txt @@ -6,6 +6,7 @@ # original buildsystem will not be accepted. +add_subdirectory(internal) add_library(abseil-cpp-absl-hash) target_compile_options(abseil-cpp-absl-hash PRIVATE diff --git a/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.txt new file mode 100644 index 0000000000..a339089aea --- /dev/null +++ b/contrib/restricted/abseil-cpp/absl/profiling/CMakeLists.txt @@ -0,0 +1,9 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + +add_subdirectory(internal) diff --git a/contrib/restricted/abseil-cpp/absl/profiling/internal/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/profiling/internal/CMakeLists.txt new file mode 100644 index 0000000000..eddcd1b715 --- /dev/null +++ b/contrib/restricted/abseil-cpp/absl/profiling/internal/CMakeLists.txt @@ -0,0 +1,10 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + +add_subdirectory(exponential_biased) +add_subdirectory(periodic_sampler) diff --git a/contrib/restricted/abseil-cpp/absl/random/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/random/CMakeLists.txt new file mode 100644 index 0000000000..9432969f95 --- /dev/null +++ b/contrib/restricted/abseil-cpp/absl/random/CMakeLists.txt @@ -0,0 +1,12 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + +add_subdirectory(absl_random_distributions) +add_subdirectory(internal) +add_subdirectory(seed_gen_exception) +add_subdirectory(seed_sequences) diff --git a/contrib/restricted/abseil-cpp/absl/random/internal/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/random/internal/CMakeLists.txt new file mode 100644 index 0000000000..8f9757666c --- /dev/null +++ b/contrib/restricted/abseil-cpp/absl/random/internal/CMakeLists.txt @@ -0,0 +1,16 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + +add_subdirectory(absl_random_internal_distribution_test_util) +add_subdirectory(pool_urbg) +add_subdirectory(randen) +add_subdirectory(randen_detect) +add_subdirectory(randen_hwaes) +add_subdirectory(randen_round_keys) +add_subdirectory(randen_slow) +add_subdirectory(seed_material) diff --git a/contrib/restricted/abseil-cpp/absl/status/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/status/CMakeLists.txt index 2323eb9d29..c0a245a93c 100644 --- a/contrib/restricted/abseil-cpp/absl/status/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/status/CMakeLists.txt @@ -6,6 +6,7 @@ # original buildsystem will not be accepted. +add_subdirectory(statusor) add_library(abseil-cpp-absl-status) target_compile_options(abseil-cpp-absl-status PRIVATE diff --git a/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.txt index 1c450b7de5..4e0bd985eb 100644 --- a/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/strings/CMakeLists.txt @@ -6,6 +6,8 @@ # original buildsystem will not be accepted. +add_subdirectory(cord) +add_subdirectory(internal) add_library(abseil-cpp-absl-strings) target_compile_options(abseil-cpp-absl-strings PRIVATE diff --git a/contrib/restricted/abseil-cpp/absl/strings/internal/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/strings/internal/CMakeLists.txt new file mode 100644 index 0000000000..4bc41c3fc3 --- /dev/null +++ b/contrib/restricted/abseil-cpp/absl/strings/internal/CMakeLists.txt @@ -0,0 +1,15 @@ + +# This file was gererated by the build system used internally in the Yandex monorepo. +# Only simple modifications are allowed (adding source-files to targets, adding simple properties +# like target_include_directories). These modifications will be ported to original +# ya.make files by maintainers. Any complex modifications which can't be ported back to the +# original buildsystem will not be accepted. + + +add_subdirectory(absl_cord_internal) +add_subdirectory(absl_strings_internal) +add_subdirectory(cordz_functions) +add_subdirectory(cordz_handle) +add_subdirectory(cordz_info) +add_subdirectory(cordz_sample_token) +add_subdirectory(str_format) diff --git a/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.txt index e63479baed..4e2193ede2 100644 --- a/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/synchronization/CMakeLists.txt @@ -6,6 +6,7 @@ # original buildsystem will not be accepted. +add_subdirectory(internal) add_library(abseil-cpp-absl-synchronization) target_compile_options(abseil-cpp-absl-synchronization PRIVATE diff --git a/contrib/restricted/abseil-cpp/absl/time/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/time/CMakeLists.txt index a5919760af..b7d3ee3b8f 100644 --- a/contrib/restricted/abseil-cpp/absl/time/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/time/CMakeLists.txt @@ -6,6 +6,8 @@ # original buildsystem will not be accepted. +add_subdirectory(civil_time) +add_subdirectory(time_zone) add_library(abseil-cpp-absl-time) target_compile_options(abseil-cpp-absl-time PRIVATE diff --git a/contrib/restricted/abseil-cpp/absl/types/CMakeLists.txt b/contrib/restricted/abseil-cpp/absl/types/CMakeLists.txt index d9ca280d08..856b3c8efb 100644 --- a/contrib/restricted/abseil-cpp/absl/types/CMakeLists.txt +++ b/contrib/restricted/abseil-cpp/absl/types/CMakeLists.txt @@ -6,5 +6,9 @@ # original buildsystem will not be accepted. +add_subdirectory(bad_any_cast) +add_subdirectory(bad_optional_access) +add_subdirectory(bad_variant_access) +add_subdirectory(internal) add_library(abseil-cpp-absl-types INTERFACE) |