From f3b552f51fbb583875c8859df7c4c7c5d902871a Mon Sep 17 00:00:00 2001 From: Greg Estren Date: Fri, 10 Aug 2018 16:50:41 -0400 Subject: [PATCH] build(bazel): remove outdated "cfg = "data"" references (#25434) PR Close #25434 PR Close #25434 --- packages/bazel/src/protractor/protractor_web_test.bzl | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/packages/bazel/src/protractor/protractor_web_test.bzl b/packages/bazel/src/protractor/protractor_web_test.bzl index f3faee8547..55f60a872e 100644 --- a/packages/bazel/src/protractor/protractor_web_test.bzl +++ b/packages/bazel/src/protractor/protractor_web_test.bzl @@ -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, ),