diff --git a/tensorflow/core/platform/BUILD b/tensorflow/core/platform/BUILD index 424de81a066..88d28091e68 100644 --- a/tensorflow/core/platform/BUILD +++ b/tensorflow/core/platform/BUILD @@ -939,8 +939,6 @@ tf_cc_tests( "port_test.cc", "profile_utils/cpu_utils_test.cc", "scanner_test.cc", - "stacktrace_handler_test.cc", - "stacktrace_test.cc", "str_util_test.cc", "strcat_test.cc", "stringpiece_test.cc", @@ -969,6 +967,37 @@ tf_cc_tests( ], ) +tf_cc_test( + name = "stacktrace_test", + size = "small", + srcs = [ + "stacktrace_test.cc", + ], + tags = ["no_windows"], + deps = [ + ":logging", + ":stacktrace", + "//tensorflow/core:test", + "//tensorflow/core:test_main", + ], +) + +tf_cc_tests( + name = "stacktrace_handler_test", + size = "small", + srcs = [ + "stacktrace_handler_test.cc", + ], + tags = ["no_windows"], + deps = [ + ":logging", + ":stacktrace", + ":stacktrace_handler", + "//tensorflow/core:test", + "//tensorflow/core:test_main", + ], +) + tf_cc_test( name = "subprocess_test", size = "small",