| 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 18 matching lines...) Expand all Loading... |
| 29 'capture_context_mac.S', | 29 'capture_context_mac.S', |
| 30 'capture_context_mac.h', | 30 'capture_context_mac.h', |
| 31 'crash_report_database.cc', | 31 'crash_report_database.cc', |
| 32 'crash_report_database.h', | 32 'crash_report_database.h', |
| 33 'crash_report_database_mac.mm', | 33 'crash_report_database_mac.mm', |
| 34 'crash_report_database_win.cc', | 34 'crash_report_database_win.cc', |
| 35 'crashpad_client.h', | 35 'crashpad_client.h', |
| 36 'crashpad_client_mac.cc', | 36 'crashpad_client_mac.cc', |
| 37 'crashpad_info.cc', | 37 'crashpad_info.cc', |
| 38 'crashpad_info.h', | 38 'crashpad_info.h', |
| 39 'settings.h', |
| 40 'settings_mac.h', |
| 41 'settings_mac.mm', |
| 39 'simple_string_dictionary.cc', | 42 'simple_string_dictionary.cc', |
| 40 'simple_string_dictionary.h', | 43 'simple_string_dictionary.h', |
| 41 'simulate_crash.h', | 44 'simulate_crash.h', |
| 42 'simulate_crash_mac.cc', | 45 'simulate_crash_mac.cc', |
| 43 'simulate_crash_mac.h', | 46 'simulate_crash_mac.h', |
| 44 ], | 47 ], |
| 45 'conditions': [ | 48 'conditions': [ |
| 46 ['OS=="win"', { | 49 ['OS=="win"', { |
| 47 'link_settings': { | 50 'link_settings': { |
| 48 'libraries': [ | 51 'libraries': [ |
| (...skipping 14 matching lines...) Expand all Loading... |
| 63 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 66 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
| 64 '../util/util.gyp:util', | 67 '../util/util.gyp:util', |
| 65 '../util/util.gyp:util_test_lib', | 68 '../util/util.gyp:util_test_lib', |
| 66 ], | 69 ], |
| 67 'include_dirs': [ | 70 'include_dirs': [ |
| 68 '..', | 71 '..', |
| 69 ], | 72 ], |
| 70 'sources': [ | 73 'sources': [ |
| 71 'capture_context_mac_test.cc', | 74 'capture_context_mac_test.cc', |
| 72 'crash_report_database_test.cc', | 75 'crash_report_database_test.cc', |
| 76 'settings_test.cc', |
| 73 'simple_string_dictionary_test.cc', | 77 'simple_string_dictionary_test.cc', |
| 74 'simulate_crash_mac_test.cc', | 78 'simulate_crash_mac_test.cc', |
| 75 ], | 79 ], |
| 80 'conditions': [ |
| 81 ['OS=="win"', { |
| 82 'sources!' [ |
| 83 # There is no settings_win.cc file yet to make this test pass. |
| 84 'settings_test.cc', |
| 85 ], |
| 86 }], |
| 87 ], |
| 76 }, | 88 }, |
| 77 ], | 89 ], |
| 78 } | 90 } |
| OLD | NEW |