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

Side by Side Diff: util/util.gyp

Issue 545053003: Add exc_server_variants including UniversalMachExcServer and its test (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Address review feedback 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
« no previous file with comments | « util/test/mac/mach_multiprocess.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 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/exc_server_variants.cc',
Robert Sesek 2014/09/10 21:10:21 Need to add the new header here.
65 'mach/exc_server_variants.h',
64 'mach/mach_message_server.cc', 66 'mach/mach_message_server.cc',
65 'mach/mach_message_server.h', 67 'mach/mach_message_server.h',
66 'mach/task_memory.cc', 68 'mach/task_memory.cc',
67 'mach/task_memory.h', 69 'mach/task_memory.h',
68 'misc/initialization_state.h', 70 'misc/initialization_state.h',
69 'misc/initialization_state_dcheck.cc', 71 'misc/initialization_state_dcheck.cc',
70 'misc/initialization_state_dcheck.h', 72 'misc/initialization_state_dcheck.h',
71 'misc/scoped_forbid_return.cc', 73 'misc/scoped_forbid_return.cc',
72 'misc/scoped_forbid_return.h', 74 'misc/scoped_forbid_return.h',
73 'misc/uuid.cc', 75 'misc/uuid.cc',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 ], 162 ],
161 }, 163 },
162 { 164 {
163 'target_name': 'util_test', 165 'target_name': 'util_test',
164 'type': 'executable', 166 'type': 'executable',
165 'dependencies': [ 167 'dependencies': [
166 'util', 168 'util',
167 'util_test_lib', 169 'util_test_lib',
168 'util_test_multiprocess_exec_test_child', 170 'util_test_multiprocess_exec_test_child',
169 '../compat/compat.gyp:compat', 171 '../compat/compat.gyp:compat',
172 '../third_party/gmock/gmock.gyp:gmock',
170 '../third_party/gtest/gtest.gyp:gtest', 173 '../third_party/gtest/gtest.gyp:gtest',
171 '../third_party/gtest/gtest.gyp:gtest_main', 174 '../third_party/gtest/gtest.gyp:gtest_main',
172 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', 175 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
173 ], 176 ],
174 'include_dirs': [ 177 'include_dirs': [
175 '..', 178 '..',
176 ], 179 ],
177 'sources': [ 180 'sources': [
178 'file/string_file_writer_test.cc', 181 'file/string_file_writer_test.cc',
179 'mac/checked_mach_address_range_test.cc', 182 'mac/checked_mach_address_range_test.cc',
180 'mac/launchd_test.mm', 183 'mac/launchd_test.mm',
181 'mac/mac_util_test.mm', 184 'mac/mac_util_test.mm',
182 'mac/mach_o_image_reader_test.cc', 185 'mac/mach_o_image_reader_test.cc',
183 'mac/mach_o_image_segment_reader_test.cc', 186 'mac/mach_o_image_segment_reader_test.cc',
184 'mac/process_reader_test.cc', 187 'mac/process_reader_test.cc',
185 'mac/process_types_test.cc', 188 'mac/process_types_test.cc',
186 'mac/service_management_test.mm', 189 'mac/service_management_test.mm',
187 'mach/bootstrap_test.cc', 190 'mach/bootstrap_test.cc',
191 'mach/exc_server_variants_test.cc',
188 'mach/mach_message_server_test.cc', 192 'mach/mach_message_server_test.cc',
189 'mach/task_memory_test.cc', 193 'mach/task_memory_test.cc',
190 'misc/initialization_state_dcheck_test.cc', 194 'misc/initialization_state_dcheck_test.cc',
191 'misc/initialization_state_test.cc', 195 'misc/initialization_state_test.cc',
192 'misc/scoped_forbid_return_test.cc', 196 'misc/scoped_forbid_return_test.cc',
193 'misc/uuid_test.cc', 197 'misc/uuid_test.cc',
194 'numeric/checked_range_test.cc', 198 'numeric/checked_range_test.cc',
195 'numeric/in_range_cast_test.cc', 199 'numeric/in_range_cast_test.cc',
196 'posix/process_util_test.cc', 200 'posix/process_util_test.cc',
197 'stdlib/string_number_conversion_test.cc', 201 'stdlib/string_number_conversion_test.cc',
198 'stdlib/strlcpy_test.cc', 202 'stdlib/strlcpy_test.cc',
199 'stdlib/strnlen_test.cc', 203 'stdlib/strnlen_test.cc',
200 'test/executable_path_test.cc', 204 'test/executable_path_test.cc',
201 'test/mac/mach_multiprocess_test.cc', 205 'test/mac/mach_multiprocess_test.cc',
202 'test/multiprocess_exec_test.cc', 206 'test/multiprocess_exec_test.cc',
203 'test/multiprocess_test.cc', 207 'test/multiprocess_test.cc',
204 ], 208 ],
205 }, 209 },
206 { 210 {
207 'target_name': 'util_test_multiprocess_exec_test_child', 211 'target_name': 'util_test_multiprocess_exec_test_child',
208 'type': 'executable', 212 'type': 'executable',
209 'sources': [ 213 'sources': [
210 'test/multiprocess_exec_test_child.cc', 214 'test/multiprocess_exec_test_child.cc',
211 ], 215 ],
212 }, 216 },
213 ], 217 ],
214 } 218 }
OLDNEW
« no previous file with comments | « util/test/mac/mach_multiprocess.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698