Roll Fuchsia Internal Images from 8.20220527.1.1 to 8.20220527.2.1

If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://skia-autoroll.corp.goog/r/fuchsia-internal-images-chromium
Please CC chrome-fuchsia-gardener@grotations.appspotmail.com on the revert to ensure that a human
is aware of the problem.

To file a bug in Chromium: https://bugs.chromium.org/p/chromium/issues/entry

To report a problem with the AutoRoller itself, please file a bug:
https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md

Cq-Include-Trybots: luci.chrome.try:fuchsia-fyi-astro
Tbr: chrome-fuchsia-gardener@grotations.appspotmail.com
Disable-Retries: true
Change-Id: I325616f13bd1d00a8c7a5c5e950535402cef3ac1
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3673416
Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com>
Bot-Commit: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com>
Cr-Commit-Position: refs/heads/main@{#1008273}
NOKEYCHECK=True
GitOrigin-RevId: e58f3bce7f187200344f3ec67a4c65dc54f97972
1 file changed
tree: b59ebd515930c99ca3675555e30e18c7260b9fe7
  1. android/
  2. apple/
  3. args/
  4. chromeos/
  5. cipd/
  6. config/
  7. docs/
  8. fuchsia/
  9. internal/
  10. ios/
  11. lacros/
  12. linux/
  13. mac/
  14. rust/
  15. sanitizers/
  16. skia_gold_common/
  17. toolchain/
  18. util/
  19. win/
  20. .gitignore
  21. .style.yapf
  22. add_rts_filters.py
  23. build-ctags.sh
  24. BUILD.gn
  25. build_config.h
  26. buildflag.h
  27. buildflag_header.gni
  28. check_gn_headers.py
  29. check_gn_headers_unittest.py
  30. check_gn_headers_whitelist.txt
  31. check_return_value.py
  32. ciopfs.sha1
  33. clobber.py
  34. compiled_action.gni
  35. compute_build_timestamp.py
  36. copy_test_data_ios.py
  37. cp.py
  38. detect_host_arch.py
  39. dir_exists.py
  40. DIR_METADATA
  41. dotfile_settings.gni
  42. download_nacl_toolchains.py
  43. env_dump.py
  44. extract_from_cab.py
  45. extract_partition.py
  46. find_depot_tools.py
  47. fix_gn_headers.py
  48. gdb-add-index
  49. get_landmines.py
  50. get_symlink_targets.py
  51. gn_helpers.py
  52. gn_helpers_unittest.py
  53. gn_logs.gni
  54. gn_run_binary.py
  55. install-build-deps-android.sh
  56. install-build-deps.sh
  57. install-chroot.sh
  58. landmine_utils.py
  59. landmines.py
  60. locale_tool.py
  61. mac_toolchain.py
  62. nocompile.gni
  63. noop.py
  64. OWNERS
  65. OWNERS.setnoparent
  66. OWNERS.status
  67. partitioned_shared_library.gni
  68. precompile.cc
  69. precompile.h
  70. PRESUBMIT.py
  71. print_python_deps.py
  72. protoc_java.py
  73. protoc_java.pydeps
  74. README.md
  75. redirect_stdout.py
  76. rm.py
  77. sample_arg_file.gn
  78. sanitize-mac-build-log.sed
  79. sanitize-mac-build-log.sh
  80. sanitize-win-build-log.sed
  81. sanitize-win-build-log.sh
  82. shim_headers.gni
  83. symlink.gni
  84. symlink.py
  85. timestamp.gni
  86. tree_truth.sh
  87. update-linux-sandbox.sh
  88. vs_toolchain.py
  89. whitespace_file.txt
  90. write_build_date_header.py
  91. write_buildflag_header.py
  92. xcode_binaries.yaml
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