build_do_not_depend_on_packed_resource_integrity.patch 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
  2. From: Samuel Attard <[email protected]>
  3. Date: Thu, 27 May 2021 17:21:07 -0700
  4. Subject: build: do not depend on packed_resource_integrity
  5. This ensures we do not depend on a target that does not exist when
  6. building Electron, electron generates its own .pak files via
  7. electron_repack and therefore this integrity target which is generated
  8. by the chrome_paks target does not exist. This can not be upstreamed,
  9. if we ever align our .pak file generation with Chrome we can remove this
  10. patch.
  11. diff --git a/chrome/BUILD.gn b/chrome/BUILD.gn
  12. index 71152d08a9e9ce2e112fd7a6c3134a547af5d978..fd11a574ed7b38d556bbdaed2fd649d55d6530f7 100644
  13. --- a/chrome/BUILD.gn
  14. +++ b/chrome/BUILD.gn
  15. @@ -171,11 +171,16 @@ if (!is_android && !is_mac) {
  16. "common/crash_keys.h",
  17. ]
  18. + if (!is_electron_build) {
  19. + deps = [
  20. + ":packed_resources_integrity",
  21. + ]
  22. + }
  23. +
  24. deps += [
  25. ":chrome_dll",
  26. ":chrome_exe_version",
  27. ":copy_first_run",
  28. - ":packed_resources_integrity",
  29. ":visual_elements_resources",
  30. "//base",
  31. "//build:branding_buildflags",
  32. diff --git a/chrome/browser/BUILD.gn b/chrome/browser/BUILD.gn
  33. index 5f0b1af64911966f9b24a2b5ef063e4473b81a8f..c186819512e21276e382edba2eca2c153da7403d 100644
  34. --- a/chrome/browser/BUILD.gn
  35. +++ b/chrome/browser/BUILD.gn
  36. @@ -4517,7 +4517,7 @@ static_library("browser") {
  37. # On Windows, the hashes are embedded in //chrome:chrome_initial rather
  38. # than here in :chrome_dll.
  39. - if (!is_win) {
  40. + if (!is_win && !is_electron_build) {
  41. deps += [ "//chrome:packed_resources_integrity" ]
  42. sources += [ "certificate_viewer_stub.cc" ]
  43. }
  44. diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
  45. index 89afb235bc478f19511579ca4c6b018505b372cd..1b5b9e33f5ad2b31617edd8a6ee65e73b31d3d20 100644
  46. --- a/chrome/test/BUILD.gn
  47. +++ b/chrome/test/BUILD.gn
  48. @@ -5564,7 +5564,6 @@ test("unit_tests") {
  49. deps += [
  50. "//chrome:other_version",
  51. - "//chrome:packed_resources_integrity",
  52. "//chrome//services/util_win:unit_tests",
  53. "//chrome/app:chrome_dll_resources",
  54. "//chrome/browser:chrome_process_finder",
  55. @@ -5587,6 +5586,10 @@ test("unit_tests") {
  56. "//ui/resources",
  57. ]
  58. + if (!is_electron_build) {
  59. + deps += [ "//chrome:packed_resources_integrity" ]
  60. + }
  61. +
  62. ldflags = [
  63. "/DELAYLOAD:api-ms-win-core-winrt-error-l1-1-0.dll",
  64. "/DELAYLOAD:api-ms-win-core-winrt-l1-1-0.dll",
  65. @@ -6270,7 +6273,6 @@ test("unit_tests") {
  66. }
  67. deps += [
  68. - "//chrome:packed_resources_integrity_hash",
  69. "//chrome/browser:cart_db_content_proto",
  70. "//chrome/browser:coupon_db_content_proto",
  71. "//chrome/browser/media/router:test_support",
  72. @@ -6312,6 +6314,11 @@ test("unit_tests") {
  73. "//ui/native_theme:test_support",
  74. "//ui/webui/resources/js/browser_command:mojo_bindings",
  75. ]
  76. +
  77. + if (!is_electron_build) {
  78. + deps += [ "//chrome:packed_resources_integrity_hash" ]
  79. + }
  80. +
  81. if (is_chromeos_ash) {
  82. deps += [
  83. "//ash/assistant/model",