diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-02-04 02:13:03 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-02-04 02:31:01 +0300 |
commit | 9b729c17b913155dd17d52abe558cf647f8838d2 (patch) | |
tree | 38b8b5874c869cba5cd7e5fd276c85a12d39bc80 /contrib/go/_std_1.21/src/container/heap/ya.make | |
parent | f8298c4cf5f642353e0c5e7cd058721a7210cb51 (diff) | |
download | ydb-9b729c17b913155dd17d52abe558cf647f8838d2.tar.gz |
Intermediate changes
Diffstat (limited to 'contrib/go/_std_1.21/src/container/heap/ya.make')
-rw-r--r-- | contrib/go/_std_1.21/src/container/heap/ya.make | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/contrib/go/_std_1.21/src/container/heap/ya.make b/contrib/go/_std_1.21/src/container/heap/ya.make index a0b93ba37b..96efc22808 100644 --- a/contrib/go/_std_1.21/src/container/heap/ya.make +++ b/contrib/go/_std_1.21/src/container/heap/ya.make @@ -1,21 +1,5 @@ GO_LIBRARY() -IF (OS_DARWIN AND ARCH_ARM64) - SRCS( - heap.go - ) -ELSEIF (OS_DARWIN AND ARCH_X86_64) - SRCS( - heap.go - ) -ELSEIF (OS_LINUX AND ARCH_AARCH64) - SRCS( - heap.go - ) -ELSEIF (OS_LINUX AND ARCH_X86_64) - SRCS( - heap.go - ) -ELSEIF (OS_WINDOWS AND ARCH_X86_64) +IF (OS_DARWIN AND ARCH_ARM64 OR OS_DARWIN AND ARCH_X86_64 OR OS_LINUX AND ARCH_AARCH64 OR OS_LINUX AND ARCH_X86_64 OR OS_WINDOWS AND ARCH_X86_64) SRCS( heap.go ) |