Clone of https://chromium.googlesource.com/chromium/src/build with Mozilla's local modifications
Перейти к файлу
Wez 305a5c0783 [fuchsia] Enable shadow-call-stack for all targets.
Bug: fuchsia:27339, 821951
Change-Id: If685fd9817f8dae8671634f3798a655ddb2ba392
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1863774
Auto-Submit: Wez <wez@chromium.org>
Commit-Queue: Kevin Marshall <kmarshall@chromium.org>
Reviewed-by: Kevin Marshall <kmarshall@chromium.org>
Cr-Original-Commit-Position: refs/heads/master@{#709978}
Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src
Cr-Mirrored-Commit: f1bb41bdc78a389634aae97914ea93d071524c52
2019-10-28 18:48:00 +00:00
android Android: Set bytecode rewriters to use ASM7 2019-10-28 15:35:18 +00:00
args Set v8_enable_lazy_source_positions to false for headless 2019-09-30 22:04:47 +00:00
chromeos build: Remove references to blacklist in CrOS test runner. 2019-10-21 17:15:59 +00:00
cipd
config [fuchsia] Enable shadow-call-stack for all targets. 2019-10-28 18:48:00 +00:00
docs
fuchsia Roll Fuchsia SDK from 889839374053 to 889837476456 2019-10-28 14:32:37 +00:00
internal
ios
linux [Reland] Roll sysroots 2019-10-16 10:03:30 +00:00
mac
sanitizers asan: Use OFFICIAL_BUILD instead of GOOGLE_CHROME_BUILD for default asan options. 2019-10-28 15:27:20 +00:00
toolchain Make rc.py generated ninja dependency outputs independent of where the 2019-10-28 11:11:52 +00:00
util build: Create trichrome_library_64_32_apk and trichrome_webview_64_32_apk targets. 2019-10-25 03:15:38 +00:00
win build: Assert that Win cross-builds from Mac are 64-bit. 2019-10-07 14:14:35 +00:00
.gitignore
BUILD.gn
OWNERS Start formalizing set noparent policy 2019-10-25 18:28:27 +00:00
OWNERS.setnoparent Clean up owners files for security & privacy reviews 2019-10-28 16:09:27 +00:00
OWNERS.status
README.md //build/README.md: Add link to https://chromium.googlesource.com/ 2019-09-23 14:57:24 +00:00
apply_locales.py
build-ctags.sh
build_config.h Support WebAssembly in build/build_config.h. 2019-08-27 03:36:10 +00:00
buildflag.h
buildflag_header.gni
check_gn_headers.py
check_gn_headers_unittest.py
check_gn_headers_whitelist.txt Refactor cc painted scrollbar 2019-10-02 21:43:37 +00:00
check_return_value.py
ciopfs.sha1
clobber.py
common.croc
compiled_action.gni
compute_build_timestamp.py
copy_test_data_ios.py //build: Use Python 3 style exception statements 2019-09-26 19:20:53 +00:00
cp.py
detect_host_arch.py
dir_exists.py
dotfile_settings.gni
download_libclang.py Add libclang package to sit alongside prebuilt LLVM binaries 2019-10-24 06:25:29 +00:00
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 Roll macOS Toolchain. 2019-09-03 19:30:08 +00:00
nocompile.gni
package_mac_toolchain.py
partitioned_shared_library.gni Roll clang 370156:371202. 2019-09-06 22:28:01 +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 //build: Use Python 3 style exception statements 2019-09-26 19:20:53 +00:00
timestamp.gni
tree_truth.sh
update-linux-sandbox.sh
vs_toolchain.py Improve VS toolchain search 2019-10-25 16:40:46 +00:00
whitespace_file.txt
write_build_date_header.py
write_buildflag_header.py
xcode_binaries.yaml build: use copy mode for xcode_binaries cipd package 2019-08-30 14:45:54 +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. 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