mac: Enable chained fixups on intel as well

Today's mac/arm Canary was built with it enabled and things seem
to work. Let's do Intel next :)

Bug: 420708323
Cq-Include-Trybots: luci.chromium.try:mac12-tests
Change-Id: Idf81d160d96d35136bde1aebb10b8b91aafeffff
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6729794
Reviewed-by: Mark Mentovai <mark@chromium.org>
Commit-Queue: Mark Mentovai <mark@chromium.org>
Auto-Submit: Nico Weber <thakis@chromium.org>
Commit-Queue: Nico Weber <thakis@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1485818}
NOKEYCHECK=True
GitOrigin-RevId: 8da209e9fa12a6fd73eec518fcba004bb5e59683
1 file changed
tree: 9508ab7a91a616497b8a18076634293e7b7ef80d
  1. 3pp_common/
  2. android/
  3. apple/
  4. args/
  5. autoroll/
  6. chromeos/
  7. cipd/
  8. config/
  9. docs/
  10. fuchsia/
  11. gn_ast/
  12. internal/
  13. ios/
  14. linux/
  15. mac/
  16. private_code_test/
  17. rust/
  18. sanitizers/
  19. skia_gold_common/
  20. toolchain/
  21. util/
  22. win/
  23. .clang-tidy
  24. .clangd
  25. .git-blame-ignore-revs
  26. .gitignore
  27. .style.yapf
  28. action_helpers.py
  29. action_helpers_unittest.py
  30. add_rts_filters.py
  31. build-ctags.sh
  32. BUILD.gn
  33. build_config.h
  34. buildflag.h
  35. buildflag_header.gni
  36. check_gn_headers.py
  37. check_gn_headers_allowlist.txt
  38. check_gn_headers_unittest.py
  39. check_return_value.py
  40. ciopfs.sha1
  41. clobber.py
  42. clobber_unittest.py
  43. compiled_action.gni
  44. compute_build_timestamp.py
  45. copy_test_data_ios.py
  46. cp.py
  47. DEPS
  48. detect_host_arch.py
  49. DIR_METADATA
  50. dotfile_settings.gni
  51. env_dump.py
  52. extract_from_cab.py
  53. extract_partition.py
  54. find_depot_tools.py
  55. fix_gn_headers.py
  56. gdb-add-index
  57. get_landmines.py
  58. get_symlink_targets.py
  59. gn_editor
  60. gn_helpers.py
  61. gn_helpers_unittest.py
  62. gn_logs.gni
  63. gn_run_binary.py
  64. install-build-deps.py
  65. install-build-deps.sh
  66. install-chroot.sh
  67. landmine_utils.py
  68. landmines.py
  69. locale_tool.py
  70. mac_toolchain.py
  71. metadata.json.in
  72. nocompile.gni
  73. noop.py
  74. OWNERS
  75. OWNERS.setnoparent
  76. OWNERS.status
  77. partitioned_shared_library.gni
  78. precompile.cc
  79. precompile.h
  80. PRESUBMIT.py
  81. PRESUBMIT_test.py
  82. print_python_deps.py
  83. protoc_java.py
  84. protoc_java.pydeps
  85. README.md
  86. redirect_stdout.py
  87. rm.py
  88. sample_arg_file.gn
  89. sanitize-mac-build-log.sed
  90. sanitize-mac-build-log.sh
  91. sanitize-win-build-log.sed
  92. sanitize-win-build-log.sh
  93. shim_headers.gni
  94. symlink.gni
  95. symlink.py
  96. timestamp.gni
  97. tree_truth.sh
  98. update-linux-sandbox.sh
  99. vs_toolchain.py
  100. whitespace_file.txt
  101. write_buildflag_header.py
  102. xcode_binaries.yaml
  103. zip_helpers.py
  104. zip_helpers_unittest.py
README.md

About

//build contains:

  • Core GN templates and configuration
  • Core Python build scripts

Since this directory is DEPS'ed in by some other repositories (webrtc, pdfium, v8, etc), it should be kept as self-contained as possible by not referring to files outside of it. Some exceptions exist (//testing, select //third_party subdirectories), but new dependencies tend to break these other projects, and so should be avoided.

Changes to //build should be landed in the Chromium repo. They will then be replicated to the stand-alone build repo by the gsubtreed tool. Note: You can find all directories already available through gsubtreed in the list of all chromium repos.

Contents

  • //build/config - Common templates via .gni files.
  • //build/toolchain - GN toolchain definitions.
  • Other .py files - Some are used by GN/Ninja. Some by gclient hooks, some are just random utilities.

Files referenced by //.gn:

  • //build/BUILDCONFIG.gn - Included by all BUILD.gn files.
  • //build/secondary - An overlay for BUILD.gn files. Enables adding BUILD.gn to directories that live in sub-repositories.
  • //build_overrides - Refer to //build_overrides/README.md.

Docs