| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/locales.gni") | 6 import("//build/config/locales.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//chrome/chrome_repack_locales.gni") | 8 import("//chrome/chrome_repack_locales.gni") |
| 9 import("//chrome/version.gni") | 9 import("//chrome/version.gni") |
| 10 | 10 |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 ] | 182 ] |
| 183 if (enable_configuration_policy) { | 183 if (enable_configuration_policy) { |
| 184 deps += [ "//components/policy" ] | 184 deps += [ "//components/policy" ] |
| 185 } | 185 } |
| 186 if (current_cpu == "x86") { | 186 if (current_cpu == "x86") { |
| 187 # Add a dependency to custom import library for user32 delay imports only | 187 # Add a dependency to custom import library for user32 delay imports only |
| 188 # in x86 builds. | 188 # in x86 builds. |
| 189 #deps += [ 'chrome_user32_delay_imports' ] TODO(GYP) | 189 #deps += [ 'chrome_user32_delay_imports' ] TODO(GYP) |
| 190 } | 190 } |
| 191 | 191 |
| 192 # TODO(GYP) incremental linking flags in debug builds | 192 # This is a large module that can't do incremental linking in some cases. |
| 193 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 193 configs -= [ "//build/config/win:default_incremental_linking" ] |
| 194 configs += [ "//build/config/win:default_large_module_incremental_linking" ] |
| 194 | 195 |
| 195 # TODO(GYP) Lots of VCLinkerTool stuff on Windows. | 196 # TODO(GYP) Lots of VCLinkerTool stuff on Windows. |
| 196 | 197 |
| 197 # TODO(GYP) chrome_pgo_phase on Windows. | 198 # TODO(GYP) chrome_pgo_phase on Windows. |
| 198 } | 199 } |
| 199 | 200 |
| 200 if (use_aura) { | 201 if (use_aura) { |
| 201 deps += [ "//ui/compositor" ] | 202 deps += [ "//ui/compositor" ] |
| 202 } | 203 } |
| 203 | 204 |
| (...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 728 | 729 |
| 729 args = [ | 730 args = [ |
| 730 rebase_path(infile, root_build_dir), | 731 rebase_path(infile, root_build_dir), |
| 731 rebase_path(outfile, root_build_dir), | 732 rebase_path(outfile, root_build_dir), |
| 732 "-e s/@@NAME@@/$name/", | 733 "-e s/@@NAME@@/$name/", |
| 733 "-e s/@@FILENAME@@/$filename/", | 734 "-e s/@@FILENAME@@/$filename/", |
| 734 "-e s/@@CONFDIR@@/$confdir/", | 735 "-e s/@@CONFDIR@@/$confdir/", |
| 735 ] | 736 ] |
| 736 } | 737 } |
| 737 } | 738 } |
| OLD | NEW |