diff options
Diffstat (limited to 'contrib/go/_std_1.21/src/crypto/tls/ya.make')
-rw-r--r-- | contrib/go/_std_1.21/src/crypto/tls/ya.make | 249 |
1 files changed, 202 insertions, 47 deletions
diff --git a/contrib/go/_std_1.21/src/crypto/tls/ya.make b/contrib/go/_std_1.21/src/crypto/tls/ya.make index fce6f9ee97..d149a98160 100644 --- a/contrib/go/_std_1.21/src/crypto/tls/ya.make +++ b/contrib/go/_std_1.21/src/crypto/tls/ya.make @@ -1,54 +1,209 @@ GO_LIBRARY() +IF (FALSE) + MESSAGE(FATAL this shall never happen) -SRCS( - alert.go - auth.go - cache.go - cipher_suites.go - common.go - common_string.go - conn.go - handshake_client.go - handshake_client_tls13.go - handshake_messages.go - handshake_server.go - handshake_server_tls13.go - key_agreement.go - key_schedule.go - notboring.go - prf.go - quic.go - ticket.go - tls.go -) - -GO_TEST_SRCS( - auth_test.go - cache_test.go - conn_test.go - handshake_client_test.go - handshake_messages_test.go - handshake_server_test.go - handshake_test.go - key_schedule_test.go - link_test.go - prf_test.go - quic_test.go - ticket_test.go - tls_test.go -) - -GO_XTEST_SRCS(example_test.go) - -IF (OS_LINUX) - GO_TEST_SRCS(handshake_unix_test.go) +ELSEIF (OS_LINUX AND ARCH_X86_64) + SRCS( + alert.go + auth.go + cache.go + cipher_suites.go + common.go + common_string.go + conn.go + handshake_client.go + handshake_client_tls13.go + handshake_messages.go + handshake_server.go + handshake_server_tls13.go + key_agreement.go + key_schedule.go + notboring.go + prf.go + quic.go + ticket.go + tls.go + ) +ELSEIF (OS_LINUX AND ARCH_ARM64) + SRCS( + alert.go + auth.go + cache.go + cipher_suites.go + common.go + common_string.go + conn.go + handshake_client.go + handshake_client_tls13.go + handshake_messages.go + handshake_server.go + handshake_server_tls13.go + key_agreement.go + key_schedule.go + notboring.go + prf.go + quic.go + ticket.go + tls.go + ) +ELSEIF (OS_LINUX AND ARCH_AARCH64) + SRCS( + alert.go + auth.go + cache.go + cipher_suites.go + common.go + common_string.go + conn.go + handshake_client.go + handshake_client_tls13.go + handshake_messages.go + handshake_server.go + handshake_server_tls13.go + key_agreement.go + key_schedule.go + notboring.go + prf.go + quic.go + ticket.go + tls.go + ) +ELSEIF (OS_DARWIN AND ARCH_X86_64) + SRCS( + alert.go + auth.go + cache.go + cipher_suites.go + common.go + common_string.go + conn.go + handshake_client.go + handshake_client_tls13.go + handshake_messages.go + handshake_server.go + handshake_server_tls13.go + key_agreement.go + key_schedule.go + notboring.go + prf.go + quic.go + ticket.go + tls.go + ) +ELSEIF (OS_DARWIN AND ARCH_ARM64) + SRCS( + alert.go + auth.go + cache.go + cipher_suites.go + common.go + common_string.go + conn.go + handshake_client.go + handshake_client_tls13.go + handshake_messages.go + handshake_server.go + handshake_server_tls13.go + key_agreement.go + key_schedule.go + notboring.go + prf.go + quic.go + ticket.go + tls.go + ) +ELSEIF (OS_DARWIN AND ARCH_AARCH64) + SRCS( + alert.go + auth.go + cache.go + cipher_suites.go + common.go + common_string.go + conn.go + handshake_client.go + handshake_client_tls13.go + handshake_messages.go + handshake_server.go + handshake_server_tls13.go + key_agreement.go + key_schedule.go + notboring.go + prf.go + quic.go + ticket.go + tls.go + ) +ELSEIF (OS_WINDOWS AND ARCH_X86_64) + SRCS( + alert.go + auth.go + cache.go + cipher_suites.go + common.go + common_string.go + conn.go + handshake_client.go + handshake_client_tls13.go + handshake_messages.go + handshake_server.go + handshake_server_tls13.go + key_agreement.go + key_schedule.go + notboring.go + prf.go + quic.go + ticket.go + tls.go + ) +ELSEIF (OS_WINDOWS AND ARCH_ARM64) + SRCS( + alert.go + auth.go + cache.go + cipher_suites.go + common.go + common_string.go + conn.go + handshake_client.go + handshake_client_tls13.go + handshake_messages.go + handshake_server.go + handshake_server_tls13.go + key_agreement.go + key_schedule.go + notboring.go + prf.go + quic.go + ticket.go + tls.go + ) +ELSEIF (OS_WINDOWS AND ARCH_AARCH64) + SRCS( + alert.go + auth.go + cache.go + cipher_suites.go + common.go + common_string.go + conn.go + handshake_client.go + handshake_client_tls13.go + handshake_messages.go + handshake_server.go + handshake_server_tls13.go + key_agreement.go + key_schedule.go + notboring.go + prf.go + quic.go + ticket.go + tls.go + ) ENDIF() - -IF (OS_DARWIN) - GO_TEST_SRCS(handshake_unix_test.go) -ENDIF() - END() + RECURSE( + fipsonly ) |