Skip to content

Commit 18dd270

Browse files
Abseil Teamcopybara-github
authored andcommitted
Adds required load statements for C++ rules to BUILD and bzl files.
PiperOrigin-RevId: 786301329 Change-Id: I342de39e40e90c82501baac9858291b7c4d5c2d0
1 parent 64a9eaf commit 18dd270

5 files changed

Lines changed: 12 additions & 0 deletions

File tree

absl/strings/BUILD.bazel

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16+
load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
17+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
18+
load("@rules_cc//cc:cc_test.bzl", "cc_test")
1619
load(
1720
"//absl:copts/configure_copts.bzl",
1821
"ABSL_DEFAULT_COPTS",

absl/synchronization/BUILD.bazel

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
# limitations under the License.
1515
#
1616

17+
load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
18+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
19+
load("@rules_cc//cc:cc_test.bzl", "cc_test")
1720
load(
1821
"//absl:copts/configure_copts.bzl",
1922
"ABSL_DEFAULT_COPTS",

absl/time/BUILD.bazel

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
# limitations under the License.
1515
#
1616

17+
load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
18+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
19+
load("@rules_cc//cc:cc_test.bzl", "cc_test")
1720
load(
1821
"//absl:copts/configure_copts.bzl",
1922
"ABSL_DEFAULT_COPTS",

absl/types/BUILD.bazel

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
17+
load("@rules_cc//cc:cc_test.bzl", "cc_test")
1618
load(
1719
"//absl:copts/configure_copts.bzl",
1820
"ABSL_DEFAULT_COPTS",

absl/utility/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# limitations under the License.
1515
#
1616

17+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
1718
load(
1819
"//absl:copts/configure_copts.bzl",
1920
"ABSL_DEFAULT_COPTS",

0 commit comments

Comments
 (0)