OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'target_name': 'crash_component_lib', | 8 'target_name': 'crash_component_lib', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'sources': [ | 10 'sources': [ |
11 'crash/app/breakpad_client.cc', | 11 'crash/app/crash_reporter_client.cc', |
12 'crash/app/breakpad_client.h', | 12 'crash/app/crash_reporter_client.h', |
13 'crash/app/crash_keys_win.cc', | 13 'crash/app/crash_keys_win.cc', |
14 'crash/app/crash_keys_win.h', | 14 'crash/app/crash_keys_win.h', |
15 ], | 15 ], |
16 'include_dirs': [ | 16 'include_dirs': [ |
17 '..', | 17 '..', |
18 '../breakpad/src', | 18 '../breakpad/src', |
19 ], | 19 ], |
20 }, | 20 }, |
21 { | 21 { |
22 'variables': { | 22 'variables': { |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 }], | 120 }], |
121 ['OS=="win" and target_arch=="ia32"', { | 121 ['OS=="win" and target_arch=="ia32"', { |
122 'targets': [ | 122 'targets': [ |
123 { | 123 { |
124 # Note: if you depend on this target, you need to either link in | 124 # Note: if you depend on this target, you need to either link in |
125 # content.gyp:content_common, or add | 125 # content.gyp:content_common, or add |
126 # content/public/common/content_switches.cc to your sources. | 126 # content/public/common/content_switches.cc to your sources. |
127 'target_name': 'breakpad_win64', | 127 'target_name': 'breakpad_win64', |
128 'type': 'static_library', | 128 'type': 'static_library', |
129 'sources': [ | 129 'sources': [ |
130 'crash/app/breakpad_client.cc', | 130 'crash/app/crash_reporter_client.cc', |
131 'crash/app/breakpad_client.h', | 131 'crash/app/crash_reporter_client.h', |
132 'crash/app/breakpad_linux.cc', | 132 'crash/app/breakpad_linux.cc', |
133 'crash/app/breakpad_linux.h', | 133 'crash/app/breakpad_linux.h', |
134 'crash/app/breakpad_linux_impl.h', | 134 'crash/app/breakpad_linux_impl.h', |
135 'crash/app/breakpad_mac.h', | 135 'crash/app/breakpad_mac.h', |
136 'crash/app/breakpad_mac.mm', | 136 'crash/app/breakpad_mac.mm', |
137 'crash/app/breakpad_win.cc', | 137 'crash/app/breakpad_win.cc', |
138 'crash/app/breakpad_win.h', | 138 'crash/app/breakpad_win.h', |
139 # TODO(siggi): test the x64 version too. | 139 # TODO(siggi): test the x64 version too. |
140 'crash/app/crash_keys_win.cc', | 140 'crash/app/crash_keys_win.cc', |
141 'crash/app/crash_keys_win.h', | 141 'crash/app/crash_keys_win.h', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 }], | 180 }], |
181 ['OS=="mac"', { | 181 ['OS=="mac"', { |
182 'targets': [ | 182 'targets': [ |
183 { | 183 { |
184 'target_name': 'breakpad_stubs', | 184 'target_name': 'breakpad_stubs', |
185 'type': 'static_library', | 185 'type': 'static_library', |
186 'dependencies': [ | 186 'dependencies': [ |
187 '../base/base.gyp:base', | 187 '../base/base.gyp:base', |
188 ], | 188 ], |
189 'sources': [ | 189 'sources': [ |
190 'crash/app/breakpad_client.cc', | 190 'crash/app/crash_reporter_client.cc', |
191 'crash/app/breakpad_client.h', | 191 'crash/app/crash_reporter_client.h', |
192 'crash/app/breakpad_mac.h', | 192 'crash/app/breakpad_mac.h', |
193 'crash/app/breakpad_mac_stubs.mm', | 193 'crash/app/breakpad_mac_stubs.mm', |
194 ], | 194 ], |
195 }, | 195 }, |
196 ], | 196 ], |
197 }], | 197 }], |
198 ['os_posix == 1 and OS != "mac" and OS != "ios" and android_webview_build !=
1', { | 198 ['os_posix == 1 and OS != "mac" and OS != "ios" and android_webview_build !=
1', { |
199 'targets': [ | 199 'targets': [ |
200 { | 200 { |
201 # GN version: //components/crash/browser | 201 # GN version: //components/crash/browser |
(...skipping 22 matching lines...) Expand all Loading... |
224 'sources/': [ | 224 'sources/': [ |
225 ['include', '^crash/browser/crash_handler_host_linux\\.cc$'], | 225 ['include', '^crash/browser/crash_handler_host_linux\\.cc$'], |
226 ], | 226 ], |
227 }], | 227 }], |
228 ], | 228 ], |
229 }, | 229 }, |
230 ], | 230 ], |
231 }], | 231 }], |
232 ], | 232 ], |
233 } | 233 } |
OLD | NEW |