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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 'snapshot.gyp:crashpad_snapshot', | 53 'snapshot.gyp:crashpad_snapshot', |
54 '../client/client.gyp:crashpad_client', | 54 '../client/client.gyp:crashpad_client', |
55 '../compat/compat.gyp:crashpad_compat', | 55 '../compat/compat.gyp:crashpad_compat', |
| 56 '../test/test.gyp:crashpad_test', |
56 '../third_party/gtest/gtest.gyp:gtest', | 57 '../third_party/gtest/gtest.gyp:gtest', |
57 '../third_party/gtest/gtest.gyp:gtest_main', | 58 '../third_party/gtest/gtest.gyp:gtest_main', |
58 '../third_party/mini_chromium/mini_chromium.gyp:base', | 59 '../third_party/mini_chromium/mini_chromium.gyp:base', |
59 '../util/util.gyp:crashpad_util', | 60 '../util/util.gyp:crashpad_util', |
60 '../util/util_test.gyp:crashpad_util_test_lib', | |
61 ], | 61 ], |
62 'include_dirs': [ | 62 'include_dirs': [ |
63 '..', | 63 '..', |
64 ], | 64 ], |
65 'sources': [ | 65 'sources': [ |
66 'cpu_context_test.cc', | 66 'cpu_context_test.cc', |
67 'mac/cpu_context_mac_test.cc', | 67 'mac/cpu_context_mac_test.cc', |
68 'mac/crashpad_info_client_options_test.cc', | 68 'mac/crashpad_info_client_options_test.cc', |
69 'mac/mach_o_image_annotations_reader_test.cc', | 69 'mac/mach_o_image_annotations_reader_test.cc', |
70 'mac/mach_o_image_reader_test.cc', | 70 'mac/mach_o_image_reader_test.cc', |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 '..', | 103 '..', |
104 ], | 104 ], |
105 'sources': [ | 105 'sources': [ |
106 'mac/crashpad_info_client_options_test_module.cc', | 106 'mac/crashpad_info_client_options_test_module.cc', |
107 ], | 107 ], |
108 }, | 108 }, |
109 ], | 109 ], |
110 }], | 110 }], |
111 ], | 111 ], |
112 } | 112 } |
OLD | NEW |