tree: 0f1669ebf8ba23f70d10cfc5e2ac233fb8784f5a [path history] [tgz]
  1. android/
  2. args/
  3. chromeos/
  4. cipd/
  5. config/
  6. docs/
  7. fuchsia/
  8. git-hooks/
  9. internal/
  10. ios/
  11. linux/
  12. mac/
  13. sanitizers/
  14. secondary/
  15. toolchain/
  16. util/
  17. win/
  18. .gitignore
  19. apply_locales.py
  20. build-ctags.sh
  21. BUILD.gn
  22. build_config.h
  23. buildflag.h
  24. buildflag_header.gni
  25. check_gn_headers.py
  26. check_gn_headers_unittest.py
  27. check_gn_headers_whitelist.txt
  28. check_return_value.py
  29. ciopfs.sha1
  30. clobber.py
  31. common.croc
  32. common.gypi
  33. compiled_action.gni
  34. compute_build_timestamp.py
  35. copy_test_data_ios.py
  36. cp.py
  37. detect_host_arch.py
  38. dir_exists.py
  39. dotfile_settings.gni
  40. download_nacl_toolchains.py
  41. download_translation_unit_tool.py
  42. env_dump.py
  43. extract_from_cab.py
  44. find_depot_tools.py
  45. find_isolated_tests.py
  46. fix_gn_headers.py
  47. gdb-add-index
  48. get_landmines.py
  49. gn_helpers.py
  50. gn_helpers_unittest.py
  51. gn_run_binary.py
  52. gyp_chromium
  53. gyp_chromium.py
  54. gyp_environment.py
  55. install-build-deps-android.sh
  56. install-build-deps.sh
  57. install-chroot.sh
  58. landmine_utils.py
  59. landmines.py
  60. mac_toolchain.py
  61. nocompile.gni
  62. OWNERS
  63. OWNERS.status
  64. package_mac_toolchain.py
  65. precompile.cc
  66. precompile.h
  67. print_python_deps.py
  68. protoc_java.py
  69. protoc_java.pydeps
  70. README.md
  71. redirect_stdout.py
  72. rm.py
  73. run_swarming_xcode_install.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. split_static_library.gni
  81. swarming_xcode_install.py
  82. symlink.gni
  83. symlink.py
  84. timestamp.gni
  85. tree_truth.sh
  86. update-linux-sandbox.sh
  87. vs_toolchain.py
  88. whitespace_file.txt
  89. win_is_xtree_patched.py
  90. write_build_date_header.py
  91. write_buildflag_header.py
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.

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