diff options
author | vyacheslavek <vyacheslavek@yandex-team.com> | 2024-01-19 18:02:30 +0300 |
---|---|---|
committer | Alexander Smirnov <alex@ydb.tech> | 2024-01-24 15:01:43 +0300 |
commit | f68ad6dd4da8302506ea3b833d48409b7d3da460 (patch) | |
tree | 344b00acbfde47771d89c16915023e12e2a62925 /contrib/go/_std_1.21/src/bytes/ya.make | |
parent | 4c7fae39703d4abd345a501f40486697ade6f2cc (diff) | |
download | ydb-f68ad6dd4da8302506ea3b833d48409b7d3da460.tar.gz |
automation of go yamake update
ISSUE:
update gen.py and generated yamake
Diffstat (limited to 'contrib/go/_std_1.21/src/bytes/ya.make')
-rw-r--r-- | contrib/go/_std_1.21/src/bytes/ya.make | 78 |
1 files changed, 56 insertions, 22 deletions
diff --git a/contrib/go/_std_1.21/src/bytes/ya.make b/contrib/go/_std_1.21/src/bytes/ya.make index cfc6e35e7f..5832573e18 100644 --- a/contrib/go/_std_1.21/src/bytes/ya.make +++ b/contrib/go/_std_1.21/src/bytes/ya.make @@ -1,26 +1,60 @@ GO_LIBRARY() +IF (FALSE) + MESSAGE(FATAL this shall never happen) -SRCS( - buffer.go - bytes.go - reader.go -) - -GO_TEST_SRCS(export_test.go) - -GO_XTEST_SRCS( - buffer_test.go - bytes_test.go - compare_test.go - example_test.go - reader_test.go -) - -IF (OS_LINUX) - GO_XTEST_SRCS(boundary_test.go) +ELSEIF (OS_LINUX AND ARCH_X86_64) + SRCS( + buffer.go + bytes.go + reader.go + ) +ELSEIF (OS_LINUX AND ARCH_ARM64) + SRCS( + buffer.go + bytes.go + reader.go + ) +ELSEIF (OS_LINUX AND ARCH_AARCH64) + SRCS( + buffer.go + bytes.go + reader.go + ) +ELSEIF (OS_DARWIN AND ARCH_X86_64) + SRCS( + buffer.go + bytes.go + reader.go + ) +ELSEIF (OS_DARWIN AND ARCH_ARM64) + SRCS( + buffer.go + bytes.go + reader.go + ) +ELSEIF (OS_DARWIN AND ARCH_AARCH64) + SRCS( + buffer.go + bytes.go + reader.go + ) +ELSEIF (OS_WINDOWS AND ARCH_X86_64) + SRCS( + buffer.go + bytes.go + reader.go + ) +ELSEIF (OS_WINDOWS AND ARCH_ARM64) + SRCS( + buffer.go + bytes.go + reader.go + ) +ELSEIF (OS_WINDOWS AND ARCH_AARCH64) + SRCS( + buffer.go + bytes.go + reader.go + ) ENDIF() - END() - -RECURSE( -) |