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

Side by Side Diff: util/util.gyp

Issue 1337133002: win: Fix OpenProcess(PROCESS_ALL_ACCESS, ...) on XP (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: . 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 'win/process_info.h', 159 'win/process_info.h',
160 'win/process_structs.h', 160 'win/process_structs.h',
161 'win/registration_protocol_win.cc', 161 'win/registration_protocol_win.cc',
162 'win/registration_protocol_win.h', 162 'win/registration_protocol_win.h',
163 'win/scoped_handle.cc', 163 'win/scoped_handle.cc',
164 'win/scoped_handle.h', 164 'win/scoped_handle.h',
165 'win/scoped_process_suspend.cc', 165 'win/scoped_process_suspend.cc',
166 'win/scoped_process_suspend.h', 166 'win/scoped_process_suspend.h',
167 'win/time.cc', 167 'win/time.cc',
168 'win/time.h', 168 'win/time.h',
169 'win/xp_compat.h',
169 ], 170 ],
170 'conditions': [ 171 'conditions': [
171 ['OS=="mac"', { 172 ['OS=="mac"', {
172 'conditions': [ 173 'conditions': [
173 ['GENERATOR=="ninja"', { 174 ['GENERATOR=="ninja"', {
174 # ninja’s rules can’t deal with sources that have paths relative 175 # ninja’s rules can’t deal with sources that have paths relative
175 # to environment variables like SDKROOT. Copy the .defs files out 176 # to environment variables like SDKROOT. Copy the .defs files out
176 # of SDKROOT and into a place they can be referenced without any 177 # of SDKROOT and into a place they can be referenced without any
177 # environment variables. 178 # environment variables.
178 'copies': [ 179 'copies': [
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 'libraries': [ 235 'libraries': [
235 '-lrpcrt4.lib', 236 '-lrpcrt4.lib',
236 '-lwinhttp.lib', 237 '-lwinhttp.lib',
237 ], 238 ],
238 }, 239 },
239 }], 240 }],
240 ], 241 ],
241 }, 242 },
242 ], 243 ],
243 } 244 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698