Clone of https://chromium.googlesource.com/chromium/src/build with Mozilla's local modifications
Перейти к файлу
Ben Pastene da28665bf0 Manually roll chromite to pick up localhost vs VM fixes.
Picks up a single change:
$ git log 97d7f0702..8ef1e6c0 --date=short --first-parent --format='%ad %ae %s'
2020-04-06 bpastene@chromium.org device: Don't assume '--device=localhost' means VM.

And updates chromeos/test_runner.py to not specify '--device=localhost'
when running VM tests.

Bug: 1067800
Change-Id: Id8af6b2cb1d8a082b71a6ac01cfe9522578a21b4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2145762
Reviewed-by: Erik Chen <erikchen@chromium.org>
Commit-Queue: Ben Pastene <bpastene@chromium.org>
Cr-Original-Commit-Position: refs/heads/master@{#758264}
Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src
Cr-Mirrored-Commit: a5301433ed9a9610c127691d6c0f6d4c4af82f7d
2020-04-10 20:11:35 +00:00
android Revert "Android: Use lint from cmdline-tools" 2020-04-10 01:44:55 +00:00
args Fix headless build by setting use_gtk = false 2020-03-28 15:46:14 +00:00
chromeos Manually roll chromite to pick up localhost vs VM fixes. 2020-04-10 20:11:35 +00:00
cipd
config Revert "Android: Use lint from cmdline-tools" 2020-04-10 01:44:55 +00:00
docs
fuchsia Roll Fuchsia SDK from 0.20200409.3.1 to 0.20200410.2.2 2020-04-10 20:10:59 +00:00
internal
ios
linux
mac
sanitizers
toolchain Better asserts on missing files during gn gen 2020-04-07 05:07:42 +00:00
util
win
.gitignore [ios/goma] Create symlinks to Xcode SDK in $root_build_dir/sdk 2020-03-13 16:37:23 +00:00
.style.yapf
BUILD.gn
OWNERS Remove jbudorick from most non-third_party OWNERS. 2020-04-06 16:48:36 +00:00
OWNERS.setnoparent
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
check_return_value.py
ciopfs.sha1
clobber.py
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
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: Add support for imported args files. 2020-03-23 18:13:10 +00:00
gn_helpers_unittest.py gn_helpers: Add support for imported args files. 2020-03-23 18:13:10 +00:00
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
nocompile.gni
noop.py [ios/rbe] Fix iOS buildwith Goma RBE 2020-03-16 15:34:28 +00:00
package_mac_toolchain.py
partitioned_shared_library.gni
precompile.cc
precompile.h
print_python_deps.py [Build] print_python_deps.py: Use importlib.util for Python 3. 2020-04-10 05:28:18 +00:00
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
swarming_xcode_install.py
symlink.gni
symlink.py
timestamp.gni
tree_truth.sh
update-linux-sandbox.sh
vs_toolchain.py fix vs%s_install environment variable 2020-04-10 18:02:12 +00:00
whitespace_file.txt
write_build_date_header.py
write_buildflag_header.py
xcode_binaries.yaml

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