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

Unified 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 side-by-side diff with in-line comments
Download patch
« util/net/http_transport_win.cc ('K') | « util/net/http_transport_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/util.gyp
diff --git a/util/util.gyp b/util/util.gyp
index 86d13f77c87ee0c10d95f581e4c7b93f5ce863ca..2d3d848cb7752fb7f9b34b8b9705c4b8fb86a8a3 100644
--- a/util/util.gyp
+++ b/util/util.gyp
@@ -97,6 +97,7 @@
'net/http_transport.cc',
'net/http_transport.h',
'net/http_transport_mac.mm',
+ 'net/http_transport_win.cc',
'numeric/checked_range.h',
'numeric/in_range_cast.h',
'numeric/int128.h',
@@ -186,6 +187,13 @@
],
},
}],
+ ['OS=="win"', {
+ 'link_settings': {
+ 'libraries': [
+ '-lwinhttp.lib',
+ ],
+ },
+ }],
],
},
{
@@ -301,12 +309,6 @@
],
},
}],
- ['OS=="win"', {
- 'sources!': [
- # TODO(scottmg): Temporarily excluded during Windows bring up.
- 'net/http_transport_test.cc',
- ],
- }],
],
},
{
« 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