| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 'test/test_system_snapshot.cc', | 43 'test/test_system_snapshot.cc', |
| 44 'test/test_system_snapshot.h', | 44 'test/test_system_snapshot.h', |
| 45 'test/test_thread_snapshot.cc', | 45 'test/test_thread_snapshot.cc', |
| 46 'test/test_thread_snapshot.h', | 46 'test/test_thread_snapshot.h', |
| 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_crashing_child', |
| 53 'crashpad_snapshot_test_module', | 54 'crashpad_snapshot_test_module', |
| 54 'snapshot.gyp:crashpad_snapshot', | 55 'snapshot.gyp:crashpad_snapshot', |
| 55 '../client/client.gyp:crashpad_client', | 56 '../client/client.gyp:crashpad_client', |
| 56 '../compat/compat.gyp:crashpad_compat', | 57 '../compat/compat.gyp:crashpad_compat', |
| 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 ], |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 }, | 123 }, |
| 123 { | 124 { |
| 124 'target_name': 'crashpad_snapshot_test_no_op', | 125 'target_name': 'crashpad_snapshot_test_no_op', |
| 125 'type': 'executable', | 126 'type': 'executable', |
| 126 'sources': [ | 127 'sources': [ |
| 127 'mac/mach_o_image_annotations_reader_test_no_op.cc', | 128 'mac/mach_o_image_annotations_reader_test_no_op.cc', |
| 128 ], | 129 ], |
| 129 }, | 130 }, |
| 130 ], | 131 ], |
| 131 }], | 132 }], |
| 133 ['OS=="win"', { |
| 134 'targets': [ |
| 135 { |
| 136 'target_name': 'crashpad_snapshot_test_crashing_child', |
| 137 'type': 'executable', |
| 138 'dependencies': [ |
| 139 '../client/client.gyp:crashpad_client', |
| 140 '../compat/compat.gyp:crashpad_compat', |
| 141 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 142 '../util/util.gyp:crashpad_util', |
| 143 ], |
| 144 'sources': [ |
| 145 'win/crashpad_snapshot_test_crashing_child.cc', |
| 146 ], |
| 147 }, |
| 148 ], |
| 149 }], |
| 132 ], | 150 ], |
| 133 } | 151 } |
| OLD | NEW |