| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # ============================================================================= | 5 # ============================================================================= |
| 6 # BUILD FLAGS | 6 # BUILD FLAGS |
| 7 # ============================================================================= | 7 # ============================================================================= |
| 8 # | 8 # |
| 9 # This block lists input arguments to the build, along with their default | 9 # This block lists input arguments to the build, along with their default |
| 10 # values. GN requires listing them explicitly so it can validate input and have | 10 # values. GN requires listing them explicitly so it can validate input and have |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 # to configure warnings. | 34 # to configure warnings. |
| 35 is_clang = (os == "mac" || os == "ios" || os == "linux") | 35 is_clang = (os == "mac" || os == "ios" || os == "linux") |
| 36 | 36 |
| 37 # Forces a 64-bit build on Windows. Does nothing on other platforms. Normally | 37 # Forces a 64-bit build on Windows. Does nothing on other platforms. Normally |
| 38 # we build 32-bit on Windows regardless of the current host OS bit depth. | 38 # we build 32-bit on Windows regardless of the current host OS bit depth. |
| 39 # Setting this flag will override this logic and generate 64-bit toolchains. | 39 # Setting this flag will override this logic and generate 64-bit toolchains. |
| 40 # | 40 # |
| 41 # Normally this would get set automatically when you specify a target using | 41 # Normally this would get set automatically when you specify a target using |
| 42 # the 64-bit toolchain. You can also set this on the command line to convert | 42 # the 64-bit toolchain. You can also set this on the command line to convert |
| 43 # the default toolchain to 64-bit. | 43 # the default toolchain to 64-bit. |
| 44 force_win64 = false | 44 # Mojo Windows only tries to make x64 work at the moment. |
| 45 force_win64 = true |
| 45 | 46 |
| 46 # Selects the desired build flavor. Official builds get additional | 47 # Selects the desired build flavor. Official builds get additional |
| 47 # processing to prepare for release. Normally you will want to develop and | 48 # processing to prepare for release. Normally you will want to develop and |
| 48 # test with this flag off. | 49 # test with this flag off. |
| 49 is_official_build = false | 50 is_official_build = false |
| 50 | 51 |
| 51 # Select the desired branding flavor. False means normal Chromium branding, | 52 # Select the desired branding flavor. False means normal Chromium branding, |
| 52 # true means official Google Chrome branding (requires extra Google-internal | 53 # true means official Google Chrome branding (requires extra Google-internal |
| 53 # resources). | 54 # resources). |
| 54 is_chrome_branded = false | 55 is_chrome_branded = false |
| (...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 if (defined(invoker.output_extension)) { output_extension = invoker.output
_extension } | 714 if (defined(invoker.output_extension)) { output_extension = invoker.output
_extension } |
| 714 if (defined(invoker.output_name)) { output_name = invoker.output_name } | 715 if (defined(invoker.output_name)) { output_name = invoker.output_name } |
| 715 if (defined(invoker.public)) { public = invoker.public } | 716 if (defined(invoker.public)) { public = invoker.public } |
| 716 if (defined(invoker.public_configs)) { public_configs = invoker.public_con
figs } | 717 if (defined(invoker.public_configs)) { public_configs = invoker.public_con
figs } |
| 717 if (defined(invoker.public_deps)) { public_deps = invoker.public_deps } | 718 if (defined(invoker.public_deps)) { public_deps = invoker.public_deps } |
| 718 if (defined(invoker.sources)) { sources = invoker.sources } | 719 if (defined(invoker.sources)) { sources = invoker.sources } |
| 719 if (defined(invoker.visibility)) { visibility = invoker.visibility } | 720 if (defined(invoker.visibility)) { visibility = invoker.visibility } |
| 720 } | 721 } |
| 721 } | 722 } |
| 722 } | 723 } |
| OLD | NEW |