BUILD 516 B

123456789101112131415
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. load("//bazel/cc_rules:defs.bzl", "cc_library")
  5. package(default_visibility = ["//visibility:public"])
  6. # Header for LibFuzzer, does not provide the implementation which should come
  7. # from some other source such as a fuzz test target.
  8. cc_library(
  9. name = "libfuzzer_header",
  10. testonly = 1,
  11. hdrs = ["libfuzzer.h"],
  12. )