tree: f7e2983437baf49f6a3f200312540c8c8de92c43 [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. linux/
  13. mac/
  14. sanitizers/
  15. skia_gold_common/
  16. toolchain/
  17. util/
  18. win/
  19. .style.yapf
  20. add_rts_filters.py
  21. build-ctags.sh
  22. BUILD.gn
  23. build_config.h
  24. buildflag.h
  25. buildflag_header.gni
  26. check_gn_headers.py
  27. check_gn_headers_unittest.py
  28. check_gn_headers_whitelist.txt
  29. check_return_value.py
  30. ciopfs.sha1
  31. clobber.py
  32. compiled_action.gni
  33. compute_build_timestamp.py
  34. copy_test_data_ios.py
  35. cp.py
  36. detect_host_arch.py
  37. dir_exists.py
  38. DIR_METADATA
  39. dotfile_settings.gni
  40. download_nacl_toolchains.py
  41. env_dump.py
  42. extract_from_cab.py
  43. extract_partition.py
  44. find_depot_tools.py
  45. fix_gn_headers.py
  46. gdb-add-index
  47. get_landmines.py
  48. get_symlink_targets.py
  49. gn_helpers.py
  50. gn_helpers_unittest.py
  51. gn_logs.gni
  52. gn_run_binary.py
  53. install-build-deps-android.sh
  54. install-build-deps.sh
  55. install-chroot.sh
  56. landmine_utils.py
  57. landmines.py
  58. locale_tool.py
  59. mac_toolchain.py
  60. METADATA
  61. nocompile.gni
  62. noop.py
  63. OWNERS.setnoparent
  64. OWNERS.status
  65. partitioned_shared_library.gni
  66. precompile.cc
  67. precompile.h
  68. print_python_deps.py
  69. protoc_java.py
  70. protoc_java.pydeps
  71. README.md
  72. redirect_stdout.py
  73. rm.py
  74. sample_arg_file.gn
  75. sanitize-mac-build-log.sed
  76. sanitize-mac-build-log.sh
  77. sanitize-win-build-log.sed
  78. sanitize-win-build-log.sh
  79. shim_headers.gni
  80. symlink.gni
  81. symlink.py
  82. timestamp.gni
  83. tree_truth.sh
  84. update-linux-sandbox.sh
  85. vs_toolchain.py
  86. whitespace_file.txt
  87. write_build_date_header.py
  88. write_buildflag_header.py
  89. xcode_binaries.yaml
src/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