summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2021-04-02 10:17:39 -0700
committerElliott Hughes <enh@google.com>2021-04-02 10:17:39 -0700
commitfe73f48d70acf72028e102dc08e620d9078901fc (patch)
tree10912ef2de7a0d93f491f9107641933712b00482
parenteda17dc0896f564f579a8c57f6b7240755fa9e92 (diff)
downloadhonggfuzz-fe73f48d70acf72028e102dc08e620d9078901fc.tar.gz
Stop building honggfuzz.
As far as I can tell, this is now unused. Everyone's switched to libFuzzer instead. Bug: http://b/184301511 Test: treehugger Change-Id: I24fef6aa44aeaa65add2d080abf90fe1d0eff951
-rw-r--r--Android.bp84
-rw-r--r--third_party/android/libBlocksRuntime/Android.bp26
2 files changed, 0 insertions, 110 deletions
diff --git a/Android.bp b/Android.bp
deleted file mode 100644
index d8f08aff..00000000
--- a/Android.bp
+++ /dev/null
@@ -1,84 +0,0 @@
-
-// *** THIS PACKAGE HAS SPECIAL LICENSING CONDITIONS. PLEASE
-// CONSULT THE OWNERS AND opensource-licensing@google.com BEFORE
-// DEPENDING ON IT IN YOUR PROJECT. ***
-package {
- default_applicable_licenses: ["external_honggfuzz_license"],
-}
-
-// Added automatically by a large-scale-change that took the approach of
-// 'apply every license found to every target'. While this makes sure we respect
-// every license restriction, it may not be entirely correct.
-//
-// e.g. GPL in an MIT project might only apply to the contrib/ directory.
-//
-// Please consider splitting the single license below into multiple licenses,
-// taking care not to lose any license_kind information, and overriding the
-// default license using the 'licenses: [...]' property on targets as needed.
-//
-// For unused files, consider creating a 'fileGroup' with "//visibility:private"
-// to attach the license to, and including a comment whether the files may be
-// used in the current project.
-// See: http://go/android-license-faq
-license {
- name: "external_honggfuzz_license",
- visibility: [":__subpackages__"],
- license_kinds: [
- "SPDX-license-identifier-Apache-2.0",
- "SPDX-license-identifier-MIT",
- "legacy_by_exception_only", // by exception only
- ],
- license_text: [
- "COPYING",
- ],
-}
-
-subdirs = [
- "third_party/android/libBlocksRuntime",
-]
-
-cc_defaults {
- name: "honggfuzz-defaults",
- cflags: [
- "-D_GNU_SOURCE",
- "-fblocks",
- "-Wall",
- "-Wno-initializer-overrides",
- "-Werror",
- "-D__HF_USES_CAPSTONE__",
- "-D_HF_ARCH_LINUX",
- ],
- c_std: "c11",
- clang: true,
-}
-
-cc_binary {
- name: "honggfuzz",
- defaults: ["honggfuzz-defaults"],
-
- arch: {
- x86: {
- cflags: [
- // Suppress this performance warning for 32-bit x86.
- "-Wno-atomic-alignment",
- ],
- },
- },
-
- whole_static_libs: [
- "libcapstone",
- "libBlocksRuntime", // -fblocks
-
- "libunwind_static",
- "liblzma", // needed for libunwind
- ],
-
- srcs: [
- "*.c",
- "libhfcommon/*.c",
- "linux/*.c",
- ],
- exclude_srcs: [
- "linux/bfd.c",
- ],
-}
diff --git a/third_party/android/libBlocksRuntime/Android.bp b/third_party/android/libBlocksRuntime/Android.bp
deleted file mode 100644
index 23965532..00000000
--- a/third_party/android/libBlocksRuntime/Android.bp
+++ /dev/null
@@ -1,26 +0,0 @@
-package {
- // See: http://go/android-license-faq
- // A large-scale-change added 'default_applicable_licenses' to import
- // all of the 'license_kinds' from "external_honggfuzz_license"
- // to get the below license kinds:
- // SPDX-license-identifier-MIT
- default_applicable_licenses: ["external_honggfuzz_license"],
-}
-
-cc_library {
- name: "libBlocksRuntime",
- cflags: [
- "-Wall",
- "-Wextra",
- "-Werror",
- "-Wno-unused-parameter",
- "-Wno-unused-function",
- "-DHAVE_SYNC_BOOL_COMPARE_AND_SWAP_INT",
- "-DHAVE_SYNC_BOOL_COMPARE_AND_SWAP_LONG",
- ],
- c_std: "c11",
- clang:true,
- srcs: [
- "*.c",
- ]
-}