Adjust structure of all BUILD files to recommended style (https://docs.bazel.build/versions/master/skylark/build-style.html#file-structure), moving loads to top.

PiperOrigin-RevId: 252864967
This commit is contained in:
A. Unique TensorFlower 2019-06-12 11:31:14 -07:00 committed by TensorFlower Gardener
parent aedf674e90
commit a0e2b971b0
23 changed files with 70 additions and 87 deletions

View File

@ -1,3 +1,7 @@
load("//tensorflow:tensorflow.bzl", "tf_cc_test", "cc_header_only_library")
load("@local_config_cuda//cuda:build_defs.bzl", "if_cuda")
load("//tensorflow:tensorflow.bzl", "tf_custom_op_py_library")
package(
default_visibility = [
":internal",
@ -22,10 +26,6 @@ package_group(
],
)
load("//tensorflow:tensorflow.bzl", "tf_cc_test", "cc_header_only_library")
load("@local_config_cuda//cuda:build_defs.bzl", "if_cuda")
load("//tensorflow:tensorflow.bzl", "tf_custom_op_py_library")
# Target that bundles up the XLA CPU and GPU JIT devices.
cc_library(
name = "jit",

View File

@ -1,10 +1,10 @@
load("//tensorflow:tensorflow.bzl", "tf_gen_op_wrapper_py")
package(
default_visibility = ["//tensorflow/compiler/tf2xla:internal"],
licenses = ["notice"], # Apache 2.0
)
load("//tensorflow:tensorflow.bzl", "tf_gen_op_wrapper_py")
cc_library(
name = "xla_ops",
srcs = ["xla_ops.cc"],

View File

@ -1,3 +1,9 @@
load("//tensorflow:tensorflow.bzl", "tf_cc_test", "tf_cuda_cc_test")
load(
"//tensorflow/core:platform/default/build_config_root.bzl",
"tf_cuda_tests_tags",
)
package(
default_visibility = [
"//learning/brain:__subpackages__",
@ -6,12 +12,6 @@ package(
licenses = ["notice"], # Apache 2.0
)
load("//tensorflow:tensorflow.bzl", "tf_cc_test", "tf_cuda_cc_test")
load(
"//tensorflow/core:platform/default/build_config_root.bzl",
"tf_cuda_tests_tags",
)
cc_library(
name = "raw_api_test_lib",
testonly = 1,

View File

@ -12,11 +12,6 @@
# a watch state.
# ":debug_node_key" - Defines a struct used for tracking tensors.
package(
default_visibility = ["//tensorflow:internal"],
licenses = ["notice"], # Apache 2.0
)
load(
"//tensorflow:tensorflow.bzl",
"check_deps",
@ -31,11 +26,11 @@ load(
"tf_additional_all_protos",
"tf_kernel_tests_linkstatic",
"tf_proto_library",
"tf_proto_library_cc",
)
load(
"//tensorflow/core:platform/default/build_config_root.bzl",
"tf_cuda_tests_tags",
package(
default_visibility = ["//tensorflow:internal"],
licenses = ["notice"], # Apache 2.0
)
# Check that tensorflow/core:tensorflow does not depend on grpc.

View File

@ -1,14 +1,6 @@
# Description:
# OpKernels for boosted trees ops.
package(
default_visibility = [
"//tensorflow:__subpackages__",
"//tensorflow:internal",
],
licenses = ["notice"], # Apache 2.0
)
load(
"//tensorflow:tensorflow.bzl",
"tf_cc_test",
@ -19,6 +11,14 @@ load(
"tf_proto_library",
)
package(
default_visibility = [
"//tensorflow:__subpackages__",
"//tensorflow:internal",
],
licenses = ["notice"], # Apache 2.0
)
tf_proto_library(
name = "boosted_trees_proto",
srcs = [

View File

@ -1,13 +1,11 @@
load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
load("//tensorflow/core:platform/default/build_config.bzl", "tf_proto_library", "tf_additional_all_protos", "tf_profiler_all_protos")
package(
default_visibility = ["//visibility:public"],
licenses = ["notice"], # Apache 2.0
)
load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
load("//tensorflow/core:platform/default/build_config.bzl", "tf_proto_library")
load("//tensorflow/core:platform/default/build_config.bzl", "tf_additional_all_protos")
load("//tensorflow/core:platform/default/build_config.bzl", "tf_profiler_all_protos")
tf_cc_binary(
name = "profiler",
srcs = ["profiler.cc"],

View File

@ -1,10 +1,10 @@
load("//tensorflow:tensorflow.bzl", "tf_cuda_library")
package(
default_visibility = ["//visibility:public"],
licenses = ["notice"], # Apache 2.0
)
load("//tensorflow:tensorflow.bzl", "tf_cuda_library")
tf_cuda_library(
name = "profiler_service_impl",
srcs = ["profiler_service_impl.cc"],

View File

@ -1,9 +1,3 @@
package(
licenses = ["notice"], # Apache 2.0
)
exports_files(["LICENSE"])
load(
"//tensorflow/core:platform/default/build_config.bzl",
"tf_additional_all_protos",
@ -11,6 +5,12 @@ load(
"tf_proto_library_py",
)
package(
licenses = ["notice"], # Apache 2.0
)
exports_files(["LICENSE"])
tf_proto_library(
name = "tpu_embedding_configuration_proto",
srcs = [

View File

@ -1,6 +1,8 @@
# Description:
# TensorFlow C++ inference example for labeling images.
load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
package(
default_visibility = ["//tensorflow:internal"],
licenses = ["notice"], # Apache 2.0
@ -10,8 +12,6 @@ exports_files(["LICENSE"])
exports_files(["data/grace_hopper.jpg"])
load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
tf_cc_binary(
name = "label_image",
srcs = [

View File

@ -1,3 +1,5 @@
load("//tensorflow:tensorflow.bzl", "tf_cc_binary", "tf_cc_test", "tf_py_test")
package(
default_visibility = [
"//visibility:public",
@ -9,10 +11,6 @@ exports_files([
"LICENSE",
])
load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
load("//tensorflow:tensorflow.bzl", "tf_cc_test")
load("//tensorflow:tensorflow.bzl", "tf_py_test")
py_library(
name = "models",
srcs = [

View File

@ -1,6 +1,8 @@
# Description:
# TensorFlow C++ inference example for labeling images.
load("//tensorflow:tensorflow.bzl", "tf_cc_binary", "tf_cc_test")
package(
default_visibility = ["//tensorflow:internal"],
licenses = ["notice"], # Apache 2.0
@ -8,9 +10,6 @@ package(
exports_files(["LICENSE"])
load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
load("//tensorflow:tensorflow.bzl", "tf_cc_test")
cc_library(
name = "wav_to_spectrogram_lib",
srcs = ["wav_to_spectrogram.cc"],

View File

@ -1,10 +1,10 @@
load("//tensorflow/lite:special_rules.bzl", "tflite_portable_test_suite")
package(
default_visibility = ["//visibility:public"],
licenses = ["notice"], # Apache 2.0
)
load("//tensorflow/lite:special_rules.bzl", "tflite_portable_test_suite")
cc_library(
name = "add",
srcs = ["add.cc"],

View File

@ -1,13 +1,13 @@
# Description:
# TensorFlow Lite minimal example.
load("//tensorflow/lite:build_def.bzl", "tflite_linkopts")
package(
default_visibility = ["//visibility:public"],
licenses = ["notice"], # Apache 2.0
)
load("//tensorflow/lite:build_def.bzl", "tflite_linkopts")
cc_binary(
name = "minimal",
srcs = [

View File

@ -1,14 +1,14 @@
# TensorFlow Lite for Swift
load("//tensorflow/lite/experimental/ios:ios.bzl", "TFL_DEFAULT_TAGS", "TFL_DISABLED_SANITIZER_TAGS", "TFL_MINIMUM_OS_VERSION")
load("@build_bazel_rules_apple//apple:ios.bzl", "ios_application", "ios_unit_test")
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
package(
default_visibility = ["//visibility:private"],
licenses = ["notice"], # Apache 2.0
)
load("//tensorflow/lite/experimental/ios:ios.bzl", "TFL_DEFAULT_TAGS", "TFL_DISABLED_SANITIZER_TAGS", "TFL_MINIMUM_OS_VERSION")
load("@build_bazel_rules_apple//apple:ios.bzl", "ios_application", "ios_unit_test")
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
swift_library(
name = "TensorFlowLite",
srcs = glob(["Sources/*.swift"]),

View File

@ -1,10 +1,10 @@
load("//tensorflow:tensorflow.bzl", "tf_py_wrap_cc")
package(
default_visibility = ["//visibility:public"],
licenses = ["notice"], # Apache 2.0
)
load("//tensorflow:tensorflow.bzl", "tf_py_wrap_cc")
cc_library(
name = "calibration_wrapper_lib",
srcs = ["calibration_wrapper.cc"],

View File

@ -13,13 +13,13 @@
# limitations under the License.
# ==============================================================================
load("//tensorflow/lite:build_def.bzl", "tflite_copts", "tflite_linkopts")
package(
default_visibility = ["//visibility:public"],
licenses = ["notice"], # Apache 2.0
)
load("//tensorflow/lite:build_def.bzl", "tflite_copts", "tflite_linkopts")
exports_files(glob([
"testdata/**",
]))

View File

@ -1,11 +1,11 @@
load("//tensorflow:tensorflow.bzl", "tf_py_test")
package(
licenses = ["notice"], # Apache 2.0
)
exports_files(["LICENSE"])
load("//tensorflow:tensorflow.bzl", "tf_py_test")
py_library(
name = "v2_compat",
srcs = ["v2_compat.py"],

View File

@ -1,13 +1,13 @@
# Description:
# Python APIs for various Tensorflow backends.
load("//tensorflow:tensorflow.bzl", "if_not_windows")
package(
default_visibility = ["//visibility:public"],
licenses = ["notice"], # Apache 2.0
)
load("//tensorflow:tensorflow.bzl", "if_not_windows")
exports_files(["LICENSE"])
py_library(

View File

@ -8,6 +8,9 @@
# For a user interface walkthrough, see https://www.tensorflow.org/guide/debugger
# ":grpc_debug_server": Server interface for grpc:// debug URLs.
load("//tensorflow:tensorflow.bzl", "cuda_py_test")
load("//tensorflow:tensorflow.bzl", "py_test", "py_binary", "if_not_v2", "if_not_windows")
package(
default_visibility = ["//tensorflow:internal"],
licenses = ["notice"], # Apache 2.0
@ -15,12 +18,6 @@ package(
exports_files(["LICENSE"])
load("//tensorflow:tensorflow.bzl", "cuda_py_test")
load("//tensorflow:tensorflow.bzl", "py_test")
load("//tensorflow:tensorflow.bzl", "py_binary")
load("//tensorflow:tensorflow.bzl", "if_not_v2")
load("//tensorflow:tensorflow.bzl", "if_not_windows")
py_library(
name = "debug_py",
srcs = ["__init__.py"],

View File

@ -1,14 +1,13 @@
# Tests of TensorFlow kernels written using the Python API.
load("//tensorflow:tensorflow.bzl", "tf_py_test")
load("//tensorflow:tensorflow.bzl", "cuda_py_test")
package(
default_visibility = ["//tensorflow:internal"],
licenses = ["notice"], # Apache 2.0
)
load("//tensorflow:tensorflow.bzl", "tf_py_test")
load("//tensorflow:tensorflow.bzl", "cuda_py_test")
load("//tensorflow:tensorflow.bzl", "sycl_py_test")
# CPU only tests should use tf_py_test, GPU tests use cuda_py_test
# Please avoid the py_tests and cuda_py_tests (plural) while we
# fix the shared/overbroad dependencies.

View File

@ -1,10 +1,10 @@
load("//tensorflow:tensorflow.bzl", "tf_py_test")
package(
default_visibility = ["//tensorflow:internal"],
licenses = ["notice"], # Apache 2.0
)
load("//tensorflow:tensorflow.bzl", "tf_py_test")
exports_files(["LICENSE"])
py_library(

View File

@ -3,8 +3,6 @@ package(
licenses = ["notice"], # Apache 2.0
)
load("//tensorflow:tensorflow.bzl", "py_test")
py_library(
name = "distributions",
srcs = glob(

View File

@ -1,17 +1,16 @@
# Description:
# Tools for testing
package(
default_visibility = ["//tensorflow:internal"],
licenses = ["notice"], # Apache 2.0
)
load(
"//tensorflow/tools/test:performance.bzl",
"tf_cc_logged_benchmark",
"tf_py_logged_benchmark",
)
load("//tensorflow:tensorflow.bzl", "py_test")
package(
default_visibility = ["//tensorflow:internal"],
licenses = ["notice"], # Apache 2.0
)
exports_files(["LICENSE"])