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

Unified Diff: net/net.gyp

Issue 11830032: Make all net targets build on Win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 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
« no previous file with comments | « chrome/app/policy/cloud_policy_codegen.gyp ('k') | net/spdy/spdy_network_transaction_spdy2_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/net.gyp
===================================================================
--- net/net.gyp (revision 175573)
+++ net/net.gyp (working copy)
@@ -1167,6 +1167,8 @@
'third_party/nss/ssl.gyp:libssl',
'tld_cleanup',
],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
}, { # else: OS != "win"
'sources!': [
'base/winsock_init.cc',
@@ -1689,6 +1691,8 @@
'../third_party/nss/nss.gyp:nss',
'third_party/nss/ssl.gyp:libssl',
],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
},
],
[ 'OS == "mac"', {
@@ -1821,6 +1825,8 @@
'dependencies': [
'../third_party/icu/icu.gyp:icudata',
],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
},
],
],
@@ -1952,6 +1958,8 @@
},
],
],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
},
{
'target_name': 'net_resources',
@@ -1988,6 +1996,8 @@
'server/web_socket.cc',
'server/web_socket.h',
],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
},
{
'target_name': 'dump_cache',
@@ -2012,6 +2022,8 @@
'tools/dump_cache/url_utilities.h',
'tools/dump_cache/url_utilities.cc',
],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
},
],
'conditions': [
@@ -2036,6 +2048,8 @@
'proxy/proxy_service_v8.cc',
'proxy/proxy_service_v8.h',
],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
},
],
}],
@@ -2054,6 +2068,8 @@
'sources': [
'tools/crash_cache/crash_cache.cc',
],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
},
{
'target_name': 'crl_set_dump',
@@ -2065,6 +2081,8 @@
'sources': [
'tools/crl_set_dump/crl_set_dump.cc',
],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
},
{
'target_name': 'dns_fuzz_stub',
@@ -2076,6 +2094,8 @@
'sources': [
'tools/dns_fuzz_stub/dns_fuzz_stub.cc',
],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
},
{
'target_name': 'fetch_client',
@@ -2092,6 +2112,8 @@
'sources': [
'tools/fetch/fetch_client.cc',
],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
},
{
'target_name': 'fetch_server',
@@ -2115,6 +2137,8 @@
'tools/fetch/http_session.cc',
'tools/fetch/http_session.h',
],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
},
{
'target_name': 'gdig',
@@ -2140,6 +2164,8 @@
'sources': [
'tools/get_server_time/get_server_time.cc',
],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
},
{
'target_name': 'net_watcher',
@@ -2187,6 +2213,8 @@
'sources': [
'disk_cache/stress_cache.cc',
],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
},
{
'target_name': 'tld_cleanup',
@@ -2199,6 +2227,8 @@
'sources': [
'tools/tld_cleanup/tld_cleanup.cc',
],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [4267, ],
},
],
}],
« no previous file with comments | « chrome/app/policy/cloud_policy_codegen.gyp ('k') | net/spdy/spdy_network_transaction_spdy2_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698