| 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 23 matching lines...) Expand all Loading... |
| 34 'exception_snapshot.h', | 34 'exception_snapshot.h', |
| 35 'memory_snapshot.h', | 35 'memory_snapshot.h', |
| 36 'memory_snapshot_mac.cc', | 36 'memory_snapshot_mac.cc', |
| 37 'memory_snapshot_mac.h', | 37 'memory_snapshot_mac.h', |
| 38 'module_snapshot.h', | 38 'module_snapshot.h', |
| 39 'process_snapshot.h', | 39 'process_snapshot.h', |
| 40 'system_snapshot.h', | 40 'system_snapshot.h', |
| 41 'system_snapshot_mac.cc', | 41 'system_snapshot_mac.cc', |
| 42 'system_snapshot_mac.h', | 42 'system_snapshot_mac.h', |
| 43 'thread_snapshot.h', | 43 'thread_snapshot.h', |
| 44 'thread_snapshot_mac.cc', |
| 45 'thread_snapshot_mac.h', |
| 44 ], | 46 ], |
| 45 }, | 47 }, |
| 46 { | 48 { |
| 47 'target_name': 'snapshot_test', | 49 'target_name': 'snapshot_test', |
| 48 'type': 'executable', | 50 'type': 'executable', |
| 49 'dependencies': [ | 51 'dependencies': [ |
| 50 'snapshot', | 52 'snapshot', |
| 51 '../compat/compat.gyp:compat', | 53 '../compat/compat.gyp:compat', |
| 52 '../third_party/gtest/gtest.gyp:gtest', | 54 '../third_party/gtest/gtest.gyp:gtest', |
| 53 '../third_party/gtest/gtest.gyp:gtest_main', | 55 '../third_party/gtest/gtest.gyp:gtest_main', |
| 54 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 56 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
| 55 '../util/util.gyp:util', | 57 '../util/util.gyp:util', |
| 56 '../util/util.gyp:util_test_lib', | 58 '../util/util.gyp:util_test_lib', |
| 57 ], | 59 ], |
| 58 'include_dirs': [ | 60 'include_dirs': [ |
| 59 '..', | 61 '..', |
| 60 ], | 62 ], |
| 61 'sources': [ | 63 'sources': [ |
| 62 'cpu_context_mac_test.cc', | 64 'cpu_context_mac_test.cc', |
| 63 'system_snapshot_mac_test.cc', | 65 'system_snapshot_mac_test.cc', |
| 64 ], | 66 ], |
| 65 }, | 67 }, |
| 66 ], | 68 ], |
| 67 } | 69 } |
| OLD | NEW |