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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 1481703002: win: Move Crashpad all into chrome.exe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix and rebase Created 5 years 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 | « chrome/chrome_dll.gypi ('k') | chrome/chrome_tests_unit.gypi » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //chrome 8 # GN version: //chrome
9 'target_name': 'chrome', 9 'target_name': 'chrome',
10 'type': 'none', 10 'type': 'none',
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 '<(DEPTH)/content/public/common/content_switches.cc', 64 '<(DEPTH)/content/public/common/content_switches.cc',
65 'app/chrome_exe_load_config_win.cc', 65 'app/chrome_exe_load_config_win.cc',
66 'app/chrome_exe_main_aura.cc', 66 'app/chrome_exe_main_aura.cc',
67 'app/chrome_exe_main_mac.c', 67 'app/chrome_exe_main_mac.c',
68 'app/chrome_exe_main_win.cc', 68 'app/chrome_exe_main_win.cc',
69 'app/chrome_exe_resource.h', 69 'app/chrome_exe_resource.h',
70 'app/chrome_watcher_client_win.cc', 70 'app/chrome_watcher_client_win.cc',
71 'app/chrome_watcher_client_win.h', 71 'app/chrome_watcher_client_win.h',
72 'app/chrome_watcher_command_line_win.cc', 72 'app/chrome_watcher_command_line_win.cc',
73 'app/chrome_watcher_command_line_win.h', 73 'app/chrome_watcher_command_line_win.h',
74 'app/kasko_client.cc',
75 'app/kasko_client.h',
74 'app/main_dll_loader_win.cc', 76 'app/main_dll_loader_win.cc',
75 'app/main_dll_loader_win.h', 77 'app/main_dll_loader_win.h',
76 'app/kasko_client.cc',
77 'app/kasko_client.h',
78 'app/signature_validator_win.cc', 78 'app/signature_validator_win.cc',
79 'app/signature_validator_win.h', 79 'app/signature_validator_win.h',
80 ], 80 ],
81 'mac_bundle_resources': [ 81 'mac_bundle_resources': [
82 'app/app-Info.plist', 82 'app/app-Info.plist',
83 ], 83 ],
84 # TODO(mark): Come up with a fancier way to do this. It should only 84 # TODO(mark): Come up with a fancier way to do this. It should only
85 # be necessary to list app-Info.plist once, not the three times it is 85 # be necessary to list app-Info.plist once, not the three times it is
86 # listed here. 86 # listed here.
87 'mac_bundle_resources!': [ 87 'mac_bundle_resources!': [
(...skipping 10 matching lines...) Expand all
98 'ldflags': [ 98 'ldflags': [
99 '-Wl,-section-ordering-file=<(order_text_section)' ], 99 '-Wl,-section-ordering-file=<(order_text_section)' ],
100 }], 100 }],
101 ] 101 ]
102 }], 102 }],
103 ['OS == "win"', { 103 ['OS == "win"', {
104 'dependencies': [ 104 'dependencies': [
105 'chrome_watcher', 105 'chrome_watcher',
106 'chrome_watcher_client', 106 'chrome_watcher_client',
107 '../components/components.gyp:browser_watcher_client', 107 '../components/components.gyp:browser_watcher_client',
108 '../components/components.gyp:crash_component',
108 '../third_party/crashpad/crashpad/handler/handler.gyp:crashpad_handl er_lib', 109 '../third_party/crashpad/crashpad/handler/handler.gyp:crashpad_handl er_lib',
109 ], 110 ],
111 'sources': [
112 'app/chrome_crash_reporter_client.cc',
113 'app/chrome_crash_reporter_client.h',
114 ],
110 'conditions': [ 115 'conditions': [
111 ['kasko==1', { 116 ['kasko==1', {
112 'dependencies': [ 117 'dependencies': [
113 'kasko_dll', 118 'kasko_dll',
114 ], 119 ],
115 'sources': [ 120 'sources': [
116 'app/chrome_crash_reporter_client.cc', 121 'app/chrome_crash_reporter_client.cc',
117 ], 122 ],
118 }], 123 }],
119 ['win_console_app==1', { 124 ['win_console_app==1', {
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 'dependencies': [ 629 'dependencies': [
625 'chrome_nacl_win64', 630 'chrome_nacl_win64',
626 ], 631 ],
627 }], 632 }],
628 ], 633 ],
629 }, 634 },
630 ], 635 ],
631 }], 636 }],
632 ], 637 ],
633 } 638 }
OLDNEW
« no previous file with comments | « chrome/chrome_dll.gypi ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698