Skip to content

Commit 6b56c65

Browse files
No public description
PiperOrigin-RevId: 782262071
1 parent 105720d commit 6b56c65

File tree

8 files changed

+15
-0
lines changed

8 files changed

+15
-0
lines changed

tensorflow_text/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Placeholder: load py_library
22
# Placeholder: load py_test
33
load("@org_tensorflow//tensorflow/lite:build_def.bzl", "tflite_cc_shared_object")
4+
load("//third_party/bazel_rules/rules_cc/cc:cc_library.bzl", "cc_library")
45
load("//tensorflow_text:tftext.bzl", "extra_py_deps", "py_tf_text_library")
56
# [internal] load build_test.bzl
67

tensorflow_text/core/kernels/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
"""Kernels for tf.text ops."""
22

33
load("@flatbuffers//:build_defs.bzl", "flatbuffer_cc_library")
4+
load("//third_party/bazel_rules/rules_cc/cc:cc_library.bzl", "cc_library")
5+
load("//third_party/bazel_rules/rules_cc/cc:cc_test.bzl", "cc_test")
46

57
# Placeholder: load proto_library
68
load("//tensorflow_text:tftext.bzl", "tf_cc_library", "tflite_cc_library")

tensorflow_text/core/kernels/sentencepiece/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
#
33

44
load("@flatbuffers//:build_defs.bzl", "flatbuffer_cc_library")
5+
load("//third_party/bazel_rules/rules_cc/cc:cc_library.bzl", "cc_library")
6+
load("//third_party/bazel_rules/rules_cc/cc:cc_test.bzl", "cc_test")
57
load("//tensorflow_text:tftext.bzl", "tf_cc_library", "tflite_cc_library")
68

79
licenses(["notice"])

tensorflow_text/core/ops/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Tests for op kernel shape functions
22

3+
load("//third_party/bazel_rules/rules_cc/cc:cc_test.bzl", "cc_test")
4+
35
licenses(["notice"])
46

57
package(default_visibility = ["//visibility:private"])

third_party/darts_clone/BUILD.bzl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""Darts-clone is a clone of Darts (Double-ARray Trie System)."""
22

3+
load("//third_party/bazel_rules/rules_cc/cc:cc_library.bzl", "cc_library")
4+
35
package(default_visibility = ["//visibility:public"])
46

57
licenses(["notice"])

third_party/icu/BUILD.bzl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""Builds ICU library."""
22

3+
load("//third_party/bazel_rules/rules_cc/cc:cc_library.bzl", "cc_library")
4+
35
package(
46
default_visibility = ["//visibility:public"],
57
)

third_party/icu/data/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""ICU data build."""
22

3+
load("//third_party/bazel_rules/rules_cc/cc:cc_library.bzl", "cc_library")
4+
35
licenses(["notice"]) # Apache 2.0
46

57
package(

third_party/pybind11/BUILD.bzl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
BUILD file for pybind11 package, since the github version does not have one.
33
"""
44

5+
load("//third_party/bazel_rules/rules_cc/cc:cc_library.bzl", "cc_library")
6+
57
package(default_visibility = ["//visibility:public"])
68

79
cc_library(

0 commit comments

Comments
 (0)