OLD | NEW |
1 # The MB (Meta-Build wrapper) user guide | 1 # The MB (Meta-Build wrapper) user guide |
2 | 2 |
3 [TOC] | 3 [TOC] |
4 | 4 |
5 ## Introduction | 5 ## Introduction |
6 | 6 |
7 `mb` is a simple python wrapper around the GYP and GN meta-build tools to | 7 `mb` is a simple python wrapper around the GYP and GN meta-build tools to |
8 be used as part of the GYP->GN migration. | 8 be used as part of the GYP->GN migration. |
9 | 9 |
10 It is intended to be used by bots to make it easier to manage the configuration | 10 It is intended to be used by bots to make it easier to manage the configuration |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 run than you expect; running `'mb -v'` will print what it's doing and | 288 run than you expect; running `'mb -v'` will print what it's doing and |
289 run the commands; `'mb -n'` will print what it will do but *not* run | 289 run the commands; `'mb -n'` will print what it will do but *not* run |
290 the commands. | 290 the commands. |
291 | 291 |
292 If you hit weirder things than that, add some print statements to the | 292 If you hit weirder things than that, add some print statements to the |
293 python script, send a question to gn-dev@chromium.org, or | 293 python script, send a question to gn-dev@chromium.org, or |
294 [file a bug](https://crbug.com/new) with the label | 294 [file a bug](https://crbug.com/new) with the label |
295 'mb' and cc: dpranke@chromium.org. | 295 'mb' and cc: dpranke@chromium.org. |
296 | 296 |
297 | 297 |
OLD | NEW |