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

Side by Side Diff: util/util.gyp

Issue 853853002: win: Stub reorganization of MultiprocessExec (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: . Created 5 years, 11 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
« no previous file with comments | « util/test/multiprocess_test.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 'test/errors.cc', 204 'test/errors.cc',
205 'test/errors.h', 205 'test/errors.h',
206 'test/executable_path.h', 206 'test/executable_path.h',
207 'test/executable_path_mac.cc', 207 'test/executable_path_mac.cc',
208 'test/executable_path_win.cc', 208 'test/executable_path_win.cc',
209 'test/mac/dyld.h', 209 'test/mac/dyld.h',
210 'test/mac/mach_errors.cc', 210 'test/mac/mach_errors.cc',
211 'test/mac/mach_errors.h', 211 'test/mac/mach_errors.h',
212 'test/mac/mach_multiprocess.cc', 212 'test/mac/mach_multiprocess.cc',
213 'test/mac/mach_multiprocess.h', 213 'test/mac/mach_multiprocess.h',
214 'test/multiprocess.cc',
215 'test/multiprocess.h', 214 'test/multiprocess.h',
216 'test/multiprocess_exec.cc',
217 'test/multiprocess_exec.h', 215 'test/multiprocess_exec.h',
216 'test/multiprocess_exec_posix.cc',
217 'test/multiprocess_exec_win.cc',
218 'test/multiprocess_posix.cc',
218 'test/scoped_temp_dir.cc', 219 'test/scoped_temp_dir.cc',
219 'test/scoped_temp_dir.h', 220 'test/scoped_temp_dir.h',
220 'test/scoped_temp_dir_posix.cc', 221 'test/scoped_temp_dir_posix.cc',
221 'test/scoped_temp_dir_win.cc', 222 'test/scoped_temp_dir_win.cc',
222 ], 223 ],
223 'conditions': [ 224 'conditions': [
224 ['OS=="mac"', { 225 ['OS=="mac"', {
225 'link_settings': { 226 'link_settings': {
226 'libraries': [ 227 'libraries': [
227 '$(SDKROOT)/usr/lib/libbsm.dylib', 228 '$(SDKROOT)/usr/lib/libbsm.dylib',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 'numeric/int128_test.cc', 283 'numeric/int128_test.cc',
283 'posix/process_info_test.cc', 284 'posix/process_info_test.cc',
284 'posix/symbolic_constants_posix_test.cc', 285 'posix/symbolic_constants_posix_test.cc',
285 'stdlib/string_number_conversion_test.cc', 286 'stdlib/string_number_conversion_test.cc',
286 'stdlib/strlcpy_test.cc', 287 'stdlib/strlcpy_test.cc',
287 'stdlib/strnlen_test.cc', 288 'stdlib/strnlen_test.cc',
288 'synchronization/semaphore_test.cc', 289 'synchronization/semaphore_test.cc',
289 'test/executable_path_test.cc', 290 'test/executable_path_test.cc',
290 'test/mac/mach_multiprocess_test.cc', 291 'test/mac/mach_multiprocess_test.cc',
291 'test/multiprocess_exec_test.cc', 292 'test/multiprocess_exec_test.cc',
292 'test/multiprocess_test.cc', 293 'test/multiprocess_posix_test.cc',
293 'test/scoped_temp_dir_test.cc', 294 'test/scoped_temp_dir_test.cc',
294 ], 295 ],
295 'conditions': [ 296 'conditions': [
296 ['OS=="mac"', { 297 ['OS=="mac"', {
297 'link_settings': { 298 'link_settings': {
298 'libraries': [ 299 'libraries': [
299 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 300 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
300 ], 301 ],
301 }, 302 },
302 }], 303 }],
304 ['OS=="win"', {
305 'sources!': [
306 # TODO(scottmg): Temporarily excluded during Windows bring up.
307 'net/http_transport_test.cc',
308 ],
309 }],
303 ], 310 ],
304 }, 311 },
305 { 312 {
306 'target_name': 'util_test_multiprocess_exec_test_child', 313 'target_name': 'util_test_multiprocess_exec_test_child',
307 'type': 'executable', 314 'type': 'executable',
308 'sources': [ 315 'sources': [
309 'test/multiprocess_exec_test_child.cc', 316 'test/multiprocess_exec_test_child.cc',
310 ], 317 ],
311 }, 318 },
312 ], 319 ],
313 } 320 }
OLDNEW
« no previous file with comments | « util/test/multiprocess_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698