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 21 matching lines...) Expand all Loading... |
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_info.cc', | 40 'crashpad_info.cc', |
41 'crashpad_info.h', | 41 'crashpad_info.h', |
| 42 'settings.cc', |
| 43 'settings.h', |
42 'simple_string_dictionary.cc', | 44 'simple_string_dictionary.cc', |
43 'simple_string_dictionary.h', | 45 'simple_string_dictionary.h', |
44 'simulate_crash.h', | 46 'simulate_crash.h', |
45 'simulate_crash_mac.cc', | 47 'simulate_crash_mac.cc', |
46 'simulate_crash_mac.h', | 48 'simulate_crash_mac.h', |
47 ], | 49 ], |
48 'conditions': [ | 50 'conditions': [ |
49 ['OS=="win"', { | 51 ['OS=="win"', { |
50 'link_settings': { | 52 'link_settings': { |
51 'libraries': [ | 53 'libraries': [ |
52 '-lrpcrt4.lib', | 54 '-lrpcrt4.lib', |
53 ], | 55 ], |
54 }, | 56 }, |
| 57 'sources!': [ |
| 58 # Port to Win https://code.google.com/p/crashpad/issues/detail?id=13 |
| 59 'settings.cc', |
| 60 ], |
55 }], | 61 }], |
56 ], | 62 ], |
57 }, | 63 }, |
58 { | 64 { |
59 'target_name': 'crashpad_client_test', | 65 'target_name': 'crashpad_client_test', |
60 'type': 'executable', | 66 'type': 'executable', |
61 'dependencies': [ | 67 'dependencies': [ |
62 'crashpad_client', | 68 'crashpad_client', |
63 '../compat/compat.gyp:crashpad_compat', | 69 '../compat/compat.gyp:crashpad_compat', |
64 '../third_party/gtest/gtest.gyp:gtest', | 70 '../third_party/gtest/gtest.gyp:gtest', |
65 '../third_party/gtest/gtest.gyp:gtest_main', | 71 '../third_party/gtest/gtest.gyp:gtest_main', |
66 '../third_party/mini_chromium/mini_chromium.gyp:base', | 72 '../third_party/mini_chromium/mini_chromium.gyp:base', |
67 '../util/util.gyp:crashpad_util', | 73 '../util/util.gyp:crashpad_util', |
68 '../util/util.gyp:crashpad_util_test_lib', | 74 '../util/util.gyp:crashpad_util_test_lib', |
69 ], | 75 ], |
70 'include_dirs': [ | 76 'include_dirs': [ |
71 '..', | 77 '..', |
72 ], | 78 ], |
73 'sources': [ | 79 'sources': [ |
74 'capture_context_mac_test.cc', | 80 'capture_context_mac_test.cc', |
75 'crash_report_database_test.cc', | 81 'crash_report_database_test.cc', |
| 82 'settings_test.cc', |
76 'simple_string_dictionary_test.cc', | 83 'simple_string_dictionary_test.cc', |
77 'simulate_crash_mac_test.cc', | 84 'simulate_crash_mac_test.cc', |
78 ], | 85 ], |
| 86 'conditions': [ |
| 87 ['OS=="win"', { |
| 88 'sources!': [ |
| 89 # Port to Win https://code.google.com/p/crashpad/issues/detail?id=13 |
| 90 'settings_test.cc', |
| 91 ], |
| 92 }], |
| 93 ], |
79 }, | 94 }, |
80 ], | 95 ], |
81 } | 96 } |
OLD | NEW |