fuzzers.patch 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. @@ -754,8 +754,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/ipp_parser/public/cpp:fuzzers",
  13. "//testing/libfuzzer/fuzzers",
  14. --- a/content/test/BUILD.gn
  15. +++ b/content/test/BUILD.gn
  16. @@ -2383,10 +2383,6 @@ test("content_perftests") {
  17. }
  18. }
  19. -group("fuzzers") {
  20. - deps = [ "//content/test/fuzzer" ]
  21. -}
  22. -
  23. # This group defines the isolate files needed to run
  24. # test_buildbucket_api_gpu_cases.py on bots. This also tells the build system
  25. # when the tests should be re-run - when one of the dependent files changes.
  26. --- a/v8/tools/BUILD.gn
  27. +++ b/v8/tools/BUILD.gn
  28. @@ -12,7 +12,6 @@ group("gn_all") {
  29. ":v8_check_static_initializers",
  30. "debug_helper:v8_debug_helper",
  31. "gcmole:v8_run_gcmole",
  32. - "jsfunfuzz:v8_jsfunfuzz",
  33. ]
  34. if (is_win) {