Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(800)

Side by Side Diff: chrome/BUILD.gn

Issue 1019353004: Incremental linking setup for GN Windows build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: symbol level Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/config/win/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « build/config/win/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698