Skip to content

Commit

Permalink
Merge pull request #1477 from hzeller/20220920-use-only-filelist-in-k…
Browse files Browse the repository at this point in the history
…zip-writer

Reduce dependencies kzip writer; fix name.
  • Loading branch information
hzeller authored Sep 21, 2022
2 parents f597b5c + 310bf73 commit 73fcce8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ filegroup(
"//verilog/tools/diff:verible-verilog-diff",
"//verilog/tools/formatter:verible-verilog-format",
"//verilog/tools/kythe:verible-verilog-kythe-extractor",
"//verilog/tools/kythe:verilog-kythe-kzip-writer",
"//verilog/tools/kythe:verible-verilog-kythe-kzip-writer",
"//verilog/tools/lint:verible-verilog-lint",
"//verilog/tools/ls:verible-verilog-ls",
"//verilog/tools/obfuscator:verible-verilog-obfuscate",
Expand Down
4 changes: 2 additions & 2 deletions verilog/tools/kythe/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ cc_library(
)

cc_binary(
name = "verilog-kythe-kzip-writer",
name = "verible-verilog-kythe-kzip-writer",
srcs = [
"verilog_kythe_kzip_writer.cc",
],
Expand All @@ -289,7 +289,7 @@ cc_binary(
"//common/util:init_command_line",
"//common/util:logging",
"//third_party/proto/kythe:analysis_cc_proto",
"//verilog/analysis:verilog_project",
"//verilog/analysis:verilog_filelist",
"@com_google_absl//absl/flags:flag",
"@com_google_absl//absl/strings",
],
Expand Down
2 changes: 1 addition & 1 deletion verilog/tools/kythe/verilog_kythe_kzip_writer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include "common/util/init_command_line.h"
#include "common/util/logging.h"
#include "third_party/proto/kythe/analysis.pb.h"
#include "verilog/analysis/verilog_project.h"
#include "verilog/analysis/verilog_filelist.h"
#include "verilog/tools/kythe/kzip_creator.h"

ABSL_FLAG(std::string, filelist_path, "",
Expand Down

0 comments on commit 73fcce8

Please sign in to comment.