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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'breakpad_component_target': 0, | 8 'breakpad_component_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 12 matching lines...) Expand all Loading... |
23 'breakpad/app/hard_error_handler_win.cc', | 23 'breakpad/app/hard_error_handler_win.cc', |
24 'breakpad/app/hard_error_handler_win.h', | 24 'breakpad/app/hard_error_handler_win.h', |
25 ], | 25 ], |
26 }], | 26 }], |
27 ], | 27 ], |
28 }, | 28 }, |
29 'targets': [ | 29 'targets': [ |
30 { | 30 { |
31 # Note: if you depend on this target, you need to either link in | 31 # Note: if you depend on this target, you need to either link in |
32 # content.gyp:content_common, or add | 32 # content.gyp:content_common, or add |
33 # content/public/common/content_switches.cc to your sources. | 33 # content/public/common/content_switches*.cc to your sources. |
34 'target_name': 'breakpad_component', | 34 'target_name': 'breakpad_component', |
35 'type': 'static_library', | 35 'type': 'static_library', |
36 'variables': { | 36 'variables': { |
37 'breakpad_component_target': 1, | 37 'breakpad_component_target': 1, |
38 }, | 38 }, |
39 'dependencies': [ | 39 'dependencies': [ |
40 '../base/base.gyp:base', | 40 '../base/base.gyp:base', |
41 ], | 41 ], |
42 'conditions': [ | 42 'conditions': [ |
43 ['OS=="mac"', { | 43 ['OS=="mac"', { |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 'breakpad/tools/crash_service.h', | 88 'breakpad/tools/crash_service.h', |
89 ], | 89 ], |
90 }, | 90 }, |
91 ], | 91 ], |
92 }], | 92 }], |
93 ['OS=="win" and target_arch=="ia32"', { | 93 ['OS=="win" and target_arch=="ia32"', { |
94 'targets': [ | 94 'targets': [ |
95 { | 95 { |
96 # Note: if you depend on this target, you need to either link in | 96 # Note: if you depend on this target, you need to either link in |
97 # content.gyp:content_common, or add | 97 # content.gyp:content_common, or add |
98 # content/public/common/content_switches.cc to your sources. | 98 # content/public/common/content_switches*.cc to your sources. |
99 'target_name': 'breakpad_win64', | 99 'target_name': 'breakpad_win64', |
100 'type': 'static_library', | 100 'type': 'static_library', |
101 'variables': { | 101 'variables': { |
102 'breakpad_component_target': 1, | 102 'breakpad_component_target': 1, |
103 }, | 103 }, |
104 'defines': [ | 104 'defines': [ |
105 'COMPILE_CONTENT_STATICALLY', | 105 'COMPILE_CONTENT_STATICALLY', |
106 ], | 106 ], |
107 'dependencies': [ | 107 'dependencies': [ |
108 '../base/base.gyp:base_nacl_win64', | 108 '../base/base.gyp:base_nacl_win64', |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 'sources/': [ | 181 'sources/': [ |
182 ['include', '^breakpad/browser/crash_handler_host_linux\\.cc$'], | 182 ['include', '^breakpad/browser/crash_handler_host_linux\\.cc$'], |
183 ], | 183 ], |
184 }], | 184 }], |
185 ], | 185 ], |
186 }, | 186 }, |
187 ], | 187 ], |
188 }], | 188 }], |
189 ], | 189 ], |
190 } | 190 } |
OLD | NEW |