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

Side by Side Diff: util/util.gyp

Issue 544393002: Add MachMessageServer and its test (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 6 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 'mac/process_types/crashreporterclient.proctype', 54 'mac/process_types/crashreporterclient.proctype',
55 'mac/process_types/custom.cc', 55 'mac/process_types/custom.cc',
56 'mac/process_types/dyld_images.proctype', 56 'mac/process_types/dyld_images.proctype',
57 'mac/process_types/flavors.h', 57 'mac/process_types/flavors.h',
58 'mac/process_types/internal.h', 58 'mac/process_types/internal.h',
59 'mac/process_types/loader.proctype', 59 'mac/process_types/loader.proctype',
60 'mac/process_types/nlist.proctype', 60 'mac/process_types/nlist.proctype',
61 'mac/process_types/traits.h', 61 'mac/process_types/traits.h',
62 'mach/bootstrap.cc', 62 'mach/bootstrap.cc',
63 'mach/bootstrap.h', 63 'mach/bootstrap.h',
64 'mach/mach_message_server.cc',
65 'mach/mach_message_server.h',
64 'mach/task_memory.cc', 66 'mach/task_memory.cc',
65 'mach/task_memory.h', 67 'mach/task_memory.h',
66 'misc/initialization_state.h', 68 'misc/initialization_state.h',
67 'misc/initialization_state_dcheck.cc', 69 'misc/initialization_state_dcheck.cc',
68 'misc/initialization_state_dcheck.h', 70 'misc/initialization_state_dcheck.h',
69 'misc/scoped_forbid_return.cc', 71 'misc/scoped_forbid_return.cc',
70 'misc/scoped_forbid_return.h', 72 'misc/scoped_forbid_return.h',
71 'misc/uuid.cc', 73 'misc/uuid.cc',
72 'misc/uuid.h', 74 'misc/uuid.h',
73 'numeric/checked_range.h', 75 'numeric/checked_range.h',
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 'file/string_file_writer_test.cc', 176 'file/string_file_writer_test.cc',
175 'mac/checked_mach_address_range_test.cc', 177 'mac/checked_mach_address_range_test.cc',
176 'mac/launchd_test.mm', 178 'mac/launchd_test.mm',
177 'mac/mac_util_test.mm', 179 'mac/mac_util_test.mm',
178 'mac/mach_o_image_reader_test.cc', 180 'mac/mach_o_image_reader_test.cc',
179 'mac/mach_o_image_segment_reader_test.cc', 181 'mac/mach_o_image_segment_reader_test.cc',
180 'mac/process_reader_test.cc', 182 'mac/process_reader_test.cc',
181 'mac/process_types_test.cc', 183 'mac/process_types_test.cc',
182 'mac/service_management_test.mm', 184 'mac/service_management_test.mm',
183 'mach/bootstrap_test.cc', 185 'mach/bootstrap_test.cc',
186 'mach/mach_message_server_test.cc',
184 'mach/task_memory_test.cc', 187 'mach/task_memory_test.cc',
185 'misc/initialization_state_dcheck_test.cc', 188 'misc/initialization_state_dcheck_test.cc',
186 'misc/initialization_state_test.cc', 189 'misc/initialization_state_test.cc',
187 'misc/scoped_forbid_return_test.cc', 190 'misc/scoped_forbid_return_test.cc',
188 'misc/uuid_test.cc', 191 'misc/uuid_test.cc',
189 'numeric/checked_range_test.cc', 192 'numeric/checked_range_test.cc',
190 'numeric/in_range_cast_test.cc', 193 'numeric/in_range_cast_test.cc',
191 'posix/process_util_test.cc', 194 'posix/process_util_test.cc',
192 'stdlib/strlcpy_test.cc', 195 'stdlib/strlcpy_test.cc',
193 'stdlib/strnlen_test.cc', 196 'stdlib/strnlen_test.cc',
194 'test/executable_path_test.cc', 197 'test/executable_path_test.cc',
195 'test/mac/mach_multiprocess_test.cc', 198 'test/mac/mach_multiprocess_test.cc',
196 'test/multiprocess_exec_test.cc', 199 'test/multiprocess_exec_test.cc',
197 'test/multiprocess_test.cc', 200 'test/multiprocess_test.cc',
198 ], 201 ],
199 }, 202 },
200 { 203 {
201 'target_name': 'util_test_multiprocess_exec_test_child', 204 'target_name': 'util_test_multiprocess_exec_test_child',
202 'type': 'executable', 205 'type': 'executable',
203 'sources': [ 206 'sources': [
204 'test/multiprocess_exec_test_child.cc', 207 'test/multiprocess_exec_test_child.cc',
205 ], 208 ],
206 }, 209 },
207 ], 210 ],
208 } 211 }
OLDNEW
« util/mach/mach_message_server_test.cc ('K') | « util/mach/mach_message_server_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698