OLD | NEW |
---|---|
(Empty) | |
1 # Build overrides in GN | |
2 | |
3 This directory is used to allow different products to customize settings | |
4 for repos that are DEPS'ed in or shared. For example, one might wish to | |
5 build V8 one way in a standalone build, and another when being built as | |
6 part of Chromium. | |
7 | |
8 In order to use the `build_overrides` directory, each product should | |
9 have its own copy of a file, where each file defines a set of variables | |
tfarina
2015/10/13 04:40:46
by 'a file' you mean that which product like v8 or
| |
10 that can be customized per checkout. For example, the `//build` directory | |
11 might be shared between V8 and Chromium (and exactly the same, with V8 | |
12 DEPS'ing in Chromium's copy of `//build`), but each repo might have its own | |
13 local `build_overrides/v8.gni` file. | |
OLD | NEW |