Commit b51cdf34 authored by Mark Omernick's avatar Mark Omernick Committed by GitHub
Browse files

Merge pull request #1252 from bogatyy/master

Fix Mac build: avoid duplicating TF symbols
parents a5227603 ce9504af
......@@ -131,7 +131,7 @@ class StatelessComponentTest : public ::testing::Test {
};
TEST_F(StatelessComponentTest, ForwardsTransitionStates) {
const MockTransitionState mock_state_1, mock_state_2, mock_state_3;
MockTransitionState mock_state_1, mock_state_2, mock_state_3;
const std::vector<std::vector<const TransitionState *>> parent_states = {
{}, {&mock_state_1}, {&mock_state_2, &mock_state_3}};
......
......@@ -91,7 +91,6 @@ cc_test(
"//dragnn/protos:spec_proto",
"//syntaxnet:task_context",
"//syntaxnet:test_main",
"@org_tensorflow//tensorflow/core:testlib",
],
)
......@@ -110,6 +109,5 @@ cc_test(
"//syntaxnet:base",
"//syntaxnet:sentence_proto",
"//syntaxnet:test_main",
"@org_tensorflow//tensorflow/core:testlib",
],
)
......@@ -246,7 +246,6 @@ cc_library(
":compute_session_op",
":resource_container",
"//syntaxnet:base",
"@org_tensorflow//tensorflow/core:protos_all_cc",
"@org_tensorflow//third_party/eigen3",
],
)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment