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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 'mac/process_reader_test.cc', | 73 'mac/process_reader_test.cc', |
74 'mac/process_types_test.cc', | 74 'mac/process_types_test.cc', |
75 'mac/system_snapshot_mac_test.cc', | 75 'mac/system_snapshot_mac_test.cc', |
76 'minidump/process_snapshot_minidump_test.cc', | 76 'minidump/process_snapshot_minidump_test.cc', |
77 'win/pe_image_annotations_reader_test.cc', | 77 'win/pe_image_annotations_reader_test.cc', |
78 'win/process_reader_win_test.cc', | 78 'win/process_reader_win_test.cc', |
79 'win/system_snapshot_win_test.cc', | 79 'win/system_snapshot_win_test.cc', |
80 ], | 80 ], |
81 'conditions': [ | 81 'conditions': [ |
82 ['OS=="mac"', { | 82 ['OS=="mac"', { |
| 83 'dependencies': [ |
| 84 'crashpad_snapshot_test_no_op', |
| 85 ], |
83 'link_settings': { | 86 'link_settings': { |
84 'libraries': [ | 87 'libraries': [ |
85 '$(SDKROOT)/System/Library/Frameworks/OpenCL.framework', | 88 '$(SDKROOT)/System/Library/Frameworks/OpenCL.framework', |
86 ], | 89 ], |
87 }, | 90 }, |
88 }], | 91 }], |
89 ], | 92 ], |
90 }, | 93 }, |
91 { | 94 { |
92 'target_name': 'crashpad_snapshot_test_module', | 95 'target_name': 'crashpad_snapshot_test_module', |
93 'type': 'loadable_module', | 96 'type': 'loadable_module', |
94 'dependencies': [ | 97 'dependencies': [ |
95 '../client/client.gyp:crashpad_client', | 98 '../client/client.gyp:crashpad_client', |
96 '../third_party/mini_chromium/mini_chromium.gyp:base', | 99 '../third_party/mini_chromium/mini_chromium.gyp:base', |
97 ], | 100 ], |
98 'include_dirs': [ | 101 'include_dirs': [ |
99 '..', | 102 '..', |
100 ], | 103 ], |
101 'sources': [ | 104 'sources': [ |
102 'crashpad_info_client_options_test_module.cc', | 105 'crashpad_info_client_options_test_module.cc', |
103 ], | 106 ], |
104 }, | 107 }, |
105 ], | 108 ], |
| 109 'conditions': [ |
| 110 ['OS=="mac"', { |
| 111 'targets': [ |
| 112 { |
| 113 'target_name': 'crashpad_snapshot_test_no_op', |
| 114 'type': 'executable', |
| 115 'sources': [ |
| 116 'mac/mach_o_image_annotations_reader_test_no_op.cc', |
| 117 ], |
| 118 }, |
| 119 ], |
| 120 }], |
| 121 ], |
106 } | 122 } |
OLD | NEW |