Skip to content

Commit 61015dd

Browse files
comiuscopybara-github
authored andcommitted
No public description
PiperOrigin-RevId: 802421915
1 parent 70d96c4 commit 61015dd

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

centipede/BUILD

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
# Centipede: an experimental distributed fuzzing engine.
1717

1818
load("@rules_proto//proto:defs.bzl", "proto_library")
19+
load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
20+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
21+
load("@rules_cc//cc:cc_test.bzl", "cc_test")
1922
load(":instrument.bzl", "cc_uninstrumented_binary")
2023

2124
VISIBILITY = ["//visibility:public"]

centipede/dso_example/BUILD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414

1515
# Build file for the dso_example
1616

17+
load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
18+
1719
# Shared library that we want to fuzz, built with (some) coverage instrumentation.
1820
# It has unresolved instrumentation symbol(s) which will be resolved dynamically.
1921
cc_binary(

centipede/testing/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_binary.bzl", "cc_binary")
16+
load("@rules_cc//cc:cc_library.bzl", "cc_library")
17+
load("@rules_cc//cc:cc_shared_library.bzl", "cc_shared_library")
1518
load(":build_defs.bzl", "centipede_fuzz_target")
1619

1720
package(default_visibility = [

0 commit comments

Comments
 (0)