0047-content-shell-remove-dependency-to-breakpad.patch 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. From a1fa023c9a7318c1b0f9128b21f7572e2141182c Mon Sep 17 00:00:00 2001
  2. From: Rebecca Chang Swee Fun <rebecca.chang@starfivetech.com>
  3. Date: Mon, 18 Jul 2022 01:19:03 +0000
  4. Subject: [PATCH 47/68] content: shell: remove dependency to breakpad
  5. Signed-off-by: Rebecca Chang Swee Fun <rebecca.chang@starfivetech.com>
  6. ---
  7. content/shell/BUILD.gn | 13 -------------
  8. 1 file changed, 13 deletions(-)
  9. diff --git a/content/shell/BUILD.gn b/content/shell/BUILD.gn
  10. index e8c956adf334..1dbe9867b483 100644
  11. --- a/content/shell/BUILD.gn
  12. +++ b/content/shell/BUILD.gn
  13. @@ -652,7 +652,6 @@ if (is_mac) {
  14. testonly = true
  15. info_plist = "app/framework-Info.plist"
  16. args = [
  17. - "--breakpad=0",
  18. "--keystone=0",
  19. "--scm=1",
  20. "--version",
  21. @@ -726,7 +725,6 @@ if (is_mac) {
  22. testonly = true
  23. info_plist = "app/helper-Info.plist"
  24. args = [
  25. - "--breakpad=0",
  26. "--keystone=0",
  27. "--scm=0",
  28. "--version",
  29. @@ -857,7 +855,6 @@ group("content_shell_crash_test") {
  30. "//third_party/mesa_headers",
  31. ]
  32. data = [
  33. - "//content/shell/tools/breakpad_integration_test.py",
  34. "//testing/scripts/content_shell_crash_test.py",
  35. ]
  36. if (is_mac && !use_system_xcode) {
  37. @@ -873,26 +870,16 @@ group("content_shell_crash_test") {
  38. }
  39. if (is_posix) {
  40. data += [
  41. - "//components/crash/content/tools/generate_breakpad_symbols.py",
  42. "//components/crash/content/tools/dmp2minidump.py",
  43. ]
  44. }
  45. if (is_win) {
  46. data_deps += [ "//build/win:copy_cdb_to_output" ]
  47. }
  48. - if (is_posix) {
  49. - data_deps += [
  50. - "//third_party/breakpad:dump_syms",
  51. - "//third_party/breakpad:minidump_stackwalk",
  52. - ]
  53. - }
  54. if (is_android) {
  55. data_deps += [
  56. "//build/android:devil_chromium_py",
  57. "//build/android:test_runner_py",
  58. - "//third_party/breakpad:microdump_stackwalk",
  59. - "//third_party/breakpad:minidump_dump",
  60. - "//third_party/breakpad:symupload",
  61. "//tools/android/forwarder2",
  62. ]
  63. }
  64. --
  65. 2.30.2