Skip to content

Commit

Permalink
Merge pull request #683 from hzeller/fix-dependencies
Browse files Browse the repository at this point in the history
Remove superfluous, add missing dependencies in BUILD files.
  • Loading branch information
hzeller authored Feb 20, 2021
2 parents f698155 + f009c20 commit c1a388a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 0 additions & 2 deletions verilog/CST/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,6 @@ cc_library(
"//common/text:symbol",
"//common/text:token_info",
"//common/text:token_info_json",
"//common/text:tree_utils",
"//common/util:value_saver",
"//verilog/parser:verilog_token",
"@com_google_absl//absl/strings",
Expand Down Expand Up @@ -959,7 +958,6 @@ cc_test(
"//common/text:symbol",
"//common/util:logging",
"//verilog/analysis:verilog_analyzer",
"@com_google_absl//absl/memory",
"@com_google_absl//absl/strings",
"@com_google_googletest//:gtest_main",
"@jsoncpp_git//:jsoncpp",
Expand Down
10 changes: 8 additions & 2 deletions verilog/tools/syntax/export_json_examples/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ py_binary(
srcs_version = "PY3",
python_version = "PY3",
main = "print_modules.py",
deps = [":verible_verilog_syntax_py"],
deps = [
":verible_verilog_syntax_py",
"@python_anytree//:anytree",
],
data = ["//verilog/tools/syntax:verible-verilog-syntax"],
args = ["$(location //verilog/tools/syntax:verible-verilog-syntax)"],
)
Expand All @@ -43,7 +46,10 @@ py_binary(
srcs_version = "PY3",
python_version = "PY3",
main = "print_tree.py",
deps = [":verible_verilog_syntax_py"],
deps = [
":verible_verilog_syntax_py",
"@python_anytree//:anytree",
],
data = ["//verilog/tools/syntax:verible-verilog-syntax"],
args = ["$(location //verilog/tools/syntax:verible-verilog-syntax)"],
)

0 comments on commit c1a388a

Please sign in to comment.