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

Unified Diff: chrome/BUILD.gn

Issue 874033003: Fix chrome target in Windows GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix building on chromeos. Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/config/win/BUILD.gn ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/BUILD.gn
diff --git a/chrome/BUILD.gn b/chrome/BUILD.gn
index 70e49a5986a6d16b497702fa602d8f122142e4b2..e85c1daa41ea794dc45e6c5319836e7fe0bf5141 100644
--- a/chrome/BUILD.gn
+++ b/chrome/BUILD.gn
@@ -32,22 +32,49 @@ if (!is_android) {
if (is_win) {
sources += [
"$target_gen_dir/chrome_exe_version.rc",
+ "app/chrome_crash_reporter_client.cc",
+ "app/chrome_crash_reporter_client.h",
+ "app/chrome_exe.rc",
"app/chrome_exe_main_win.cc",
"app/client_util.cc",
"app/client_util.h",
+ "app/chrome_watcher_command_line_win.cc",
+ "app/chrome_watcher_command_line_win.h",
"app/signature_validator_win.cc",
"app/signature_validator_win.h",
+ "common/crash_keys.cc",
+ "common/crash_keys.h'",
"//content/app/startup_helper_win.cc",
+ "//content/public/common/content_switches.cc",
]
deps += [
":chrome_version_resources",
":image_pre_reader",
+ ":main_dll",
+
+ # 'chrome_nacl_win64" TODO(GYP)
+ # '../win8/delegate_execute/delegate_execute.gyp:*', TODO(GYP)
+ # '../win8/metro_driver/metro_driver.gyp:metro_driver', TODO(GYP)
+ "//base",
+ "//breakpad:breakpad_handler",
+ "//breakpad:breakpad_sender",
"//chrome/browser:chrome_process_finder",
"//chrome/chrome_watcher",
"//chrome/chrome_watcher:client",
+ "//chrome/installer/util",
+ "//chrome_elf",
"//components/browser_watcher:browser_watcher_client",
+ "//components/crash/app",
+ "//crypto",
+ "//sandbox",
"//ui/gfx",
]
+ libs = [
+ "wintrust.lib",
+ "crypt32.lib",
+ ]
+ configs -= [ "//build/config/win:console" ]
+ configs += [ "//build/config/win:windowed" ]
} else if (use_aura) {
# Non-Windows aura entrypoint.
sources += [ "app/chrome_exe_main_aura.cc" ]
@@ -99,6 +126,7 @@ if (!is_android) {
deps += [
":packed_extra_resources",
":packed_resources",
+ "//components/startup_metric_utils",
# Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp
# file decide what to do on a per-OS basis; on Mac, internal plugins
« no previous file with comments | « build/config/win/BUILD.gn ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698