| 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 13 matching lines...) Expand all Loading... |
| 24 'include_dirs': [ | 24 'include_dirs': [ |
| 25 '..', | 25 '..', |
| 26 ], | 26 ], |
| 27 'sources': [ | 27 'sources': [ |
| 28 'capture_context_mac.h', | 28 'capture_context_mac.h', |
| 29 'capture_context_mac.S', | 29 'capture_context_mac.S', |
| 30 'crashpad_client.h', | 30 'crashpad_client.h', |
| 31 'crashpad_client_mac.cc', | 31 'crashpad_client_mac.cc', |
| 32 'crashpad_info.cc', | 32 'crashpad_info.cc', |
| 33 'crashpad_info.h', | 33 'crashpad_info.h', |
| 34 'crash_report_database_mac.mm', |
| 35 'crash_report_database.h', |
| 34 'simple_string_dictionary.cc', | 36 'simple_string_dictionary.cc', |
| 35 'simple_string_dictionary.h', | 37 'simple_string_dictionary.h', |
| 36 'simulate_crash.h', | 38 'simulate_crash.h', |
| 37 'simulate_crash_mac.cc', | 39 'simulate_crash_mac.cc', |
| 38 'simulate_crash_mac.h', | 40 'simulate_crash_mac.h', |
| 39 ], | 41 ], |
| 40 }, | 42 }, |
| 41 { | 43 { |
| 42 'target_name': 'client_test', | 44 'target_name': 'client_test', |
| 43 'type': 'executable', | 45 'type': 'executable', |
| 44 'dependencies': [ | 46 'dependencies': [ |
| 45 'client', | 47 'client', |
| 46 '../third_party/gtest/gtest.gyp:gtest', | 48 '../third_party/gtest/gtest.gyp:gtest', |
| 47 '../third_party/gtest/gtest.gyp:gtest_main', | 49 '../third_party/gtest/gtest.gyp:gtest_main', |
| 48 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 50 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
| 49 '../util/util.gyp:util', | 51 '../util/util.gyp:util', |
| 50 '../util/util.gyp:util_test_lib', | 52 '../util/util.gyp:util_test_lib', |
| 51 ], | 53 ], |
| 52 'include_dirs': [ | 54 'include_dirs': [ |
| 53 '..', | 55 '..', |
| 54 ], | 56 ], |
| 55 'sources': [ | 57 'sources': [ |
| 56 'capture_context_mac_test.cc', | 58 'capture_context_mac_test.cc', |
| 59 'crash_report_database_test.cc', |
| 57 'simple_string_dictionary_test.cc', | 60 'simple_string_dictionary_test.cc', |
| 58 'simulate_crash_mac_test.cc', | 61 'simulate_crash_mac_test.cc', |
| 59 ], | 62 ], |
| 60 }, | 63 }, |
| 61 ], | 64 ], |
| 62 } | 65 } |
| OLD | NEW |