fix order of statements in BUILD file to avoid internal breakage (#26758)

pull/26761/head
Mark D. Roth 4 years ago committed by GitHub
parent 246c57829b
commit b08b28bbfb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 26
      BUILD

26
BUILD

@ -14,12 +14,16 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
licenses(["notice"]) load(
"//bazel:grpc_build_system.bzl",
"grpc_cc_library",
"grpc_generate_one_off_targets",
"grpc_upb_proto_library",
"python_config_settings",
)
load("@bazel_skylib//lib:selects.bzl", "selects")
exports_files([ licenses(["notice"])
"LICENSE",
"etc/roots.pem",
])
package( package(
default_visibility = ["//visibility:public"], default_visibility = ["//visibility:public"],
@ -29,14 +33,10 @@ package(
], ],
) )
load( exports_files([
"//bazel:grpc_build_system.bzl", "LICENSE",
"grpc_cc_library", "etc/roots.pem",
"grpc_generate_one_off_targets", ])
"grpc_upb_proto_library",
"python_config_settings",
)
load("@bazel_skylib//lib:selects.bzl", "selects")
config_setting( config_setting(
name = "grpc_no_ares", name = "grpc_no_ares",

Loading…
Cancel
Save