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

Side by Side Diff: chrome/BUILD.gn

Issue 2693193005: [Windows MSVC CFG] Turning on linker CFG for all. Removing CFG compile. (Closed)
Patch Set: Created 3 years, 10 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') | chrome_elf/BUILD.gn » ('j') | 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chrome_build.gni") 6 import("//build/config/chrome_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/compiler/pgo/pgo.gni") 8 import("//build/config/compiler/pgo/pgo.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/locales.gni") 10 import("//build/config/locales.gni")
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 configs += [ "//build/config/win:windowed" ] 206 configs += [ "//build/config/win:windowed" ]
207 } 207 }
208 208
209 ldflags = [ 209 ldflags = [
210 "/DELAYLOAD:dbghelp.dll", 210 "/DELAYLOAD:dbghelp.dll",
211 "/DELAYLOAD:dwmapi.dll", 211 "/DELAYLOAD:dwmapi.dll",
212 "/DELAYLOAD:uxtheme.dll", 212 "/DELAYLOAD:uxtheme.dll",
213 "/DELAYLOAD:ole32.dll", 213 "/DELAYLOAD:ole32.dll",
214 "/DELAYLOAD:oleaut32.dll", 214 "/DELAYLOAD:oleaut32.dll",
215 ] 215 ]
216
217 # Turn on CFG for this project.
218 configs += [ "//build/config/win:win_msvc_cfg" ]
219 } else if (use_aura) { 216 } else if (use_aura) {
220 # Non-Windows aura entrypoint. 217 # Non-Windows aura entrypoint.
221 sources += [ "app/chrome_exe_main_aura.cc" ] 218 sources += [ "app/chrome_exe_main_aura.cc" ]
222 } 219 }
223 220
224 if (is_linux) { 221 if (is_linux) {
225 sources += [ 222 sources += [
226 "app/chrome_dll_resource.h", 223 "app/chrome_dll_resource.h",
227 "app/chrome_main.cc", 224 "app/chrome_main.cc",
228 "app/chrome_main_delegate.cc", 225 "app/chrome_main_delegate.cc",
(...skipping 1384 matching lines...) Expand 10 before | Expand all | Expand 10 after
1613 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1610 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1614 "//chrome/tools/build/linux/chrome-wrapper", 1611 "//chrome/tools/build/linux/chrome-wrapper",
1615 "//third_party/xdg-utils/scripts/xdg-mime", 1612 "//third_party/xdg-utils/scripts/xdg-mime",
1616 "//third_party/xdg-utils/scripts/xdg-settings", 1613 "//third_party/xdg-utils/scripts/xdg-settings",
1617 ] 1614 ]
1618 outputs = [ 1615 outputs = [
1619 "$root_out_dir/{{source_file_part}}", 1616 "$root_out_dir/{{source_file_part}}",
1620 ] 1617 ]
1621 } 1618 }
1622 } 1619 }
OLDNEW
« no previous file with comments | « build/config/win/BUILD.gn ('k') | chrome_elf/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698