BUILD.txt 740 B

123456789101112131415161718192021222324
  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. # libprotobuf_mutator uses cmake and doesn't provide a bazel BUILD file.
  5. # See https://github.com/google/libprotobuf-mutator/issues/91.
  6. exports_files(["LICENSE"])
  7. cc_library(
  8. name = "libprotobuf_mutator",
  9. srcs = glob(
  10. [
  11. "src/**/*.cc",
  12. "src/**/*.h",
  13. "port/protobuf.h",
  14. ],
  15. exclude = ["**/*_test.cc"],
  16. ),
  17. hdrs = ["src/libfuzzer/libfuzzer_macro.h"],
  18. strip_include_prefix = "src",
  19. visibility = ["//visibility:public"],
  20. deps = ["@com_google_protobuf//:protobuf"],
  21. )