| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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': [ | 83 'dependencies': [ |
| 84 'crashpad_snapshot_test_module_crashy_initializer', |
| 84 'crashpad_snapshot_test_no_op', | 85 'crashpad_snapshot_test_no_op', |
| 85 ], | 86 ], |
| 86 'link_settings': { | 87 'link_settings': { |
| 87 'libraries': [ | 88 'libraries': [ |
| 88 '$(SDKROOT)/System/Library/Frameworks/OpenCL.framework', | 89 '$(SDKROOT)/System/Library/Frameworks/OpenCL.framework', |
| 89 ], | 90 ], |
| 90 }, | 91 }, |
| 91 }], | 92 }], |
| 92 ], | 93 ], |
| 93 }, | 94 }, |
| 94 { | 95 { |
| 95 'target_name': 'crashpad_snapshot_test_module', | 96 'target_name': 'crashpad_snapshot_test_module', |
| 96 'type': 'loadable_module', | 97 'type': 'loadable_module', |
| 97 'dependencies': [ | 98 'dependencies': [ |
| 98 '../client/client.gyp:crashpad_client', | 99 '../client/client.gyp:crashpad_client', |
| 99 '../third_party/mini_chromium/mini_chromium.gyp:base', | 100 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 100 ], | 101 ], |
| 101 'include_dirs': [ | 102 'include_dirs': [ |
| 102 '..', | 103 '..', |
| 103 ], | 104 ], |
| 104 'sources': [ | 105 'sources': [ |
| 105 'crashpad_info_client_options_test_module.cc', | 106 'crashpad_info_client_options_test_module.cc', |
| 106 ], | 107 ], |
| 107 }, | 108 }, |
| 108 ], | 109 ], |
| 109 'conditions': [ | 110 'conditions': [ |
| 110 ['OS=="mac"', { | 111 ['OS=="mac"', { |
| 111 'targets': [ | 112 'targets': [ |
| 112 { | 113 { |
| 114 'target_name': 'crashpad_snapshot_test_module_crashy_initializer', |
| 115 'type': 'loadable_module', |
| 116 'sources': [ |
| 117 'mac/mach_o_image_annotations_reader_test_module_crashy_initializer.
cc', |
| 118 ], |
| 119 }, |
| 120 { |
| 113 'target_name': 'crashpad_snapshot_test_no_op', | 121 'target_name': 'crashpad_snapshot_test_no_op', |
| 114 'type': 'executable', | 122 'type': 'executable', |
| 115 'sources': [ | 123 'sources': [ |
| 116 'mac/mach_o_image_annotations_reader_test_no_op.cc', | 124 'mac/mach_o_image_annotations_reader_test_no_op.cc', |
| 117 ], | 125 ], |
| 118 }, | 126 }, |
| 119 ], | 127 ], |
| 120 }], | 128 }], |
| 121 ], | 129 ], |
| 122 } | 130 } |
| OLD | NEW |