| OLD | NEW |
| 1 # GN Frequently Asked Questions | 1 # GN Frequently Asked Questions |
| 2 | 2 |
| 3 [TOC] | 3 [TOC] |
| 4 | 4 |
| 5 ## How will the build be converted? | 5 ## How will the build be converted? |
| 6 | 6 |
| 7 We intend to build a second independent build in parallel to the GYP | 7 We intend to build a second independent build in parallel to the GYP |
| 8 build. Previous efforts to generate GYP as an intermediate stage proved | 8 build. Previous efforts to generate GYP as an intermediate stage proved |
| 9 difficult. There will be some smaller set of bots compiling this build, | 9 difficult. There will be some smaller set of bots compiling this build, |
| 10 and we'll keep the GN build running on these configurations. | 10 and we'll keep the GN build running on these configurations. |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 * The default is a developer build. To do an official build, set | 114 * The default is a developer build. To do an official build, set |
| 115 `is_official_build = true` | 115 `is_official_build = true` |
| 116 * The default is Chromium branding. To do Chrome branding, set | 116 * The default is Chromium branding. To do Chrome branding, set |
| 117 `is_chrome_branded = true` | 117 `is_chrome_branded = true` |
| 118 | 118 |
| 119 ## How do I do cross-compiles? | 119 ## How do I do cross-compiles? |
| 120 | 120 |
| 121 GN has robust support for doing cross compiles and building things for | 121 GN has robust support for doing cross compiles and building things for |
| 122 multiple architectures in a single build. | 122 multiple architectures in a single build. |
| 123 | 123 |
| 124 See [GNCrossCompiles](GNCrossCompiles.md) for more info. | 124 See [GNCrossCompiles](cross_compiles.md) for more info. |
| OLD | NEW |