Cleanup unused load statements.

PiperOrigin-RevId: 288791479
Change-Id: Ib68dc2bfa2856d839a47e7430d565da766df12ad
This commit is contained in:
Mihai Maruseac 2020-01-08 15:50:38 -08:00 committed by TensorFlower Gardener
parent d3c801ffda
commit 31b0483fdf
6 changed files with 11 additions and 1 deletions

View File

@ -4,6 +4,8 @@
load(
"//tensorflow:tensorflow.bzl",
"if_android",
"if_ios",
"if_mobile",
"if_not_mobile",
"tf_cc_test",
)

View File

@ -4,6 +4,10 @@ load(
"//tensorflow/core/platform:build_config.bzl",
"tf_proto_library_cc",
)
load(
"//tensorflow/compiler/xla:xla.bzl",
"xla_py_grpc_library",
)
package(
default_visibility = ["//tensorflow:internal"],

View File

@ -70,6 +70,7 @@ load(
"if_chromiumos",
"if_emscripten",
"if_ios",
"if_mobile",
"if_not_windows",
"tf_android_core_proto_headers",
"tf_android_core_proto_sources",
@ -78,6 +79,7 @@ load(
"tf_cc_tests",
"tf_copts",
"tf_cuda_library",
"tf_features_nomodules_if_android",
"tf_features_nomodules_if_emscripten",
"tf_gen_op_libs",
"tf_genrule_cmd_append_to_srcs",

View File

@ -14,6 +14,7 @@ load(
"tf_cuda_library",
"tf_kernel_library",
"tf_mkl_kernel_library",
"tf_opts_nortti_if_android",
)
load("@local_config_sycl//sycl:build_defs.bzl", "if_sycl")
load("//tensorflow:tensorflow.bzl", "if_nccl")

View File

@ -3,7 +3,7 @@ load(
"tf_additional_all_protos",
"tf_proto_library",
"tf_proto_library_cc",
"tf_proto_library_py",
"tf_proto_library_py", # @unused
"tf_pyclif_proto_library",
)

View File

@ -5,6 +5,7 @@ load("@build_bazel_rules_android//android:rules.bzl", "android_library")
load(
"//tensorflow:tensorflow.bzl",
"if_android",
"tf_cc_binary", # @unused
"tf_copts",
)