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 '../minidump/minidump.gyp:crashpad_minidump', | 29 '../minidump/minidump.gyp:crashpad_minidump', |
30 '../snapshot/snapshot.gyp:crashpad_snapshot', | 30 '../snapshot/snapshot.gyp:crashpad_snapshot', |
31 '../third_party/mini_chromium/mini_chromium.gyp:base', | 31 '../third_party/mini_chromium/mini_chromium.gyp:base', |
32 '../tools/tools.gyp:crashpad_tool_support', | 32 '../tools/tools.gyp:crashpad_tool_support', |
33 '../util/util.gyp:crashpad_util', | 33 '../util/util.gyp:crashpad_util', |
34 ], | 34 ], |
35 'include_dirs': [ | 35 'include_dirs': [ |
36 '..', | 36 '..', |
37 ], | 37 ], |
38 'sources': [ | 38 'sources': [ |
| 39 'crash_report_upload_thread.cc', |
| 40 'crash_report_upload_thread.h', |
39 'mac/crash_report_exception_handler.cc', | 41 'mac/crash_report_exception_handler.cc', |
40 'mac/crash_report_exception_handler.h', | 42 'mac/crash_report_exception_handler.h', |
41 'mac/crash_report_upload_thread.cc', | |
42 'mac/crash_report_upload_thread.h', | |
43 'mac/exception_handler_server.cc', | 43 'mac/exception_handler_server.cc', |
44 'mac/exception_handler_server.h', | 44 'mac/exception_handler_server.h', |
45 'mac/main.cc', | 45 'mac/main.cc', |
46 ], | 46 ], |
47 | 47 |
48 # In an in-Chromium build with component=shared_library, | 48 # In an in-Chromium build with component=shared_library, |
49 # crashpad_handler will depend on shared libraries such as | 49 # crashpad_handler will depend on shared libraries such as |
50 # libbase.dylib located in out/{Debug,Release} via the @rpath | 50 # libbase.dylib located in out/{Debug,Release} via the @rpath |
51 # mechanism. When crashpad_handler is copied to its home deep inside | 51 # mechanism. When crashpad_handler is copied to its home deep inside |
52 # the Chromium app bundle, it needs to have an LC_RPATH command | 52 # the Chromium app bundle, it needs to have an LC_RPATH command |
(...skipping 15 matching lines...) Expand all Loading... |
68 ], | 68 ], |
69 }, | 69 }, |
70 ], | 70 ], |
71 },], | 71 },], |
72 ['OS=="win"', { | 72 ['OS=="win"', { |
73 'targets': [ | 73 'targets': [ |
74 { | 74 { |
75 'target_name': 'crashpad_handler', | 75 'target_name': 'crashpad_handler', |
76 'type': 'static_library', | 76 'type': 'static_library', |
77 'dependencies': [ | 77 'dependencies': [ |
78 '../client/client.gyp:crashpad_client', | 78 '../client/client.gyp:crashpad_client', |
79 '../third_party/mini_chromium/mini_chromium.gyp:base', | 79 '../compat/compat.gyp:crashpad_compat', |
80 '../util/util.gyp:crashpad_util', | 80 '../snapshot/snapshot.gyp:crashpad_snapshot', |
| 81 '../third_party/mini_chromium/mini_chromium.gyp:base', |
| 82 '../util/util.gyp:crashpad_util', |
81 ], | 83 ], |
82 'include_dirs': [ | 84 'include_dirs': [ |
83 '..', | 85 '..', |
84 ], | 86 ], |
85 'sources': [ | 87 'sources': [ |
| 88 'crash_report_upload_thread.cc', |
| 89 'crash_report_upload_thread.h', |
86 'win/registration_pipe_state.cc', | 90 'win/registration_pipe_state.cc', |
87 'win/registration_pipe_state.h', | 91 'win/registration_pipe_state.h', |
88 'win/registration_server.cc', | 92 'win/registration_server.cc', |
89 'win/registration_server.h', | 93 'win/registration_server.h', |
90 ], | 94 ], |
91 }, | 95 }, |
92 ], | 96 ], |
93 }, { | 97 }, { |
94 'targets': [], | 98 'targets': [], |
95 }], | 99 }], |
96 ], | 100 ], |
97 } | 101 } |
OLD | NEW |