blob: ae73d0baf92c6b1251866c20c4cb67eca985e4b6 [file] [log] [blame]
#Simple Bazel build file that will be replaced with the actual fuzz target rule functionality.
load("@rules_cc//cc:defs.bzl", "cc_binary")
cc_binary(
name = "hello_world",
srcs = ["hello_world.cc"],
)
cc_test(
name = "dummy_test",
srcs = ["dummy_test.cc"],
)