forked from chipsalliance/verible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
70 lines (61 loc) · 1.9 KB
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
"""Tool for comparing Verilog source code.
"""
load("//bazel:sh_test_with_runfiles_lib.bzl", "sh_test_with_runfiles_lib")
licenses(["notice"])
cc_binary(
name = "verible-verilog-diff",
srcs = ["verilog_diff.cc"],
visibility = ["//visibility:public"],
deps = [
"//common/strings:obfuscator",
"//common/util:enum_flags",
"//common/util:file_util",
"//common/util:init_command_line",
"//common/util:logging",
"//verilog/analysis:verilog_equivalence",
"@com_google_absl//absl/flags:flag",
"@com_google_absl//absl/strings",
],
)
sh_test_with_runfiles_lib(
name = "diff_user_errors_test",
size = "small",
srcs = ["diff_user_errors_test.sh"],
args = ["$(location :verible-verilog-diff)"],
data = [":verible-verilog-diff"],
)
sh_test_with_runfiles_lib(
name = "diff_format_match_test",
size = "small",
srcs = ["diff_format_match_test.sh"],
args = ["$(location :verible-verilog-diff)"],
data = [":verible-verilog-diff"],
)
sh_test_with_runfiles_lib(
name = "diff_format_mismatch_test",
size = "small",
srcs = ["diff_format_mismatch_test.sh"],
args = ["$(location :verible-verilog-diff)"],
data = [":verible-verilog-diff"],
)
sh_test_with_runfiles_lib(
name = "diff_format_lex_error_test",
size = "small",
srcs = ["diff_format_lex_error_test.sh"],
args = ["$(location :verible-verilog-diff)"],
data = [":verible-verilog-diff"],
)
sh_test_with_runfiles_lib(
name = "diff_obfuscate_match_test",
size = "small",
srcs = ["diff_obfuscate_match_test.sh"],
args = ["$(location :verible-verilog-diff)"],
data = [":verible-verilog-diff"],
)
sh_test_with_runfiles_lib(
name = "diff_obfuscate_mismatch_test",
size = "small",
srcs = ["diff_obfuscate_mismatch_test.sh"],
args = ["$(location :verible-verilog-diff)"],
data = [":verible-verilog-diff"],
)