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

Side by Side Diff: chrome/BUILD.gn

Issue 1250853007: Hook up chrome.exe manifest in the Windows GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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/util/version.gni ('k') | chrome/app/version_assembly/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/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/locales.gni") 7 import("//build/config/locales.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//chrome/chrome_repack_locales.gni") 9 import("//chrome/chrome_repack_locales.gni")
10 import("//chrome/version.gni") 10 import("//chrome/version.gni")
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 ":chrome_exe_version", 64 ":chrome_exe_version",
65 ":image_pre_reader", 65 ":image_pre_reader",
66 ":main_dll", 66 ":main_dll",
67 67
68 # 'chrome_nacl_win64" TODO(GYP) 68 # 'chrome_nacl_win64" TODO(GYP)
69 # '../win8/delegate_execute/delegate_execute.gyp:*', TODO(GYP) 69 # '../win8/delegate_execute/delegate_execute.gyp:*', TODO(GYP)
70 # '../win8/metro_driver/metro_driver.gyp:metro_driver', TODO(GYP) 70 # '../win8/metro_driver/metro_driver.gyp:metro_driver', TODO(GYP)
71 "//base", 71 "//base",
72 "//breakpad:breakpad_handler", 72 "//breakpad:breakpad_handler",
73 "//breakpad:breakpad_sender", 73 "//breakpad:breakpad_sender",
74 "//chrome/app/version_assembly:chrome_exe_manifest",
74 "//chrome/browser:chrome_process_finder", 75 "//chrome/browser:chrome_process_finder",
75 "//chrome/chrome_watcher", 76 "//chrome/chrome_watcher",
76 "//chrome/chrome_watcher:client", 77 "//chrome/chrome_watcher:client",
77 "//chrome/installer/util", 78 "//chrome/installer/util",
78 "//chrome_elf", 79 "//chrome_elf",
79 "//components/browser_watcher:browser_watcher_client", 80 "//components/browser_watcher:browser_watcher_client",
80 "//components/crash/app", 81 "//components/crash/app",
81 "//content:startup_helper_win", 82 "//content:startup_helper_win",
82 "//crypto", 83 "//crypto",
83 "//sandbox", 84 "//sandbox",
84 "//ui/gfx", 85 "//ui/gfx",
85 ] 86 ]
87 data_deps = [ "//chrome/app/version_assembly:version_assembly_manifest" ]
88
86 libs = [ 89 libs = [
87 "wintrust.lib", 90 "wintrust.lib",
88 "crypt32.lib", 91 "crypt32.lib",
89 ] 92 ]
90 configs -= [ "//build/config/win:console" ] 93 configs -= [ "//build/config/win:console" ]
91 configs += [ "//build/config/win:windowed" ] 94 configs += [ "//build/config/win:windowed" ]
92 } else if (use_aura) { 95 } else if (use_aura) {
93 # Non-Windows aura entrypoint. 96 # Non-Windows aura entrypoint.
94 sources += [ "app/chrome_exe_main_aura.cc" ] 97 sources += [ "app/chrome_exe_main_aura.cc" ]
95 } 98 }
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
889 rebase_path(chrome_binary, root_build_dir), 892 rebase_path(chrome_binary, root_build_dir),
890 rebase_path(symbol_file, root_build_dir), 893 rebase_path(symbol_file, root_build_dir),
891 ] 894 ]
892 895
893 deps = [ 896 deps = [
894 ":chrome", 897 ":chrome",
895 dump_syms_label, 898 dump_syms_label,
896 ] 899 ]
897 } 900 }
898 } 901 }
OLDNEW
« no previous file with comments | « build/util/version.gni ('k') | chrome/app/version_assembly/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698