From 81dfb2b29b115df27f22cd7e8564d40c360d4e22 Mon Sep 17 00:00:00 2001 From: Jon Ross-Perkins Date: Thu, 9 Jan 2025 17:28:12 -0800 Subject: [PATCH] Remove the libprotobuf_mutator BUILD (#4782) Missed in #4731, noticed while looking at removing woff2 --- third_party/libprotobuf_mutator/BUILD.txt | 26 ----------------------- 1 file changed, 26 deletions(-) delete mode 100644 third_party/libprotobuf_mutator/BUILD.txt diff --git a/third_party/libprotobuf_mutator/BUILD.txt b/third_party/libprotobuf_mutator/BUILD.txt deleted file mode 100644 index befd047d1948..000000000000 --- a/third_party/libprotobuf_mutator/BUILD.txt +++ /dev/null @@ -1,26 +0,0 @@ -# Part of the Carbon Language project, under the Apache License v2.0 with LLVM -# Exceptions. See /LICENSE for license information. -# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception - -# libprotobuf_mutator uses cmake and doesn't provide a bazel BUILD file. -# See https://github.com/google/libprotobuf-mutator/issues/91. - -load("@rules_cc//cc:defs.bzl", "cc_library") - -exports_files(["LICENSE"]) - -cc_library( - name = "libprotobuf_mutator", - srcs = glob( - [ - "src/**/*.cc", - "src/**/*.h", - "port/protobuf.h", - ], - exclude = ["**/*_test.cc"], - ), - hdrs = ["src/libfuzzer/libfuzzer_macro.h"], - strip_include_prefix = "src", - visibility = ["//visibility:public"], - deps = ["@protobuf"], -)