Skip to content

Commit 08aeb02

Browse files
CEL Dev Teamcopybara-github
authored andcommitted
No public description
PiperOrigin-RevId: 781938718
1 parent 9449a1f commit 08aeb02

File tree

35 files changed

+92
-2
lines changed

35 files changed

+92
-2
lines changed

base/BUILD

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

15+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
16+
load("@rules_cc//cc:cc_test.bzl", "cc_test")
17+
1518
package(
1619
# Under active development, not yet being released.
1720
default_visibility = ["//visibility:public"],

base/internal/BUILD

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

15+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
16+
1517
package(default_visibility = ["//visibility:public"])
1618

1719
licenses(["notice"])

bazel/BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
12
load("@rules_java//java:defs.bzl", "java_binary")
23

34
java_binary(

bazel/antlr.bzl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
Generate C++ parser and lexer from a grammar file.
1717
"""
1818

19+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
20+
1921
def antlr_cc_library(name, src, package):
2022
"""Creates a C++ lexer and parser from a source grammar.
2123
Args:
@@ -29,7 +31,7 @@ def antlr_cc_library(name, src, package):
2931
src = src,
3032
package = package,
3133
)
32-
native.cc_library(
34+
cc_library(
3335
name = name + "_cc_parser",
3436
srcs = [generated],
3537
deps = [

checker/BUILD

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
2+
load("@rules_cc//cc:cc_test.bzl", "cc_test")
3+
14
# Copyright 2024 Google LLC
25
#
36
# Licensed under the Apache License, Version 2.0 (the "License");

checker/internal/BUILD

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

15+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
16+
load("@rules_cc//cc:cc_test.bzl", "cc_test")
17+
1518
package(
1619
# Implementation details for the checker library.
1720
default_visibility = ["//visibility:public"],

codelab/BUILD

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

15+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
16+
load("@rules_cc//cc:cc_test.bzl", "cc_test")
17+
1518
licenses(["notice"])
1619

1720
package(default_visibility = ["//visibility:public"])

codelab/solutions/BUILD

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

15+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
16+
load("@rules_cc//cc:cc_test.bzl", "cc_test")
17+
1518
package(default_visibility = ["//visibility:public"])
1619

1720
licenses(["notice"])

common/BUILD

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

15+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
16+
load("@rules_cc//cc:cc_test.bzl", "cc_test")
17+
1518
package(default_visibility = ["//visibility:public"])
1619

1720
licenses(["notice"])

common/ast/BUILD

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
2+
load("@rules_cc//cc:cc_test.bzl", "cc_test")
3+
14
# Copyright 2025 Google LLC
25
#
36
# Licensed under the Apache License, Version 2.0 (the "License");

0 commit comments

Comments
 (0)