| 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 11 matching lines...) Expand all Loading... |
| 22 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 22 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
| 23 '../util/util.gyp:util', | 23 '../util/util.gyp:util', |
| 24 ], | 24 ], |
| 25 'include_dirs': [ | 25 'include_dirs': [ |
| 26 '..', | 26 '..', |
| 27 ], | 27 ], |
| 28 'sources': [ | 28 'sources': [ |
| 29 'cpu_architecture.h', | 29 'cpu_architecture.h', |
| 30 'cpu_context.cc', | 30 'cpu_context.cc', |
| 31 'cpu_context.h', | 31 'cpu_context.h', |
| 32 'cpu_context_mac.cc', | |
| 33 'cpu_context_mac.h', | |
| 34 'exception_snapshot.h', | 32 'exception_snapshot.h', |
| 35 'exception_snapshot_mac.cc', | 33 'mac/cpu_context_mac.cc', |
| 36 'exception_snapshot_mac.h', | 34 'mac/cpu_context_mac.h', |
| 35 'mac/exception_snapshot_mac.cc', |
| 36 'mac/exception_snapshot_mac.h', |
| 37 'mac/mach_o_image_reader.cc', |
| 38 'mac/mach_o_image_reader.h', |
| 39 'mac/mach_o_image_segment_reader.cc', |
| 40 'mac/mach_o_image_segment_reader.h', |
| 41 'mac/mach_o_image_symbol_table_reader.cc', |
| 42 'mac/mach_o_image_symbol_table_reader.h', |
| 43 'mac/memory_snapshot_mac.cc', |
| 44 'mac/memory_snapshot_mac.h', |
| 45 'mac/process_reader.cc', |
| 46 'mac/process_reader.h', |
| 47 'mac/process_types.cc', |
| 48 'mac/process_types.h', |
| 49 'mac/process_types/all.proctype', |
| 50 'mac/process_types/crashreporterclient.proctype', |
| 51 'mac/process_types/custom.cc', |
| 52 'mac/process_types/dyld_images.proctype', |
| 53 'mac/process_types/flavors.h', |
| 54 'mac/process_types/internal.h', |
| 55 'mac/process_types/loader.proctype', |
| 56 'mac/process_types/nlist.proctype', |
| 57 'mac/process_types/traits.h', |
| 58 'mac/system_snapshot_mac.cc', |
| 59 'mac/system_snapshot_mac.h', |
| 60 'mac/thread_snapshot_mac.cc', |
| 61 'mac/thread_snapshot_mac.h', |
| 37 'memory_snapshot.h', | 62 'memory_snapshot.h', |
| 38 'memory_snapshot_mac.cc', | |
| 39 'memory_snapshot_mac.h', | |
| 40 'module_snapshot.h', | 63 'module_snapshot.h', |
| 41 'process_snapshot.h', | 64 'process_snapshot.h', |
| 42 'system_snapshot.h', | 65 'system_snapshot.h', |
| 43 'system_snapshot_mac.cc', | |
| 44 'system_snapshot_mac.h', | |
| 45 'thread_snapshot.h', | 66 'thread_snapshot.h', |
| 46 'thread_snapshot_mac.cc', | |
| 47 'thread_snapshot_mac.h', | |
| 48 ], | 67 ], |
| 49 }, | 68 }, |
| 50 { | 69 { |
| 51 'target_name': 'snapshot_test', | 70 'target_name': 'snapshot_test', |
| 52 'type': 'executable', | 71 'type': 'executable', |
| 53 'dependencies': [ | 72 'dependencies': [ |
| 54 'snapshot', | 73 'snapshot', |
| 55 '../compat/compat.gyp:compat', | 74 '../compat/compat.gyp:compat', |
| 56 '../third_party/gtest/gtest.gyp:gtest', | 75 '../third_party/gtest/gtest.gyp:gtest', |
| 57 '../third_party/gtest/gtest.gyp:gtest_main', | 76 '../third_party/gtest/gtest.gyp:gtest_main', |
| 58 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 77 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
| 59 '../util/util.gyp:util', | 78 '../util/util.gyp:util', |
| 60 '../util/util.gyp:util_test_lib', | 79 '../util/util.gyp:util_test_lib', |
| 61 ], | 80 ], |
| 62 'include_dirs': [ | 81 'include_dirs': [ |
| 63 '..', | 82 '..', |
| 64 ], | 83 ], |
| 65 'sources': [ | 84 'sources': [ |
| 66 'cpu_context_mac_test.cc', | 85 'mac/cpu_context_mac_test.cc', |
| 67 'system_snapshot_mac_test.cc', | 86 'mac/mach_o_image_reader_test.cc', |
| 87 'mac/mach_o_image_segment_reader_test.cc', |
| 88 'mac/process_reader_test.cc', |
| 89 'mac/process_types_test.cc', |
| 90 'mac/system_snapshot_mac_test.cc', |
| 68 ], | 91 ], |
| 69 }, | 92 }, |
| 70 ], | 93 ], |
| 71 } | 94 } |
| OLD | NEW |