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

Side by Side Diff: util/util.gyp

Issue 754123002: Add ChildPortServer, a MachMessageServer::Interface implementation for the child_port subsystem (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@child_port_defs
Patch Set: Address review feedback Created 6 years 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 22 matching lines...) Expand all
33 'file/string_file_writer.cc', 33 'file/string_file_writer.cc',
34 'file/string_file_writer.h', 34 'file/string_file_writer.h',
35 'mac/checked_mach_address_range.cc', 35 'mac/checked_mach_address_range.cc',
36 'mac/checked_mach_address_range.h', 36 'mac/checked_mach_address_range.h',
37 'mac/launchd.h', 37 'mac/launchd.h',
38 'mac/launchd.mm', 38 'mac/launchd.mm',
39 'mac/mac_util.cc', 39 'mac/mac_util.cc',
40 'mac/mac_util.h', 40 'mac/mac_util.h',
41 'mac/service_management.cc', 41 'mac/service_management.cc',
42 'mac/service_management.h', 42 'mac/service_management.h',
43 'mach/child_port_server.cc',
44 'mach/child_port_server.h',
43 'mach/child_port_types.h', 45 'mach/child_port_types.h',
44 'mach/exc_client_variants.cc', 46 'mach/exc_client_variants.cc',
45 'mach/exc_client_variants.h', 47 'mach/exc_client_variants.h',
46 'mach/exc_server_variants.cc', 48 'mach/exc_server_variants.cc',
47 'mach/exc_server_variants.h', 49 'mach/exc_server_variants.h',
48 'mach/exception_behaviors.cc', 50 'mach/exception_behaviors.cc',
49 'mach/exception_behaviors.h', 51 'mach/exception_behaviors.h',
50 'mach/exception_ports.cc', 52 'mach/exception_ports.cc',
51 'mach/exception_ports.h', 53 'mach/exception_ports.h',
52 'mach/mach_extensions.cc', 54 'mach/mach_extensions.cc',
53 'mach/mach_extensions.h', 55 'mach/mach_extensions.h',
54 'mach/mach_message_server.cc', 56 'mach/mach_message_server.cc',
55 'mach/mach_message_server.h', 57 'mach/mach_message_server.h',
58 'mach/mach_message_util.cc',
59 'mach/mach_message_util.h',
56 'mach/scoped_task_suspend.cc', 60 'mach/scoped_task_suspend.cc',
57 'mach/scoped_task_suspend.h', 61 'mach/scoped_task_suspend.h',
58 'mach/symbolic_constants_mach.cc', 62 'mach/symbolic_constants_mach.cc',
59 'mach/symbolic_constants_mach.h', 63 'mach/symbolic_constants_mach.h',
60 'mach/task_for_pid.cc', 64 'mach/task_for_pid.cc',
61 'mach/task_for_pid.h', 65 'mach/task_for_pid.h',
62 'mach/task_memory.cc', 66 'mach/task_memory.cc',
63 'mach/task_memory.h', 67 'mach/task_memory.h',
64 'misc/clock.cc', 68 'misc/clock.cc',
65 'misc/clock.h', 69 'misc/clock.h',
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 ], 229 ],
226 'include_dirs': [ 230 'include_dirs': [
227 '..', 231 '..',
228 ], 232 ],
229 'sources': [ 233 'sources': [
230 'file/string_file_writer_test.cc', 234 'file/string_file_writer_test.cc',
231 'mac/checked_mach_address_range_test.cc', 235 'mac/checked_mach_address_range_test.cc',
232 'mac/launchd_test.mm', 236 'mac/launchd_test.mm',
233 'mac/mac_util_test.mm', 237 'mac/mac_util_test.mm',
234 'mac/service_management_test.mm', 238 'mac/service_management_test.mm',
239 'mach/child_port_server_test.cc',
235 'mach/exc_client_variants_test.cc', 240 'mach/exc_client_variants_test.cc',
236 'mach/exc_server_variants_test.cc', 241 'mach/exc_server_variants_test.cc',
237 'mach/exception_behaviors_test.cc', 242 'mach/exception_behaviors_test.cc',
238 'mach/exception_ports_test.cc', 243 'mach/exception_ports_test.cc',
239 'mach/mach_extensions_test.cc', 244 'mach/mach_extensions_test.cc',
240 'mach/mach_message_server_test.cc', 245 'mach/mach_message_server_test.cc',
246 'mach/mach_message_util_test.cc',
241 'mach/scoped_task_suspend_test.cc', 247 'mach/scoped_task_suspend_test.cc',
242 'mach/symbolic_constants_mach_test.cc', 248 'mach/symbolic_constants_mach_test.cc',
243 'mach/task_memory_test.cc', 249 'mach/task_memory_test.cc',
244 'misc/clock_test.cc', 250 'misc/clock_test.cc',
245 'misc/initialization_state_dcheck_test.cc', 251 'misc/initialization_state_dcheck_test.cc',
246 'misc/initialization_state_test.cc', 252 'misc/initialization_state_test.cc',
247 'misc/scoped_forbid_return_test.cc', 253 'misc/scoped_forbid_return_test.cc',
248 'misc/uuid_test.cc', 254 'misc/uuid_test.cc',
249 'net/http_body_test.cc', 255 'net/http_body_test.cc',
250 'net/http_body_test_util.cc', 256 'net/http_body_test_util.cc',
(...skipping 26 matching lines...) Expand all
277 }, 283 },
278 { 284 {
279 'target_name': 'util_test_multiprocess_exec_test_child', 285 'target_name': 'util_test_multiprocess_exec_test_child',
280 'type': 'executable', 286 'type': 'executable',
281 'sources': [ 287 'sources': [
282 'test/multiprocess_exec_test_child.cc', 288 'test/multiprocess_exec_test_child.cc',
283 ], 289 ],
284 }, 290 },
285 ], 291 ],
286 } 292 }
OLDNEW
« util/mach/mach_message_util.h ('K') | « util/mach/mach_message_util_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698