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

Side by Side Diff: util/util.gyp

Issue 649693002: Add ScopedTaskSuspend and its test (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Updates following VM testing Created 6 years, 2 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 'mach/exc_server_variants.cc', 64 'mach/exc_server_variants.cc',
65 'mach/exc_server_variants.h', 65 'mach/exc_server_variants.h',
66 'mach/exception_behaviors.cc', 66 'mach/exception_behaviors.cc',
67 'mach/exception_behaviors.h', 67 'mach/exception_behaviors.h',
68 'mach/exception_ports.cc', 68 'mach/exception_ports.cc',
69 'mach/exception_ports.h', 69 'mach/exception_ports.h',
70 'mach/mach_extensions.cc', 70 'mach/mach_extensions.cc',
71 'mach/mach_extensions.h', 71 'mach/mach_extensions.h',
72 'mach/mach_message_server.cc', 72 'mach/mach_message_server.cc',
73 'mach/mach_message_server.h', 73 'mach/mach_message_server.h',
74 'mach/scoped_task_suspend.cc',
75 'mach/scoped_task_suspend.h',
74 'mach/symbolic_constants_mach.cc', 76 'mach/symbolic_constants_mach.cc',
75 'mach/symbolic_constants_mach.h', 77 'mach/symbolic_constants_mach.h',
76 'mach/task_memory.cc', 78 'mach/task_memory.cc',
77 'mach/task_memory.h', 79 'mach/task_memory.h',
78 'misc/clock.cc', 80 'misc/clock.cc',
79 'misc/clock.h', 81 'misc/clock.h',
80 'misc/clock_mac.cc', 82 'misc/clock_mac.cc',
81 'misc/initialization_state.h', 83 'misc/initialization_state.h',
82 'misc/initialization_state_dcheck.cc', 84 'misc/initialization_state_dcheck.cc',
83 'misc/initialization_state_dcheck.h', 85 'misc/initialization_state_dcheck.h',
84 'misc/scoped_forbid_return.cc', 86 'misc/scoped_forbid_return.cc',
85 'misc/scoped_forbid_return.h', 87 'misc/scoped_forbid_return.h',
86 'misc/symbolic_constants_common.h', 88 'misc/symbolic_constants_common.h',
87 'misc/uuid.cc', 89 'misc/uuid.cc',
88 'misc/uuid.h', 90 'misc/uuid.h',
89 'numeric/checked_range.h', 91 'numeric/checked_range.h',
90 'numeric/in_range_cast.h', 92 'numeric/in_range_cast.h',
91 'numeric/int128.h', 93 'numeric/int128.h',
92 'numeric/safe_assignment.h', 94 'numeric/safe_assignment.h',
93 'posix/process_util.h', 95 'posix/process_util.h',
94 'posix/process_util_mac.cc', 96 'posix/process_util_mac.cc',
97 'posix/scoped_fcntl_flags.cc',
98 'posix/scoped_fcntl_flags.h',
95 'posix/symbolic_constants_posix.cc', 99 'posix/symbolic_constants_posix.cc',
96 'posix/symbolic_constants_posix.h', 100 'posix/symbolic_constants_posix.h',
97 'stdlib/cxx.h', 101 'stdlib/cxx.h',
98 'stdlib/objc.h', 102 'stdlib/objc.h',
99 'stdlib/pointer_container.h', 103 'stdlib/pointer_container.h',
100 'stdlib/string_number_conversion.cc', 104 'stdlib/string_number_conversion.cc',
101 'stdlib/string_number_conversion.h', 105 'stdlib/string_number_conversion.h',
102 'stdlib/strlcpy.cc', 106 'stdlib/strlcpy.cc',
103 'stdlib/strlcpy.h', 107 'stdlib/strlcpy.h',
104 'stdlib/strnlen.cc', 108 'stdlib/strnlen.cc',
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 'mac/mach_o_image_segment_reader_test.cc', 222 'mac/mach_o_image_segment_reader_test.cc',
219 'mac/process_reader_test.cc', 223 'mac/process_reader_test.cc',
220 'mac/process_types_test.cc', 224 'mac/process_types_test.cc',
221 'mac/service_management_test.mm', 225 'mac/service_management_test.mm',
222 'mach/exc_client_variants_test.cc', 226 'mach/exc_client_variants_test.cc',
223 'mach/exc_server_variants_test.cc', 227 'mach/exc_server_variants_test.cc',
224 'mach/exception_behaviors_test.cc', 228 'mach/exception_behaviors_test.cc',
225 'mach/exception_ports_test.cc', 229 'mach/exception_ports_test.cc',
226 'mach/mach_extensions_test.cc', 230 'mach/mach_extensions_test.cc',
227 'mach/mach_message_server_test.cc', 231 'mach/mach_message_server_test.cc',
232 'mach/scoped_task_suspend_test.cc',
228 'mach/symbolic_constants_mach_test.cc', 233 'mach/symbolic_constants_mach_test.cc',
229 'mach/task_memory_test.cc', 234 'mach/task_memory_test.cc',
230 'misc/clock_test.cc', 235 'misc/clock_test.cc',
231 'misc/initialization_state_dcheck_test.cc', 236 'misc/initialization_state_dcheck_test.cc',
232 'misc/initialization_state_test.cc', 237 'misc/initialization_state_test.cc',
233 'misc/scoped_forbid_return_test.cc', 238 'misc/scoped_forbid_return_test.cc',
234 'misc/uuid_test.cc', 239 'misc/uuid_test.cc',
235 'numeric/checked_range_test.cc', 240 'numeric/checked_range_test.cc',
236 'numeric/in_range_cast_test.cc', 241 'numeric/in_range_cast_test.cc',
237 'numeric/int128_test.cc', 242 'numeric/int128_test.cc',
238 'posix/process_util_test.cc', 243 'posix/process_util_test.cc',
244 'posix/scoped_fcntl_flags_test.cc',
239 'posix/symbolic_constants_posix_test.cc', 245 'posix/symbolic_constants_posix_test.cc',
240 'stdlib/string_number_conversion_test.cc', 246 'stdlib/string_number_conversion_test.cc',
241 'stdlib/strlcpy_test.cc', 247 'stdlib/strlcpy_test.cc',
242 'stdlib/strnlen_test.cc', 248 'stdlib/strnlen_test.cc',
243 'synchronization/semaphore_test.cc', 249 'synchronization/semaphore_test.cc',
244 'test/executable_path_test.cc', 250 'test/executable_path_test.cc',
245 'test/mac/mach_multiprocess_test.cc', 251 'test/mac/mach_multiprocess_test.cc',
246 'test/multiprocess_exec_test.cc', 252 'test/multiprocess_exec_test.cc',
247 'test/multiprocess_test.cc', 253 'test/multiprocess_test.cc',
248 ], 254 ],
249 'conditions': [ 255 'conditions': [
250 ['OS=="mac"', { 256 ['OS=="mac"', {
251 'link_settings': { 257 'link_settings': {
252 'libraries': [ 258 'libraries': [
253 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 259 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
254 ], 260 ],
255 }, 261 },
256 }], 262 }],
257 ], 263 ],
258 }, 264 },
259 { 265 {
260 'target_name': 'util_test_multiprocess_exec_test_child', 266 'target_name': 'util_test_multiprocess_exec_test_child',
261 'type': 'executable', 267 'type': 'executable',
262 'sources': [ 268 'sources': [
263 'test/multiprocess_exec_test_child.cc', 269 'test/multiprocess_exec_test_child.cc',
264 ], 270 ],
265 }, 271 },
266 ], 272 ],
267 } 273 }
OLDNEW
« util/posix/scoped_fcntl_flags_test.cc ('K') | « util/posix/scoped_fcntl_flags_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698