| 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 19 matching lines...) Expand all Loading... |
| 30 ], | 30 ], |
| 31 'sources': [ | 31 'sources': [ |
| 32 'capture_context_mac.S', | 32 'capture_context_mac.S', |
| 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_info.cc', | 41 'crashpad_info.cc', |
| 41 'crashpad_info.h', | 42 'crashpad_info.h', |
| 42 'settings.cc', | 43 'settings.cc', |
| 43 'settings.h', | 44 'settings.h', |
| 44 'simple_string_dictionary.cc', | 45 'simple_string_dictionary.cc', |
| 45 'simple_string_dictionary.h', | 46 'simple_string_dictionary.h', |
| 46 'simulate_crash.h', | 47 'simulate_crash.h', |
| 47 'simulate_crash_mac.cc', | 48 'simulate_crash_mac.cc', |
| 48 'simulate_crash_mac.h', | 49 'simulate_crash_mac.h', |
| 49 ], | 50 ], |
| 50 'conditions': [ | 51 'conditions': [ |
| 51 ['OS=="win"', { | 52 ['OS=="win"', { |
| 52 'link_settings': { | 53 'link_settings': { |
| 53 'libraries': [ | 54 'libraries': [ |
| 54 '-lrpcrt4.lib', | 55 '-lrpcrt4.lib', |
| 55 ], | 56 ], |
| 56 }, | 57 }, |
| 57 }], | 58 }], |
| 58 ], | 59 ], |
| 59 'direct_dependent_settings': { | 60 'direct_dependent_settings': { |
| 60 'include_dirs': [ | 61 'include_dirs': [ |
| 61 '..', | 62 '..', |
| 62 ], | 63 ], |
| 63 }, | 64 }, |
| 64 }, | 65 }, |
| 65 ], | 66 ], |
| 66 } | 67 } |
| OLD | NEW |