fuzzers.patch 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. description: fuzzers aren't built, so don't depend on them
  2. author: Michael Gilbert <mgilbert@debian.org>
  3. --- a/BUILD.gn
  4. +++ b/BUILD.gn
  5. @@ -734,8 +734,7 @@ group("gn_all") {
  6. }
  7. }
  8. - if ((is_linux && !is_chromecast) || (is_win && use_libfuzzer) ||
  9. - (use_libfuzzer && is_mac)) {
  10. + if (false) {
  11. deps += [
  12. "//chrome/services/cups_ipp_parser/public/cpp:fuzzers",
  13. "//testing/libfuzzer/fuzzers",
  14. --- a/content/test/BUILD.gn
  15. +++ b/content/test/BUILD.gn
  16. @@ -2402,12 +2402,6 @@ test("content_perftests") {
  17. }
  18. }
  19. -group("fuzzers") {
  20. - deps = [
  21. - "//content/test/fuzzer",
  22. - ]
  23. -}
  24. -
  25. # This group defines the isolate files needed to run
  26. # test_buildbucket_api_gpu_cases.py on bots. This also tells the build system
  27. # when the tests should be re-run - when one of the dependent files changes.
  28. --- a/v8/tools/BUILD.gn
  29. +++ b/v8/tools/BUILD.gn
  30. @@ -11,7 +11,6 @@ group("gn_all") {
  31. data_deps = [
  32. ":v8_check_static_initializers",
  33. "gcmole:v8_run_gcmole",
  34. - "jsfunfuzz:v8_jsfunfuzz",
  35. ]
  36. }