Clone of https://chromium.googlesource.com/chromium/src/build with Mozilla's local modifications
Перейти к файлу
Erik Chen 9880588815 Update mac toolchain to include llvm-size binary and remove 10.13 SDK.
Change-Id: Ibf65ebd924f61a68905d1c26642f7073fab8bea8
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1721440
Commit-Queue: Erik Chen <erikchen@chromium.org>
Commit-Queue: John Budorick <jbudorick@chromium.org>
Auto-Submit: Erik Chen <erikchen@chromium.org>
Reviewed-by: John Budorick <jbudorick@chromium.org>
Cr-Original-Commit-Position: refs/heads/master@{#681578}
Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src
Cr-Mirrored-Commit: 9a856e8c6fdb2df4ca4b69e79123736487d84a13
2019-07-27 01:40:22 +00:00
android Revert "tools/binary_size/milestone_apk_sizes.py: Automating size reports" 2019-07-26 22:40:59 +00:00
args
chromeos test_runner: Deprecate --private-key 2019-07-25 20:38:54 +00:00
cipd
config win: Remove win_is_xtree_patched machinery. 2019-07-26 23:32:19 +00:00
docs
fuchsia Roll Fuchsia SDK from 890712803908 to 890710237923 2019-07-24 02:15:14 +00:00
internal
ios
linux sysroot scripts should work reliably without removing //out/sysroot-build 2019-07-03 20:26:42 +00:00
mac Compile on macOS using binaries from Xcode, rather than a full install. 2019-07-17 21:47:00 +00:00
sanitizers Speculatively remove some more WebRTC TSan suppressions 2019-06-27 09:00:26 +00:00
toolchain Revert "Fix android generate_linker_map check." 2019-07-26 12:10:34 +00:00
util Fix a couple issues with swarmed chrome_sizes test on chromium.chrome bots. 2019-06-12 15:49:05 +00:00
win
.gitignore
BUILD.gn Replace the global CHROMIUM_BUILD define with a buildflag. 2019-07-25 23:17:55 +00:00
OWNERS
OWNERS.status
README.md
apply_locales.py
build-ctags.sh
build_config.h
buildflag.h
buildflag_header.gni
check_gn_headers.py
check_gn_headers_unittest.py
check_gn_headers_whitelist.txt service worker: Remove ServiceWorkerNavigationLoader's fallback case. 2019-07-10 00:37:59 +00:00
check_return_value.py
ciopfs.sha1
clobber.py
common.croc
compiled_action.gni
compute_build_timestamp.py
copy_test_data_ios.py
cp.py
detect_host_arch.py
dir_exists.py
dotfile_settings.gni
download_nacl_toolchains.py
download_translation_unit_tool.py
env_dump.py
extract_from_cab.py
extract_partition.py
find_depot_tools.py
find_isolated_tests.py
fix_gn_headers.py
gdb-add-index
get_landmines.py
gn_helpers.py
gn_helpers_unittest.py
gn_run_binary.py
install-build-deps-android.sh
install-build-deps.sh
install-chroot.sh
landmine_utils.py
landmines.py
locale_tool.py
mac_toolchain.py Update mac toolchain to include llvm-size binary and remove 10.13 SDK. 2019-07-27 01:40:22 +00:00
nocompile.gni
package_mac_toolchain.py
partitioned_shared_library.gni [build] Use metadata to collect APK's shared libraries 2019-07-09 20:07:07 +00:00
precompile.cc
precompile.h
print_python_deps.py
protoc_java.py
protoc_java.pydeps
redirect_stdout.py
rm.py
run_swarming_xcode_install.py
sample_arg_file.gn
sanitize-mac-build-log.sed
sanitize-mac-build-log.sh
sanitize-win-build-log.sed
sanitize-win-build-log.sh
shim_headers.gni
split_static_library.gni
swarming_xcode_install.py
symlink.gni
symlink.py
timestamp.gni
tree_truth.sh
update-linux-sandbox.sh
vs_toolchain.py Fix Visual Studio version selection issue 2019-06-29 02:12:27 +00:00
whitespace_file.txt First commit to test how it works 2019-07-24 10:26:55 +00:00
write_build_date_header.py
write_buildflag_header.py
xcode_binaries.yaml Update mac toolchain to include llvm-size binary and remove 10.13 SDK. 2019-07-27 01:40:22 +00:00

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