Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(266)

Side by Side Diff: util/util.gyp

Issue 1301853002: win: Crash handler server (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: fixes and move some things around Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 'synchronization/semaphore_win.cc', 140 'synchronization/semaphore_win.cc',
141 'synchronization/semaphore.h', 141 'synchronization/semaphore.h',
142 'thread/thread.cc', 142 'thread/thread.cc',
143 'thread/thread.h', 143 'thread/thread.h',
144 'thread/thread_log_messages.cc', 144 'thread/thread_log_messages.cc',
145 'thread/thread_log_messages.h', 145 'thread/thread_log_messages.h',
146 'thread/thread_posix.cc', 146 'thread/thread_posix.cc',
147 'thread/thread_win.cc', 147 'thread/thread_win.cc',
148 'win/address_types.h', 148 'win/address_types.h',
149 'win/checked_win_address_range.h', 149 'win/checked_win_address_range.h',
150 'win/exception_handler_server.cc',
151 'win/exception_handler_server.h',
150 'win/module_version.cc', 152 'win/module_version.cc',
151 'win/module_version.h', 153 'win/module_version.h',
152 'win/nt_internals.cc', 154 'win/nt_internals.cc',
153 'win/nt_internals.h', 155 'win/nt_internals.h',
154 'win/process_info.cc', 156 'win/process_info.cc',
155 'win/process_info.h', 157 'win/process_info.h',
156 'win/process_structs.h', 158 'win/process_structs.h',
159 'win/registration_protocol_win.cc',
160 'win/registration_protocol_win.h',
157 'win/scoped_handle.cc', 161 'win/scoped_handle.cc',
158 'win/scoped_handle.h', 162 'win/scoped_handle.h',
159 'win/time.cc', 163 'win/time.cc',
160 'win/time.h', 164 'win/time.h',
161 ], 165 ],
162 'conditions': [ 166 'conditions': [
163 ['OS=="mac"', { 167 ['OS=="mac"', {
164 'conditions': [ 168 'conditions': [
165 ['GENERATOR=="ninja"', { 169 ['GENERATOR=="ninja"', {
166 # ninja’s rules can’t deal with sources that have paths relative 170 # ninja’s rules can’t deal with sources that have paths relative
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 'libraries': [ 230 'libraries': [
227 '-lrpcrt4.lib', 231 '-lrpcrt4.lib',
228 '-lwinhttp.lib', 232 '-lwinhttp.lib',
229 ], 233 ],
230 }, 234 },
231 }], 235 }],
232 ], 236 ],
233 }, 237 },
234 ], 238 ],
235 } 239 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698