| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 ], | 47 ], |
| 48 }, | 48 }, |
| 49 { | 49 { |
| 50 'target_name': 'crashpad_snapshot_test', | 50 'target_name': 'crashpad_snapshot_test', |
| 51 'type': 'executable', | 51 'type': 'executable', |
| 52 'dependencies': [ | 52 'dependencies': [ |
| 53 'crashpad_snapshot_test_module', | 53 'crashpad_snapshot_test_module', |
| 54 'snapshot.gyp:crashpad_snapshot', | 54 'snapshot.gyp:crashpad_snapshot', |
| 55 '../client/client.gyp:crashpad_client', | 55 '../client/client.gyp:crashpad_client', |
| 56 '../compat/compat.gyp:crashpad_compat', | 56 '../compat/compat.gyp:crashpad_compat', |
| 57 '../handler/handler.gyp:crashpad_handler', |
| 57 '../test/test.gyp:crashpad_test', | 58 '../test/test.gyp:crashpad_test', |
| 58 '../third_party/gtest/gtest.gyp:gtest', | 59 '../third_party/gtest/gtest.gyp:gtest', |
| 59 '../third_party/gtest/gtest.gyp:gtest_main', | 60 '../third_party/gtest/gtest.gyp:gtest_main', |
| 60 '../third_party/mini_chromium/mini_chromium.gyp:base', | 61 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 61 '../util/util.gyp:crashpad_util', | 62 '../util/util.gyp:crashpad_util', |
| 62 ], | 63 ], |
| 63 'include_dirs': [ | 64 'include_dirs': [ |
| 64 '..', | 65 '..', |
| 65 ], | 66 ], |
| 66 'sources': [ | 67 'sources': [ |
| 67 'cpu_context_test.cc', | 68 'cpu_context_test.cc', |
| 68 'crashpad_info_client_options_test.cc', | 69 'crashpad_info_client_options_test.cc', |
| 69 'mac/cpu_context_mac_test.cc', | 70 'mac/cpu_context_mac_test.cc', |
| 70 'mac/mach_o_image_annotations_reader_test.cc', | 71 'mac/mach_o_image_annotations_reader_test.cc', |
| 71 'mac/mach_o_image_reader_test.cc', | 72 'mac/mach_o_image_reader_test.cc', |
| 72 'mac/mach_o_image_segment_reader_test.cc', | 73 'mac/mach_o_image_segment_reader_test.cc', |
| 73 'mac/process_reader_test.cc', | 74 'mac/process_reader_test.cc', |
| 74 'mac/process_types_test.cc', | 75 'mac/process_types_test.cc', |
| 75 'mac/system_snapshot_mac_test.cc', | 76 'mac/system_snapshot_mac_test.cc', |
| 76 'minidump/process_snapshot_minidump_test.cc', | 77 'minidump/process_snapshot_minidump_test.cc', |
| 78 'win/cpu_context_win_test.cc', |
| 79 'win/exception_snapshot_win_test.cc', |
| 77 'win/pe_image_annotations_reader_test.cc', | 80 'win/pe_image_annotations_reader_test.cc', |
| 78 'win/process_reader_win_test.cc', | 81 'win/process_reader_win_test.cc', |
| 79 'win/system_snapshot_win_test.cc', | 82 'win/system_snapshot_win_test.cc', |
| 80 ], | 83 ], |
| 81 'conditions': [ | 84 'conditions': [ |
| 82 ['OS=="mac"', { | 85 ['OS=="mac"', { |
| 83 'dependencies': [ | 86 'dependencies': [ |
| 84 'crashpad_snapshot_test_module_crashy_initializer', | 87 'crashpad_snapshot_test_module_crashy_initializer', |
| 85 'crashpad_snapshot_test_no_op', | 88 'crashpad_snapshot_test_no_op', |
| 86 ], | 89 ], |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 'target_name': 'crashpad_snapshot_test_no_op', | 124 'target_name': 'crashpad_snapshot_test_no_op', |
| 122 'type': 'executable', | 125 'type': 'executable', |
| 123 'sources': [ | 126 'sources': [ |
| 124 'mac/mach_o_image_annotations_reader_test_no_op.cc', | 127 'mac/mach_o_image_annotations_reader_test_no_op.cc', |
| 125 ], | 128 ], |
| 126 }, | 129 }, |
| 127 ], | 130 ], |
| 128 }], | 131 }], |
| 129 ], | 132 ], |
| 130 } | 133 } |
| OLD | NEW |