Skip to content

Commit

Permalink
Docs for //build: README.md, writing_gn_templates.md, debugging_slow_…
Browse files Browse the repository at this point in the history
…builds.md

Change-Id: Idf2cc4fe806b1dacde38f3bcda94b0e7d8b66c00
Reviewed-on: https://chromium-review.googlesource.com/1214757
Commit-Queue: agrieve <agrieve@chromium.org>
Reviewed-by: David Turner <digit@chromium.org>
Reviewed-by: Eric Stevenson <estevenson@chromium.org>
Reviewed-by: Tibor Goldschwendt <tiborg@chromium.org>
Reviewed-by: Christopher Grant <cjgrant@chromium.org>
Cr-Commit-Position: refs/heads/master@{#591251}
  • Loading branch information
agrieve authored and Commit Bot committed Sep 14, 2018
1 parent cdc2b97 commit bd10a66
Show file tree
Hide file tree
Showing 3 changed files with 275 additions and 0 deletions.
30 changes: 30 additions & 0 deletions build/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# 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](../build_overrides/README.md).

## Docs

* [Writing GN Templates](docs/writing_gn_templates.md)
* [Debugging Slow Builds](docs/debugging_slow_builds.md)
* [Mac Hermetic Toolchains](docs/mac_hermetic_toolchain.md)
* [Android Build Documentation](android/docs)
19 changes: 19 additions & 0 deletions build/docs/debugging_slow_builds.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Debugging slow builds

Some tips for debugging slow build times:
* Use [ninjatracing](https://github.com/nico/ninjatracing) and chrome:tracing to
view a timeline of the most recent build.
* Many bots output a build trace (look for a `"ninja_log"` link).
* Use `gn gen --tracelog trace.json` to create a similar trace for `gn gen`.
* Depot Tool's `autoninja` has logic for summarizing slow steps. Enable it via:
* `NINJA_SUMMARIZE_BUILD=1 autoninja -C out/Debug my_target`
* Many Android templates make use of
[`md5_check.py`](https://cs.chromium.org/chromium/src/build/android/gyp/util/md5_check.py)
to optimize incremental builds.
* Set `PRINT_BUILD_EXPLANATIONS=1` to have these commands log which inputs
changed.
* If you suspect files are being rebuilt unnecessarily during incremental
builds:
* Use `ninja -n -d explain` to figure out why ninja thinks a target is dirty.
* Ensure actions are taking advantage of ninja's `restat=1` feature by not
updating timestamps on outputs when their content does not change.
226 changes: 226 additions & 0 deletions build/docs/writing_gn_templates.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,226 @@
# Writing GN Templates
GN and Ninja are documented here:
* GN: https://gn.googlesource.com/gn/+/master/docs/
* Ninja: https://ninja-build.org/manual.html

[TOC]

## Things to Consider When Writing Templates
### Inputs and Depfiles
* List all files read (or executed) by an action as `inputs`.
* It is [not enough](https://chromium-review.googlesource.com/c/chromium/src/+/1090231)
to have inputs listed by dependent targets. They must be listed directly by targets that use them.
* Non-system Python imports are inputs! For scripts that import such modules,
use [`action_with_pydeps`](https://cs.chromium.org/chromium/src/build/config/python.gni?rcl=320ee4295eb7fabaa112f08d1aacc88efd1444e5&l=75)
to ensure all dependent Python files are captured as inputs.
* For action inputs that are not computable during "gn gen", actions can write
depfiles (.d files) to add additional input files as dependencies for
subsequent builds. They are relevant only for incremental builds.
* Depfiles should not list files that GN already lists as `inputs`.
* Besides being redundant, listing them also makes it harder to remove
inputs, since removing them from GN does not immediately remove them from
depfiles.
* Stale paths in depfiles can cause ninja to complain of circular
dependencies [in some cases](https://bugs.chromium.org/p/chromium/issues/detail?id=639042).

### Ensuring "gn analyze" Knows About your Inputs
"gn analyze" is used by bots to run only affected tests and build only affected
targets. Try it out locally via:
```bash
echo "compute_inputs_for_analyze = true" >> out/Debug/args.gn
gn analyze //out/Debug <(echo '{
"files": ["//BUILD.gn"],
"test_targets": ["//base"],
"additional_compile_targets":[]}') result.txt; cat result.txt
```
* For analyze to work properly, GN must know about all inputs.
* Inputs added by depfiles are *not available* to "gn analyze".
* When paths listed in a target's depfile are listed as `inputs` to a
dependent target, analyze will be correct.
* Example: An `AndroidManifest.xml` file is an input to an
`android_library()` and is included in an `android_apk()`'s depfile.
`gn analyze` will know that a change to the file will require the APK
to be rebuilt, because the file is marked as an input to the library, and
the library is a dep of the APK.
* When paths listed in a target's depfile are *not* listed as `inputs` to a
dependent target, a few options exist:
* Rather than putting the inputs in a depfile, force users of your template
to list them, and then have your action re-compute them and assert that
they were correct.
* `jinja_template()` does this.
* Rather than putting the inputs in a depfile, compute them beforehand and
save them to a text file. Have your template Use `read_file()` to read
them in.
* `action_with_pydeps()` does this.
* Continue using a depfile, but use an `exec_script()` to compute them when
[`compute_inputs_for_analyze`](https://cs.chromium.org/chromium/src/build/config/compute_inputs_for_analyze.gni)
is set.
* `grit()` does this.

### Outputs
Do not list files as `outputs` unless they are important. Outputs are important
if they are:
* used as an input by another target, or
* are leaves in the dependency graph (e.g. binaries, apks, etc).

Example:
* An action runs a binary that creates an output as well as a log file. Do not
list the log file as an output.

## Best Practices for Python Actions
Outputs should be atomic and take advantage of `restat=1`.
* Make outputs atomic by writing to temporary files and then moving them to
their final location.
* Rationale: An interrupted write can leave a file with an updated timestamp
and corrupt contents. Ninja looks only at timestamps.
* Do not overwrite an existing output with identical contents.
* Rationale: `restat=1` is a ninja feature enabled for all actions that
short-circuits a build when output timestamps do not change. This feature is
the reason that the total number of build steps sometimes decreases when
building..
* Use [`build_utils.AtomicOutput()`](https://cs.chromium.org/chromium/src/build/android/gyp/util/build_utils.py?rcl=7d6ba28e92bec865a7b7876c35b4621d56fb37d8&l=128)
to perform both of these techniques.

Actions should be deterministic in order to avoid hard-to-reproduce bugs.
Given identical inputs, they should produce byte-for-byte identical outputs.
* Some common mistakes:
* Depending on filesystem iteration order.
* Writing timestamps in files (or in zip entries).
* Writing absolute paths in outputs.

## Style Guide
Chromium GN files follow
[GN's Style Guide](https://gn.googlesource.com/gn/+/master/docs/style_guide.md)
with a few additions.

### Action Granularity
* Prefer writing new Python scripts that do what you want over
composing multiple separate actions within a template.
* Fewer targets makes for a simpler build graph.
* GN logic and build logic winds up much simpler.

Bad:
```python
template("generate_zipped_sources") {
generate_files("${target_name}__gen") {
...
outputs = [ "$target_gen_dir/$target_name.temp" ]
}
zip(target_name) {
deps = [ ":${target_name}__gen" ]
inputs = [ "$target_gen_dir/$target_name.temp" ]
outputs = [ invoker.output_zip ]
}
}
```

Good:
```python
template("generate_zipped_sources") {
action(target_name) {
script = "generate_and_zip.py"
...
outputs = [ invoker.output_zip ]
}
}
```

### Naming for Intermediate Targets
Targets that are not relevant to users of your template should be named as:
`${target_name}__$something`.

Example:
```python
template("my_template") {
action("${target_name}__helper") {
...
}
action(target_name) {
deps = [ ":${target_name}__helper" ]
...
}
}
```

### Variables
Prefix variables within templates and targets with an underscore. For example:

```python
template("example") {
_outer_sources = invoker.extra_sources

source_set(target_name) {
_inner_sources = invoker.sources
sources = _outer_sources + _inner_sources
}
}
```

This convention conveys that `sources` is relevant to `source_set`, while
`_outer_sources` and `_inner_sources` are not.

### Passing Arguments to Targets
Pass arguments to targets by assigning them directly within target definitions.

When a GN template goes to resolve `invoker.FOO`, GN will look in all enclosing
scopes of the target's definition. It is hard to figure out where `invoker.FOO`
is coming from when it is not assigned directly within the target definition.

Bad:
```python
template("hello") {
script = "..."
action(target_name) {
# This action will see "script" from the enclosing scope.
}
}
```

Good:
```python
template("hello") {
action(target_name) {
script = "..." # This is equivalent, but much more clear.
}
}
```

**Exception:** `testonly` and `visibility` can be set in the outer scope so that
they are implicitly passed to all targets within a template.

This is okay:
```python
template("hello") {
testonly = true # Applies to all nested targets.
action(target_name) {
script = "..."
}
}
```

### Using forward_variables_from()
Using `forward_variables_from()` is encouraged, but `testonly` and `visibility`
should always be listed explicitly in case they are assigned in an enclosing
scope (applies to the `"*"` variant of `forward_variables_from()`).
See [this bug](https://bugs.chromium.org/p/chromium/issues/detail?id=862232)
for more context.

```python
template("action_wrapper") {
action(target_name) {
forward_variables_from(invoker, "*", [ "testonly", "visibility" ])
forward_variables_from(invoker, [ "testonly", "visibility" ])
...
}
}
```

## Useful Ninja Flags
Useful ninja flags when developing build rules:
* `ninja -v` - log the full command-line of every target.
* `ninja -v -n` - log the full command-line of every target without having
to wait for a build.
* `ninja -w dupbuild=err` - fail if multiple targets have the same output.
* `ninja -d keeprsp` - prevent ninja from deleting response files.
* `ninja -n -d explain` - print why ninja thinks a target is dirty.
* `ninja -j1` - execute only one command at a time.

0 comments on commit bd10a66

Please sign in to comment.