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

Side by Side Diff: util/util.gyp

Issue 692963002: Add HTTPTransport, a Mac implementation, and an end-to-end test. (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: For landing Created 6 years, 1 month 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/net/http_transport_test_server.py ('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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 'misc/initialization_state.h', 64 'misc/initialization_state.h',
65 'misc/initialization_state_dcheck.cc', 65 'misc/initialization_state_dcheck.cc',
66 'misc/initialization_state_dcheck.h', 66 'misc/initialization_state_dcheck.h',
67 'misc/scoped_forbid_return.cc', 67 'misc/scoped_forbid_return.cc',
68 'misc/scoped_forbid_return.h', 68 'misc/scoped_forbid_return.h',
69 'misc/symbolic_constants_common.h', 69 'misc/symbolic_constants_common.h',
70 'misc/uuid.cc', 70 'misc/uuid.cc',
71 'misc/uuid.h', 71 'misc/uuid.h',
72 'net/http_body.cc', 72 'net/http_body.cc',
73 'net/http_body.h', 73 'net/http_body.h',
74 'net/http_headers.cc',
75 'net/http_headers.h',
74 'net/http_multipart_builder.cc', 76 'net/http_multipart_builder.cc',
75 'net/http_multipart_builder.h', 77 'net/http_multipart_builder.h',
78 'net/http_transport.cc',
79 'net/http_transport.h',
80 'net/http_transport_mac.mm',
76 'numeric/checked_range.h', 81 'numeric/checked_range.h',
77 'numeric/in_range_cast.h', 82 'numeric/in_range_cast.h',
78 'numeric/int128.h', 83 'numeric/int128.h',
79 'numeric/safe_assignment.h', 84 'numeric/safe_assignment.h',
80 'posix/process_util.h', 85 'posix/process_util.h',
81 'posix/process_util_mac.cc', 86 'posix/process_util_mac.cc',
82 'posix/symbolic_constants_posix.cc', 87 'posix/symbolic_constants_posix.cc',
83 'posix/symbolic_constants_posix.h', 88 'posix/symbolic_constants_posix.h',
84 'stdlib/cxx.h', 89 'stdlib/cxx.h',
85 'stdlib/objc.h', 90 'stdlib/objc.h',
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 'mach/task_memory_test.cc', 218 'mach/task_memory_test.cc',
214 'misc/clock_test.cc', 219 'misc/clock_test.cc',
215 'misc/initialization_state_dcheck_test.cc', 220 'misc/initialization_state_dcheck_test.cc',
216 'misc/initialization_state_test.cc', 221 'misc/initialization_state_test.cc',
217 'misc/scoped_forbid_return_test.cc', 222 'misc/scoped_forbid_return_test.cc',
218 'misc/uuid_test.cc', 223 'misc/uuid_test.cc',
219 'net/http_body_test.cc', 224 'net/http_body_test.cc',
220 'net/http_body_test_util.cc', 225 'net/http_body_test_util.cc',
221 'net/http_body_test_util.h', 226 'net/http_body_test_util.h',
222 'net/http_multipart_builder_test.cc', 227 'net/http_multipart_builder_test.cc',
228 'net/http_transport_test.cc',
223 'numeric/checked_range_test.cc', 229 'numeric/checked_range_test.cc',
224 'numeric/in_range_cast_test.cc', 230 'numeric/in_range_cast_test.cc',
225 'numeric/int128_test.cc', 231 'numeric/int128_test.cc',
226 'posix/process_util_test.cc', 232 'posix/process_util_test.cc',
227 'posix/symbolic_constants_posix_test.cc', 233 'posix/symbolic_constants_posix_test.cc',
228 'stdlib/string_number_conversion_test.cc', 234 'stdlib/string_number_conversion_test.cc',
229 'stdlib/strlcpy_test.cc', 235 'stdlib/strlcpy_test.cc',
230 'stdlib/strnlen_test.cc', 236 'stdlib/strnlen_test.cc',
231 'synchronization/semaphore_test.cc', 237 'synchronization/semaphore_test.cc',
232 'test/executable_path_test.cc', 238 'test/executable_path_test.cc',
(...skipping 13 matching lines...) Expand all
246 }, 252 },
247 { 253 {
248 'target_name': 'util_test_multiprocess_exec_test_child', 254 'target_name': 'util_test_multiprocess_exec_test_child',
249 'type': 'executable', 255 'type': 'executable',
250 'sources': [ 256 'sources': [
251 'test/multiprocess_exec_test_child.cc', 257 'test/multiprocess_exec_test_child.cc',
252 ], 258 ],
253 }, 259 },
254 ], 260 ],
255 } 261 }
OLDNEW
« no previous file with comments | « util/net/http_transport_test_server.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698