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

Side by Side Diff: chrome/chrome_dll.gypi

Issue 1479283002: Reland: Crashpad Windows: Use the Crashpad client instead of Breakpad on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: with crashpad 1f3ced1846f3956e678c562c90e0d6c970543617 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_browser.gypi ('k') | chrome/chrome_exe.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 'conditions': [ 5 'conditions': [
6 # Dummy target to allow chrome to require chrome_dll to build 6 # Dummy target to allow chrome to require chrome_dll to build
7 # without actually linking to the library 7 # without actually linking to the library
8 ['OS=="mac"', { 8 ['OS=="mac"', {
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 'app/chrome_main_delegate.h', 116 'app/chrome_main_delegate.h',
117 'app/chrome_main_mac.h', 117 'app/chrome_main_mac.h',
118 'app/chrome_main_mac.mm', 118 'app/chrome_main_mac.mm',
119 'app/close_handle_hook_win.cc', 119 'app/close_handle_hook_win.cc',
120 'app/close_handle_hook_win.h', 120 'app/close_handle_hook_win.h',
121 'app/delay_load_hook_win.cc', 121 'app/delay_load_hook_win.cc',
122 'app/delay_load_hook_win.h', 122 'app/delay_load_hook_win.h',
123 ], 123 ],
124 'dependencies': [ 124 'dependencies': [
125 '<@(chromium_browser_dependencies)', 125 '<@(chromium_browser_dependencies)',
126 '../components/components.gyp:crash_component',
126 '../content/content.gyp:content_app_browser', 127 '../content/content.gyp:content_app_browser',
128 '../third_party/crashpad/crashpad/handler/handler.gyp:crashpad_handl er',
127 ], 129 ],
128 'conditions': [ 130 'conditions': [
129 ['OS=="win"', { 131 ['OS=="win"', {
130 'dependencies': [ 132 'dependencies': [
131 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', 133 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf',
132 ], 134 ],
133 }], 135 }],
134 ['OS=="win" and configuration_policy==1', { 136 ['OS=="win" and configuration_policy==1', {
135 'dependencies': [ 137 'dependencies': [
136 '<(DEPTH)/components/components.gyp:policy', 138 '<(DEPTH)/components/components.gyp:policy',
(...skipping 19 matching lines...) Expand all
156 'chrome_version_resources', 158 'chrome_version_resources',
157 '../base/trace_event/etw_manifest/etw_manifest.gyp:etw_manifest' , 159 '../base/trace_event/etw_manifest/etw_manifest.gyp:etw_manifest' ,
158 '../chrome/chrome_resources.gyp:chrome_unscaled_resources', 160 '../chrome/chrome_resources.gyp:chrome_unscaled_resources',
159 '../content/app/resources/content_resources.gyp:content_resource s', 161 '../content/app/resources/content_resources.gyp:content_resource s',
160 '../crypto/crypto.gyp:crypto', 162 '../crypto/crypto.gyp:crypto',
161 '../net/net.gyp:net_resources', 163 '../net/net.gyp:net_resources',
162 '../ui/views/views.gyp:views', 164 '../ui/views/views.gyp:views',
163 ], 165 ],
164 'sources': [ 166 'sources': [
165 'app/chrome_dll.rc', 167 'app/chrome_dll.rc',
168 'app/chrome_crash_reporter_client.cc',
169 'app/chrome_crash_reporter_client.h',
166 170
167 # ETW Manifest. 171 # ETW Manifest.
168 '<(SHARED_INTERMEDIATE_DIR)/base/trace_event/etw_manifest/chrome _events_win.rc', 172 '<(SHARED_INTERMEDIATE_DIR)/base/trace_event/etw_manifest/chrome _events_win.rc',
169 173
170 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc ', 174 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc ',
171 175
172 # Cursors. 176 # Cursors.
173 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_unscaled_resources.r c', 177 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_unscaled_resources.r c',
174 ], 178 ],
175 'include_dirs': [ 179 'include_dirs': [
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 { 347 {
344 # GN version: //chrome:chrome_child 348 # GN version: //chrome:chrome_child
345 'target_name': 'chrome_child_dll', 349 'target_name': 'chrome_child_dll',
346 'type': 'shared_library', 350 'type': 'shared_library',
347 'product_name': 'chrome_child', 351 'product_name': 'chrome_child',
348 'variables': { 352 'variables': {
349 'enable_wexit_time_destructors': 1, 353 'enable_wexit_time_destructors': 1,
350 }, 354 },
351 'dependencies': [ 355 'dependencies': [
352 '<@(chromium_child_dependencies)', 356 '<@(chromium_child_dependencies)',
357 '../components/components.gyp:browser_watcher_client',
358 '../components/components.gyp:crash_component',
353 '../content/content.gyp:content_app_child', 359 '../content/content.gyp:content_app_child',
354 'chrome_version_resources', 360 'chrome_version_resources',
355 'policy_path_parser', 361 'policy_path_parser',
356 ], 362 ],
357 'defines': [ 363 'defines': [
358 'CHROME_MULTIPLE_DLL_CHILD', 364 'CHROME_MULTIPLE_DLL_CHILD',
359 ], 365 ],
360 'sources': [ 366 'sources': [
361 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', 367 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc',
368 'app/chrome_crash_reporter_client.cc',
369 'app/chrome_crash_reporter_client.h',
362 'app/chrome_main.cc', 370 'app/chrome_main.cc',
363 'app/chrome_main_delegate.cc', 371 'app/chrome_main_delegate.cc',
364 'app/chrome_main_delegate.h', 372 'app/chrome_main_delegate.h',
365 'app/close_handle_hook_win.cc', 373 'app/close_handle_hook_win.cc',
366 'app/close_handle_hook_win.h', 374 'app/close_handle_hook_win.h',
367 ], 375 ],
368 'conditions': [ 376 'conditions': [
369 ['OS=="win" and win_use_allocator_shim==1', { 377 ['OS=="win" and win_use_allocator_shim==1', {
370 'dependencies': [ 378 'dependencies': [
371 '<(allocator_target)', 379 '<(allocator_target)',
(...skipping 13 matching lines...) Expand all
385 }], 393 }],
386 ['chrome_pgo_phase==2', { 394 ['chrome_pgo_phase==2', {
387 'msvs_settings': { 395 'msvs_settings': {
388 'VCLinkerTool': { 396 'VCLinkerTool': {
389 'LinkTimeCodeGeneration': '3', 397 'LinkTimeCodeGeneration': '3',
390 }, 398 },
391 }, 399 },
392 }], 400 }],
393 ] 401 ]
394 }], 402 }],
403 ['OS=="win" and configuration_policy==1', {
404 'dependencies': [
405 '<(DEPTH)/components/components.gyp:policy',
406 ],
407 }],
395 ['enable_plugins==1', { 408 ['enable_plugins==1', {
396 'dependencies': [ 409 'dependencies': [
397 '../pdf/pdf.gyp:pdf', 410 '../pdf/pdf.gyp:pdf',
398 ], 411 ],
399 }], 412 }],
400 ], 413 ],
401 }, # target chrome_child_dll 414 }, # target chrome_child_dll
402 ], 415 ],
403 }], 416 }],
404 ], 417 ],
405 } 418 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/chrome_exe.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698