tree: 36ff854135f5ef8f267920e103f806b0cc8516af [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. toolchain/
  15. util/
  16. win/
  17. .gitignore
  18. apply_locales.py
  19. build-ctags.sh
  20. BUILD.gn
  21. build_config.h
  22. buildflag.h
  23. buildflag_header.gni
  24. check_gn_headers.py
  25. check_gn_headers_unittest.py
  26. check_gn_headers_whitelist.txt
  27. check_return_value.py
  28. ciopfs.sha1
  29. clobber.py
  30. common.croc
  31. compiled_action.gni
  32. compute_build_timestamp.py
  33. copy_test_data_ios.py
  34. cp.py
  35. detect_host_arch.py
  36. dir_exists.py
  37. dotfile_settings.gni
  38. download_nacl_toolchains.py
  39. download_translation_unit_tool.py
  40. env_dump.py
  41. extract_from_cab.py
  42. extract_partition.py
  43. find_depot_tools.py
  44. find_isolated_tests.py
  45. fix_gn_headers.py
  46. gdb-add-index
  47. get_landmines.py
  48. gn_helpers.py
  49. gn_helpers_unittest.py
  50. gn_run_binary.py
  51. install-build-deps-android.sh
  52. install-build-deps.sh
  53. install-chroot.sh
  54. landmine_utils.py
  55. landmines.py
  56. locale_tool.py
  57. mac_toolchain.py
  58. nocompile.gni
  59. OWNERS
  60. OWNERS.status
  61. package_mac_toolchain.py
  62. partitioned_shared_library.gni
  63. precompile.cc
  64. precompile.h
  65. print_python_deps.py
  66. protoc_java.py
  67. protoc_java.pydeps
  68. README.md
  69. redirect_stdout.py
  70. rm.py
  71. run_swarming_xcode_install.py
  72. sample_arg_file.gn
  73. sanitize-mac-build-log.sed
  74. sanitize-mac-build-log.sh
  75. sanitize-win-build-log.sed
  76. sanitize-win-build-log.sh
  77. shim_headers.gni
  78. split_static_library.gni
  79. swarming_xcode_install.py
  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. win_is_xtree_patched.py
  88. write_build_date_header.py
  89. 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