tree: 77b84f61c5b7a4417d3fb44f1ffe6e701e16524b [path history] [tgz]
  1. android/
  2. apple/
  3. args/
  4. chromeos/
  5. cipd/
  6. config/
  7. docs/
  8. fuchsia/
  9. internal/
  10. ios/
  11. lacros/
  12. mac/
  13. rust/
  14. sanitizers/
  15. skia_gold_common/
  16. toolchain/
  17. util/
  18. win/
  19. .gitignore
  20. .style.yapf
  21. add_rts_filters.py
  22. build-ctags.sh
  23. BUILD.gn
  24. build_config.h
  25. buildflag.h
  26. buildflag_header.gni
  27. check_gn_headers.py
  28. check_gn_headers_unittest.py
  29. check_gn_headers_whitelist.txt
  30. check_return_value.py
  31. ciopfs.sha1
  32. clobber.py
  33. compiled_action.gni
  34. compute_build_timestamp.py
  35. copy_test_data_ios.py
  36. cp.py
  37. del_ninja_deps_cache.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. metadata.json.in
  63. nocompile.gni
  64. noop.py
  65. OWNERS
  66. OWNERS.setnoparent
  67. OWNERS.status
  68. partitioned_shared_library.gni
  69. precompile.cc
  70. precompile.h
  71. PRESUBMIT.py
  72. PRESUBMIT_test.py
  73. print_python_deps.py
  74. protoc_java.py
  75. protoc_java.pydeps
  76. README.md
  77. redirect_stdout.py
  78. rm.py
  79. sample_arg_file.gn
  80. sanitize-mac-build-log.sed
  81. sanitize-mac-build-log.sh
  82. sanitize-win-build-log.sed
  83. sanitize-win-build-log.sh
  84. shim_headers.gni
  85. symlink.gni
  86. symlink.py
  87. timestamp.gni
  88. tree_truth.sh
  89. update-linux-sandbox.sh
  90. vs_toolchain.py
  91. whitespace_file.txt
  92. write_build_date_header.py
  93. write_buildflag_header.py
  94. xcode_binaries.yaml
build/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