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.cc', | |
40 'settings.h', | |
39 'simple_string_dictionary.cc', | 41 'simple_string_dictionary.cc', |
40 'simple_string_dictionary.h', | 42 'simple_string_dictionary.h', |
41 'simulate_crash.h', | 43 'simulate_crash.h', |
42 'simulate_crash_mac.cc', | 44 'simulate_crash_mac.cc', |
43 'simulate_crash_mac.h', | 45 'simulate_crash_mac.h', |
44 ], | 46 ], |
45 'conditions': [ | 47 'conditions': [ |
46 ['OS=="win"', { | 48 ['OS=="win"', { |
47 'link_settings': { | 49 'link_settings': { |
48 'libraries': [ | 50 'libraries': [ |
49 '-lrpcrt4.lib', | 51 '-lrpcrt4.lib', |
50 ], | 52 ], |
51 }, | 53 }, |
54 'sources!': [ | |
55 # Port to Win: https://code.google.com/p/crashpad/issues/detail?id=1 3 | |
Mark Mentovai
2015/03/09 19:12:35
80. Same on line 86.
Robert Sesek
2015/03/09 21:16:26
Done.
| |
56 'settings.cc', | |
57 ], | |
52 }], | 58 }], |
53 ], | 59 ], |
54 }, | 60 }, |
55 { | 61 { |
56 'target_name': 'client_test', | 62 'target_name': 'client_test', |
57 'type': 'executable', | 63 'type': 'executable', |
58 'dependencies': [ | 64 'dependencies': [ |
59 'client', | 65 'client', |
60 '../compat/compat.gyp:compat', | 66 '../compat/compat.gyp:compat', |
61 '../third_party/gtest/gtest.gyp:gtest', | 67 '../third_party/gtest/gtest.gyp:gtest', |
62 '../third_party/gtest/gtest.gyp:gtest_main', | 68 '../third_party/gtest/gtest.gyp:gtest_main', |
63 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 69 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
64 '../util/util.gyp:util', | 70 '../util/util.gyp:util', |
65 '../util/util.gyp:util_test_lib', | 71 '../util/util.gyp:util_test_lib', |
66 ], | 72 ], |
67 'include_dirs': [ | 73 'include_dirs': [ |
68 '..', | 74 '..', |
69 ], | 75 ], |
70 'sources': [ | 76 'sources': [ |
71 'capture_context_mac_test.cc', | 77 'capture_context_mac_test.cc', |
72 'crash_report_database_test.cc', | 78 'crash_report_database_test.cc', |
79 'settings_test.cc', | |
73 'simple_string_dictionary_test.cc', | 80 'simple_string_dictionary_test.cc', |
74 'simulate_crash_mac_test.cc', | 81 'simulate_crash_mac_test.cc', |
75 ], | 82 ], |
83 'conditions': [ | |
84 ['OS=="win"', { | |
85 'sources!': [ | |
86 # Port to Win: https://code.google.com/p/crashpad/issues/detail?id=1 3 | |
87 'settings_test.cc', | |
88 ], | |
89 }], | |
90 ], | |
76 }, | 91 }, |
77 ], | 92 ], |
78 } | 93 } |
OLD | NEW |