OLD | NEW |
1 # Copyright 2014 The Crashpad Authors. All rights reserved. | 1 # Copyright 2014 The Crashpad Authors. All rights reserved. |
2 # | 2 # |
3 # Licensed under the Apache License, Version 2.0 (the "License"); | 3 # Licensed under the Apache License, Version 2.0 (the "License"); |
4 # you may not use this file except in compliance with the License. | 4 # you may not use this file except in compliance with the License. |
5 # You may obtain a copy of the License at | 5 # You may obtain a copy of the License at |
6 # | 6 # |
7 # http://www.apache.org/licenses/LICENSE-2.0 | 7 # http://www.apache.org/licenses/LICENSE-2.0 |
8 # | 8 # |
9 # Unless required by applicable law or agreed to in writing, software | 9 # Unless required by applicable law or agreed to in writing, software |
10 # distributed under the License is distributed on an "AS IS" BASIS, | 10 # distributed under the License is distributed on an "AS IS" BASIS, |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 'dependencies': [ | 86 'dependencies': [ |
87 'crashpad_snapshot_test_module_crashy_initializer', | 87 'crashpad_snapshot_test_module_crashy_initializer', |
88 'crashpad_snapshot_test_no_op', | 88 'crashpad_snapshot_test_no_op', |
89 ], | 89 ], |
90 'link_settings': { | 90 'link_settings': { |
91 'libraries': [ | 91 'libraries': [ |
92 '$(SDKROOT)/System/Library/Frameworks/OpenCL.framework', | 92 '$(SDKROOT)/System/Library/Frameworks/OpenCL.framework', |
93 ], | 93 ], |
94 }, | 94 }, |
95 }], | 95 }], |
| 96 ['OS=="win"', { |
| 97 'dependencies': [ |
| 98 'crashpad_snapshot_test_crashing_child', |
| 99 ], |
| 100 }], |
96 ], | 101 ], |
97 }, | 102 }, |
98 { | 103 { |
99 'target_name': 'crashpad_snapshot_test_module', | 104 'target_name': 'crashpad_snapshot_test_module', |
100 'type': 'loadable_module', | 105 'type': 'loadable_module', |
101 'dependencies': [ | 106 'dependencies': [ |
102 '../client/client.gyp:crashpad_client', | 107 '../client/client.gyp:crashpad_client', |
103 '../third_party/mini_chromium/mini_chromium.gyp:base', | 108 '../third_party/mini_chromium/mini_chromium.gyp:base', |
104 ], | 109 ], |
105 'include_dirs': [ | 110 'include_dirs': [ |
(...skipping 16 matching lines...) Expand all Loading... |
122 }, | 127 }, |
123 { | 128 { |
124 'target_name': 'crashpad_snapshot_test_no_op', | 129 'target_name': 'crashpad_snapshot_test_no_op', |
125 'type': 'executable', | 130 'type': 'executable', |
126 'sources': [ | 131 'sources': [ |
127 'mac/mach_o_image_annotations_reader_test_no_op.cc', | 132 'mac/mach_o_image_annotations_reader_test_no_op.cc', |
128 ], | 133 ], |
129 }, | 134 }, |
130 ], | 135 ], |
131 }], | 136 }], |
| 137 ['OS=="win"', { |
| 138 'targets': [ |
| 139 { |
| 140 'target_name': 'crashpad_snapshot_test_crashing_child', |
| 141 'type': 'executable', |
| 142 'dependencies': [ |
| 143 '../client/client.gyp:crashpad_client', |
| 144 '../compat/compat.gyp:crashpad_compat', |
| 145 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 146 '../util/util.gyp:crashpad_util', |
| 147 ], |
| 148 'sources': [ |
| 149 'win/crashpad_snapshot_test_crashing_child.cc', |
| 150 ], |
| 151 }, |
| 152 ], |
| 153 }], |
132 ], | 154 ], |
133 } | 155 } |
OLD | NEW |