tree: 21b4bec4dcae94427bb13e6d7d962d15590c3df5 [path history] [tgz]
  1. android/
  2. args/
  3. chromeos/
  4. cipd/
  5. config/
  6. docs/
  7. experimental/
  8. fuchsia/
  9. git-hooks/
  10. internal/
  11. ios/
  12. linux/
  13. mac/
  14. sanitizers/
  15. secondary/
  16. toolchain/
  17. util/
  18. win/
  19. .gitignore
  20. apply_locales.py
  21. branding_value.sh
  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. common.croc
  34. common.gypi
  35. compiled_action.gni
  36. compute_build_timestamp.py
  37. copy_test_data_ios.py
  38. cp.py
  39. detect_host_arch.py
  40. dir_exists.py
  41. dotfile_settings.gni
  42. download_nacl_toolchains.py
  43. download_translation_unit_tool.py
  44. env_dump.py
  45. extract_from_cab.py
  46. find_depot_tools.py
  47. find_isolated_tests.py
  48. fix_gn_headers.py
  49. gdb-add-index
  50. get_landmines.py
  51. gn_helpers.py
  52. gn_helpers_unittest.py
  53. gn_run_binary.py
  54. gyp_chromium
  55. gyp_chromium.py
  56. gyp_environment.py
  57. install-build-deps-android.sh
  58. install-build-deps.sh
  59. install-chroot.sh
  60. landmine_utils.py
  61. landmines.py
  62. mac_toolchain.py
  63. nocompile.gni
  64. OWNERS
  65. OWNERS.status
  66. package_mac_toolchain.py
  67. precompile.cc
  68. precompile.h
  69. print_python_deps.py
  70. protoc_java.py
  71. protoc_java.pydeps
  72. README.md
  73. redirect_stdout.py
  74. rm.py
  75. run_swarming_xcode_install.py
  76. sample_arg_file.gn
  77. sanitize-mac-build-log.sed
  78. sanitize-mac-build-log.sh
  79. sanitize-win-build-log.sed
  80. sanitize-win-build-log.sh
  81. shim_headers.gni
  82. split_static_library.gni
  83. swarming_xcode_install.py
  84. symlink.gni
  85. symlink.py
  86. timestamp.gni
  87. tree_truth.sh
  88. update-linux-sandbox.sh
  89. vs_toolchain.py
  90. whitespace_file.txt
  91. win_is_xtree_patched.py
  92. write_build_date_header.py
  93. 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.

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