Skip to content

Commit

Permalink
Trim the first colons in srcs for static files.
Browse files Browse the repository at this point in the history
* It clarifies if the target is a static file or a generated file.

#codehealth

PiperOrigin-RevId: 672479140
  • Loading branch information
hiroyuki-komatsu committed Sep 9, 2024
1 parent 504b6c2 commit abd1927
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/data/dictionary_oss/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,16 @@ exports_files([
filegroup(
name = "base_dictionary_data",
srcs = [
":dictionary00.txt",
":dictionary01.txt",
":dictionary02.txt",
":dictionary03.txt",
":dictionary04.txt",
":dictionary05.txt",
":dictionary06.txt",
":dictionary07.txt",
":dictionary08.txt",
":dictionary09.txt",
"dictionary00.txt",
"dictionary01.txt",
"dictionary02.txt",
"dictionary03.txt",
"dictionary04.txt",
"dictionary05.txt",
"dictionary06.txt",
"dictionary07.txt",
"dictionary08.txt",
"dictionary09.txt",
"//dictionary:zip_code_data",
],
visibility = ["//visibility:private"],
Expand All @@ -82,9 +82,9 @@ filegroup(
genrule(
name = "aux_dictionary",
srcs = [
":aux_dictionary.tsv",
"aux_dictionary.tsv",
"id.def",
":base_dictionary_data",
":id.def",
"//data/dictionary_manual",
],
outs = ["aux_dictionary.txt"],
Expand All @@ -102,8 +102,8 @@ genrule(
genrule(
name = "filtered_dictionary",
srcs = [
"dictionary_filter.tsv",
":base_dictionary_data",
":dictionary_filter.tsv",
],
outs = ["dictionary.txt"],
cmd = """
Expand Down

0 comments on commit abd1927

Please sign in to comment.