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

Side by Side Diff: util/util.gyp

Issue 575823002: Drop 10.5 support (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
« 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 'mac/process_types.h', 52 'mac/process_types.h',
53 'mac/process_types/all.proctype', 53 'mac/process_types/all.proctype',
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',
63 'mach/bootstrap.h',
64 'mach/exc_client_variants.cc', 62 'mach/exc_client_variants.cc',
65 'mach/exc_client_variants.h', 63 'mach/exc_client_variants.h',
66 'mach/exc_server_variants.cc', 64 'mach/exc_server_variants.cc',
67 'mach/exc_server_variants.h', 65 'mach/exc_server_variants.h',
68 'mach/mach_extensions.cc', 66 'mach/mach_extensions.cc',
69 'mach/mach_extensions.h', 67 'mach/mach_extensions.h',
70 'mach/mach_message_server.cc', 68 'mach/mach_message_server.cc',
71 'mach/mach_message_server.h', 69 'mach/mach_message_server.h',
72 'mach/symbolic_constants_mach.cc', 70 'mach/symbolic_constants_mach.cc',
73 'mach/symbolic_constants_mach.h', 71 'mach/symbolic_constants_mach.h',
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 'sources': [ 187 'sources': [
190 'file/string_file_writer_test.cc', 188 'file/string_file_writer_test.cc',
191 'mac/checked_mach_address_range_test.cc', 189 'mac/checked_mach_address_range_test.cc',
192 'mac/launchd_test.mm', 190 'mac/launchd_test.mm',
193 'mac/mac_util_test.mm', 191 'mac/mac_util_test.mm',
194 'mac/mach_o_image_reader_test.cc', 192 'mac/mach_o_image_reader_test.cc',
195 'mac/mach_o_image_segment_reader_test.cc', 193 'mac/mach_o_image_segment_reader_test.cc',
196 'mac/process_reader_test.cc', 194 'mac/process_reader_test.cc',
197 'mac/process_types_test.cc', 195 'mac/process_types_test.cc',
198 'mac/service_management_test.mm', 196 'mac/service_management_test.mm',
199 'mach/bootstrap_test.cc',
200 'mach/exc_client_variants_test.cc', 197 'mach/exc_client_variants_test.cc',
201 'mach/exc_server_variants_test.cc', 198 'mach/exc_server_variants_test.cc',
202 'mach/mach_extensions_test.cc', 199 'mach/mach_extensions_test.cc',
203 'mach/mach_message_server_test.cc', 200 'mach/mach_message_server_test.cc',
204 'mach/symbolic_constants_mach_test.cc', 201 'mach/symbolic_constants_mach_test.cc',
205 'mach/task_memory_test.cc', 202 'mach/task_memory_test.cc',
206 'misc/initialization_state_dcheck_test.cc', 203 'misc/initialization_state_dcheck_test.cc',
207 'misc/initialization_state_test.cc', 204 'misc/initialization_state_test.cc',
208 'misc/scoped_forbid_return_test.cc', 205 'misc/scoped_forbid_return_test.cc',
209 'misc/uuid_test.cc', 206 'misc/uuid_test.cc',
(...skipping 12 matching lines...) Expand all
222 }, 219 },
223 { 220 {
224 'target_name': 'util_test_multiprocess_exec_test_child', 221 'target_name': 'util_test_multiprocess_exec_test_child',
225 'type': 'executable', 222 'type': 'executable',
226 'sources': [ 223 'sources': [
227 'test/multiprocess_exec_test_child.cc', 224 'test/multiprocess_exec_test_child.cc',
228 ], 225 ],
229 }, 226 },
230 ], 227 ],
231 } 228 }
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