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 'registration_protocol_win.h', |
43 'settings.cc', | 44 'settings.cc', |
44 'settings.h', | 45 'settings.h', |
45 'simple_string_dictionary.cc', | 46 'simple_string_dictionary.cc', |
46 'simple_string_dictionary.h', | 47 'simple_string_dictionary.h', |
47 'simulate_crash.h', | 48 'simulate_crash.h', |
48 'simulate_crash_mac.cc', | 49 'simulate_crash_mac.cc', |
49 'simulate_crash_mac.h', | 50 'simulate_crash_mac.h', |
50 ], | 51 ], |
51 'conditions': [ | 52 'conditions': [ |
52 ['OS=="win"', { | 53 ['OS=="win"', { |
53 'link_settings': { | 54 'link_settings': { |
54 'libraries': [ | 55 'libraries': [ |
55 '-lrpcrt4.lib', | 56 '-lrpcrt4.lib', |
56 ], | 57 ], |
57 }, | 58 }, |
58 }], | 59 }], |
59 ], | 60 ], |
60 'direct_dependent_settings': { | 61 'direct_dependent_settings': { |
61 'include_dirs': [ | 62 'include_dirs': [ |
62 '..', | 63 '..', |
63 ], | 64 ], |
64 }, | 65 }, |
65 }, | 66 }, |
66 ], | 67 ], |
67 } | 68 } |
OLD | NEW |