build(bazel): remove outdated "cfg = "data"" references (#25434)

PR Close #25434

PR Close #25434
This commit is contained in:
Greg Estren 2018-08-10 16:50:41 -04:00 committed by Igor Minar
parent c5b594e351
commit f3b552f51f
1 changed files with 2 additions and 5 deletions

View File

@ -128,7 +128,6 @@ _protractor_web_test = rule(
"configuration": attr.label(
doc = "Protractor configuration file",
allow_single_file = True,
cfg = "data",
aspects = [sources_aspect],
),
"srcs": attr.label_list(
@ -140,7 +139,6 @@ _protractor_web_test = rule(
If the script exports a function which returns a promise, protractor
will wait for the promise to resolve before beginning tests.""",
allow_single_file = True,
cfg = "data",
aspects = [sources_aspect],
),
"deps": attr.label_list(
@ -150,19 +148,18 @@ _protractor_web_test = rule(
),
"data": attr.label_list(
doc = "Runtime dependencies",
cfg = "data",
),
"server": attr.label(
doc = "Optional server executable target",
executable = True,
cfg = "data",
cfg = "target",
single_file = False,
allow_files = True,
),
"protractor": attr.label(
doc = "Protractor executable target (set by protractor_web_test macro)",
executable = True,
cfg = "data",
cfg = "target",
single_file = False,
allow_files = True,
),