build(bazel): remove outdated "cfg = "data"" references (#25434)
PR Close #25434 PR Close #25434
This commit is contained in:
parent
c5b594e351
commit
f3b552f51f
|
@ -128,7 +128,6 @@ _protractor_web_test = rule(
|
||||||
"configuration": attr.label(
|
"configuration": attr.label(
|
||||||
doc = "Protractor configuration file",
|
doc = "Protractor configuration file",
|
||||||
allow_single_file = True,
|
allow_single_file = True,
|
||||||
cfg = "data",
|
|
||||||
aspects = [sources_aspect],
|
aspects = [sources_aspect],
|
||||||
),
|
),
|
||||||
"srcs": attr.label_list(
|
"srcs": attr.label_list(
|
||||||
|
@ -140,7 +139,6 @@ _protractor_web_test = rule(
|
||||||
If the script exports a function which returns a promise, protractor
|
If the script exports a function which returns a promise, protractor
|
||||||
will wait for the promise to resolve before beginning tests.""",
|
will wait for the promise to resolve before beginning tests.""",
|
||||||
allow_single_file = True,
|
allow_single_file = True,
|
||||||
cfg = "data",
|
|
||||||
aspects = [sources_aspect],
|
aspects = [sources_aspect],
|
||||||
),
|
),
|
||||||
"deps": attr.label_list(
|
"deps": attr.label_list(
|
||||||
|
@ -150,19 +148,18 @@ _protractor_web_test = rule(
|
||||||
),
|
),
|
||||||
"data": attr.label_list(
|
"data": attr.label_list(
|
||||||
doc = "Runtime dependencies",
|
doc = "Runtime dependencies",
|
||||||
cfg = "data",
|
|
||||||
),
|
),
|
||||||
"server": attr.label(
|
"server": attr.label(
|
||||||
doc = "Optional server executable target",
|
doc = "Optional server executable target",
|
||||||
executable = True,
|
executable = True,
|
||||||
cfg = "data",
|
cfg = "target",
|
||||||
single_file = False,
|
single_file = False,
|
||||||
allow_files = True,
|
allow_files = True,
|
||||||
),
|
),
|
||||||
"protractor": attr.label(
|
"protractor": attr.label(
|
||||||
doc = "Protractor executable target (set by protractor_web_test macro)",
|
doc = "Protractor executable target (set by protractor_web_test macro)",
|
||||||
executable = True,
|
executable = True,
|
||||||
cfg = "data",
|
cfg = "target",
|
||||||
single_file = False,
|
single_file = False,
|
||||||
allow_files = True,
|
allow_files = True,
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in New Issue