| 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 22 matching lines...) Expand all Loading... |
| 33 'capture_context_mac.h', | 33 'capture_context_mac.h', |
| 34 'crash_report_database.cc', | 34 'crash_report_database.cc', |
| 35 'crash_report_database.h', | 35 'crash_report_database.h', |
| 36 'crash_report_database_mac.mm', | 36 'crash_report_database_mac.mm', |
| 37 'crash_report_database_win.cc', | 37 'crash_report_database_win.cc', |
| 38 'crashpad_client.h', | 38 'crashpad_client.h', |
| 39 'crashpad_client_mac.cc', | 39 'crashpad_client_mac.cc', |
| 40 'crashpad_client_win.cc', | 40 'crashpad_client_win.cc', |
| 41 'crashpad_info.cc', | 41 'crashpad_info.cc', |
| 42 'crashpad_info.h', | 42 'crashpad_info.h', |
| 43 'prune_crash_reports.cc', |
| 44 'prune_crash_reports.h', |
| 43 'settings.cc', | 45 'settings.cc', |
| 44 'settings.h', | 46 'settings.h', |
| 45 'simple_string_dictionary.cc', | 47 'simple_string_dictionary.cc', |
| 46 'simple_string_dictionary.h', | 48 'simple_string_dictionary.h', |
| 47 'simulate_crash.h', | 49 'simulate_crash.h', |
| 48 'simulate_crash_mac.cc', | 50 'simulate_crash_mac.cc', |
| 49 'simulate_crash_mac.h', | 51 'simulate_crash_mac.h', |
| 50 'simulate_crash_win.h', | 52 'simulate_crash_win.h', |
| 51 ], | 53 ], |
| 52 'conditions': [ | 54 'conditions': [ |
| 53 ['OS=="win"', { | 55 ['OS=="win"', { |
| 54 'link_settings': { | 56 'link_settings': { |
| 55 'libraries': [ | 57 'libraries': [ |
| 56 '-lrpcrt4.lib', | 58 '-lrpcrt4.lib', |
| 57 ], | 59 ], |
| 58 }, | 60 }, |
| 59 }], | 61 }], |
| 60 ], | 62 ], |
| 61 'direct_dependent_settings': { | 63 'direct_dependent_settings': { |
| 62 'include_dirs': [ | 64 'include_dirs': [ |
| 63 '..', | 65 '..', |
| 64 ], | 66 ], |
| 65 }, | 67 }, |
| 66 }, | 68 }, |
| 67 ], | 69 ], |
| 68 } | 70 } |
| OLD | NEW |