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
# 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([
"LICENSE",
"etc/roots.pem",
])
licenses(["notice"])
package(
default_visibility = ["//visibility:public"],
@ -29,14 +33,10 @@ package(
],
)
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([
"LICENSE",
"etc/roots.pem",
])
config_setting(
name = "grpc_no_ares",

Loading…
Cancel
Save