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

Side by Side Diff: util/util.gyp

Issue 852213004: win: Add implementation of HTTPTransport based on WinHTTP (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@multiproc-impl
Patch Set: %z fix, now all http_transport_test pass Created 5 years, 11 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 'misc/uuid.h', 90 'misc/uuid.h',
91 'net/http_body.cc', 91 'net/http_body.cc',
92 'net/http_body.h', 92 'net/http_body.h',
93 'net/http_headers.cc', 93 'net/http_headers.cc',
94 'net/http_headers.h', 94 'net/http_headers.h',
95 'net/http_multipart_builder.cc', 95 'net/http_multipart_builder.cc',
96 'net/http_multipart_builder.h', 96 'net/http_multipart_builder.h',
97 'net/http_transport.cc', 97 'net/http_transport.cc',
98 'net/http_transport.h', 98 'net/http_transport.h',
99 'net/http_transport_mac.mm', 99 'net/http_transport_mac.mm',
100 'net/http_transport_win.cc',
100 'numeric/checked_range.h', 101 'numeric/checked_range.h',
101 'numeric/in_range_cast.h', 102 'numeric/in_range_cast.h',
102 'numeric/int128.h', 103 'numeric/int128.h',
103 'numeric/safe_assignment.h', 104 'numeric/safe_assignment.h',
104 'posix/close_multiple.cc', 105 'posix/close_multiple.cc',
105 'posix/close_multiple.h', 106 'posix/close_multiple.h',
106 'posix/close_stdio.cc', 107 'posix/close_stdio.cc',
107 'posix/close_stdio.h', 108 'posix/close_stdio.h',
108 'posix/drop_privileges.cc', 109 'posix/drop_privileges.cc',
109 'posix/drop_privileges.h', 110 'posix/drop_privileges.h',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 }, 180 },
180 ], 181 ],
181 'link_settings': { 182 'link_settings': {
182 'libraries': [ 183 'libraries': [
183 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', 184 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
184 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 185 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
185 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', 186 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework',
186 ], 187 ],
187 }, 188 },
188 }], 189 }],
190 ['OS=="win"', {
191 'link_settings': {
192 'libraries': [
193 '-lwinhttp.lib',
194 ],
195 },
196 }],
189 ], 197 ],
190 }, 198 },
191 { 199 {
192 'target_name': 'util_test_lib', 200 'target_name': 'util_test_lib',
193 'type': 'static_library', 201 'type': 'static_library',
194 'dependencies': [ 202 'dependencies': [
195 '../compat/compat.gyp:compat', 203 '../compat/compat.gyp:compat',
196 '../third_party/gtest/gtest.gyp:gtest', 204 '../third_party/gtest/gtest.gyp:gtest',
197 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', 205 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
198 'util', 206 'util',
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 'test/scoped_temp_dir_test.cc', 302 'test/scoped_temp_dir_test.cc',
295 ], 303 ],
296 'conditions': [ 304 'conditions': [
297 ['OS=="mac"', { 305 ['OS=="mac"', {
298 'link_settings': { 306 'link_settings': {
299 'libraries': [ 307 'libraries': [
300 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 308 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
301 ], 309 ],
302 }, 310 },
303 }], 311 }],
304 ['OS=="win"', {
305 'sources!': [
306 # TODO(scottmg): Temporarily excluded during Windows bring up.
307 'net/http_transport_test.cc',
308 ],
309 }],
310 ], 312 ],
311 }, 313 },
312 { 314 {
313 'target_name': 'util_test_multiprocess_exec_test_child', 315 'target_name': 'util_test_multiprocess_exec_test_child',
314 'type': 'executable', 316 'type': 'executable',
315 'sources': [ 317 'sources': [
316 'test/multiprocess_exec_test_child.cc', 318 'test/multiprocess_exec_test_child.cc',
317 ], 319 ],
318 }, 320 },
319 ], 321 ],
320 } 322 }
OLDNEW
« util/net/http_transport_win.cc ('K') | « util/net/http_transport_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698