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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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_win64', |
109 '../breakpad/breakpad.gyp:breakpad_handler_win64', | 109 '../breakpad/breakpad.gyp:breakpad_handler_win64', |
110 '../breakpad/breakpad.gyp:breakpad_sender_win64', | 110 '../breakpad/breakpad.gyp:breakpad_sender_win64', |
111 '../sandbox/sandbox.gyp:sandbox_win64', | 111 '../sandbox/sandbox.gyp:sandbox_win64', |
112 ], | 112 ], |
113 'configurations': { | 113 'configurations': { |
114 'Common_Base': { | 114 'Common_Base': { |
115 'msvs_target_platform': 'x64', | 115 'msvs_target_platform': 'x64', |
116 }, | 116 }, |
117 }, | 117 }, |
118 }, | 118 }, |
119 { | 119 { |
120 'target_name': 'breakpad_crash_service_win64', | 120 'target_name': 'breakpad_crash_service_win64', |
121 'type': 'static_library', | 121 'type': 'static_library', |
122 'dependencies': [ | 122 'dependencies': [ |
123 '../base/base.gyp:base_nacl_win64', | 123 '../base/base.gyp:base_win64', |
124 '../breakpad/breakpad.gyp:breakpad_handler_win64', | 124 '../breakpad/breakpad.gyp:breakpad_handler_win64', |
125 '../breakpad/breakpad.gyp:breakpad_sender_win64', | 125 '../breakpad/breakpad.gyp:breakpad_sender_win64', |
126 ], | 126 ], |
127 'sources': [ | 127 'sources': [ |
128 'breakpad/tools/crash_service.cc', | 128 'breakpad/tools/crash_service.cc', |
129 'breakpad/tools/crash_service.h', | 129 'breakpad/tools/crash_service.h', |
130 ], | 130 ], |
131 'configurations': { | 131 'configurations': { |
132 'Common_Base': { | 132 'Common_Base': { |
133 'msvs_target_platform': 'x64', | 133 'msvs_target_platform': 'x64', |
(...skipping 47 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 |