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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 'dependencies': [ | 43 'dependencies': [ |
44 '../breakpad/breakpad.gyp:breakpad_handler', | 44 '../breakpad/breakpad.gyp:breakpad_handler', |
45 '../breakpad/breakpad.gyp:breakpad_sender', | 45 '../breakpad/breakpad.gyp:breakpad_sender', |
46 '../sandbox/sandbox.gyp:sandbox', | 46 '../sandbox/sandbox.gyp:sandbox', |
47 ], | 47 ], |
48 }], | 48 }], |
49 ], | 49 ], |
50 }, | 50 }, |
51 ], | 51 ], |
52 'conditions': [ | 52 'conditions': [ |
| 53 ['OS=="win"', { |
| 54 'targets': [ |
| 55 { |
| 56 'target_name': 'breakpad_crash_service', |
| 57 'type': 'static_library', |
| 58 'dependencies': [ |
| 59 '../base/base.gyp:base', |
| 60 '../breakpad/breakpad.gyp:breakpad_handler', |
| 61 '../breakpad/breakpad.gyp:breakpad_sender', |
| 62 ], |
| 63 'sources': [ |
| 64 'breakpad/tools/crash_service.cc', |
| 65 'breakpad/tools/crash_service.h', |
| 66 ], |
| 67 }, |
| 68 ], |
| 69 }], |
53 ['OS=="win" and target_arch=="ia32"', { | 70 ['OS=="win" and target_arch=="ia32"', { |
54 'targets': [ | 71 'targets': [ |
55 { | 72 { |
56 'target_name': 'breakpad_win64', | 73 'target_name': 'breakpad_win64', |
57 'type': 'static_library', | 74 'type': 'static_library', |
58 'variables': { | 75 'variables': { |
59 'breakpad_component_target': 1, | 76 'breakpad_component_target': 1, |
60 }, | 77 }, |
61 'dependencies': [ | 78 'dependencies': [ |
62 '../base/base.gyp:base_nacl_win64', | 79 '../base/base.gyp:base_nacl_win64', |
63 '../breakpad/breakpad.gyp:breakpad_handler_win64', | 80 '../breakpad/breakpad.gyp:breakpad_handler_win64', |
64 '../breakpad/breakpad.gyp:breakpad_sender_win64', | 81 '../breakpad/breakpad.gyp:breakpad_sender_win64', |
65 '../sandbox/sandbox.gyp:sandbox_win64', | 82 '../sandbox/sandbox.gyp:sandbox_win64', |
66 ], | 83 ], |
67 'configurations': { | 84 'configurations': { |
68 'Common_Base': { | 85 'Common_Base': { |
69 'msvs_target_platform': 'x64', | 86 'msvs_target_platform': 'x64', |
70 }, | 87 }, |
71 }, | 88 }, |
72 }, | 89 }, |
| 90 { |
| 91 'target_name': 'breakpad_crash_service_win64', |
| 92 'type': 'static_library', |
| 93 'dependencies': [ |
| 94 '../base/base.gyp:base_nacl_win64', |
| 95 '../breakpad/breakpad.gyp:breakpad_handler_win64', |
| 96 '../breakpad/breakpad.gyp:breakpad_sender_win64', |
| 97 ], |
| 98 'sources': [ |
| 99 'breakpad/tools/crash_service.cc', |
| 100 'breakpad/tools/crash_service.h', |
| 101 ], |
| 102 'configurations': { |
| 103 'Common_Base': { |
| 104 'msvs_target_platform': 'x64', |
| 105 }, |
| 106 }, |
| 107 }, |
73 ], | 108 ], |
74 }], | 109 }], |
75 ['OS=="mac"', { | 110 ['OS=="mac"', { |
76 'targets': [ | 111 'targets': [ |
77 { | 112 { |
78 'target_name': 'breakpad_stubs', | 113 'target_name': 'breakpad_stubs', |
79 'type': 'static_library', | 114 'type': 'static_library', |
80 'dependencies': [ | 115 'dependencies': [ |
81 '../base/base.gyp:base', | 116 '../base/base.gyp:base', |
82 ], | 117 ], |
83 'sources': [ | 118 'sources': [ |
84 'breakpad/breakpad_client.cc', | 119 'breakpad/breakpad_client.cc', |
85 'breakpad/breakpad_client.h', | 120 'breakpad/breakpad_client.h', |
86 'breakpad/breakpad_mac.h', | 121 'breakpad/breakpad_mac.h', |
87 'breakpad/breakpad_mac_stubs.mm', | 122 'breakpad/breakpad_mac_stubs.mm', |
88 ], | 123 ], |
89 }, | 124 }, |
90 ], | 125 ], |
91 }], | 126 }], |
92 ], | 127 ], |
93 } | 128 } |
OLD | NEW |