Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
248 B
12 lines
248 B
3 years ago
|
|
||
|
load("@rules_fuzzing//fuzzing:cc_defs.bzl", "cc_fuzz_test")
|
||
|
|
||
|
cc_fuzz_test(
|
||
|
name = "file_descriptor_parsenew_fuzzer",
|
||
|
srcs = ["file_descriptor_parsenew_fuzzer.cc"],
|
||
|
deps = [
|
||
|
"//:descriptor_upb_proto",
|
||
|
"//:upb",
|
||
|
],
|
||
|
)
|