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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 1416133003: Crashpad Windows: Use the Crashpad client instead of Breakpad on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 5 years, 1 month 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
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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 'ldflags': [ 95 'ldflags': [
96 '-Wl,-section-ordering-file=<(order_text_section)' ], 96 '-Wl,-section-ordering-file=<(order_text_section)' ],
97 }], 97 }],
98 ] 98 ]
99 }], 99 }],
100 ['OS == "win"', { 100 ['OS == "win"', {
101 'dependencies': [ 101 'dependencies': [
102 'chrome_watcher', 102 'chrome_watcher',
103 'chrome_watcher_client', 103 'chrome_watcher_client',
104 '../components/components.gyp:browser_watcher_client', 104 '../components/components.gyp:browser_watcher_client',
105 '../third_party/crashpad/crashpad/handler/handler.gyp:crashpad_handl er_lib',
105 ], 106 ],
106 'conditions': [ 107 'conditions': [
107 ['kasko==1', { 108 ['kasko==1', {
108 'dependencies': [ 109 'dependencies': [
109 'kasko_dll', 110 'kasko_dll',
110 ], 111 ],
111 }], 112 }],
112 ], 113 ],
113 }], 114 }],
114 ['OS == "android"', { 115 ['OS == "android"', {
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 'dependencies': [ 615 'dependencies': [
615 'chrome_nacl_win64', 616 'chrome_nacl_win64',
616 ], 617 ],
617 }], 618 }],
618 ], 619 ],
619 }, 620 },
620 ], 621 ],
621 }], 622 }],
622 ], 623 ],
623 } 624 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698