Index: net/BUILD.gn |
diff --git a/net/BUILD.gn b/net/BUILD.gn |
index 6b9c93ee553fed78cf45203303ab8669decf9fa6..7b63480abc22ee9402d5366b368c49a36806ed74 100644 |
--- a/net/BUILD.gn |
+++ b/net/BUILD.gn |
@@ -75,6 +75,7 @@ component("net") { |
"DLOPEN_KERBEROS", |
"NET_IMPLEMENTATION", |
] |
+ |
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
public_configs = [ ":net_config" ] |
@@ -83,6 +84,7 @@ component("net") { |
public_deps = [ |
"//crypto", |
"//crypto:platform", |
+ "//url", |
] |
deps = [ |
":net_resources", |
@@ -541,6 +543,7 @@ static_library("extras") { |
configs += [ "//build/config/compiler:wexit_time_destructors" ] |
deps = [ |
":net", |
+ "//base", |
"//sql:sql", |
] |
} |
@@ -795,6 +798,7 @@ if (use_v8_in_net && !is_android) { |
public_deps = [ |
":mojo_type_converters", |
":net", |
+ "//base", |
"//net/interfaces", |
"//third_party/mojo/src/mojo/public/cpp/bindings", |
] |
@@ -820,6 +824,7 @@ if (!is_ios && !is_android) { |
sources = [ |
"tools/crash_cache/crash_cache.cc", |
] |
+ |
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
deps = [ |
@@ -834,6 +839,7 @@ if (!is_ios && !is_android) { |
sources = [ |
"tools/crl_set_dump/crl_set_dump.cc", |
] |
+ |
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
deps = [ |
@@ -847,6 +853,7 @@ if (!is_ios && !is_android) { |
sources = [ |
"tools/dns_fuzz_stub/dns_fuzz_stub.cc", |
] |
+ |
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
deps = [ |
@@ -872,6 +879,7 @@ if (!is_ios && !is_android) { |
sources = [ |
"tools/get_server_time/get_server_time.cc", |
] |
+ |
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
deps = [ |
@@ -924,6 +932,7 @@ if (!is_ios && !is_android) { |
sources = [ |
"disk_cache/blockfile/stress_cache.cc", |
] |
+ |
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
deps = [ |
@@ -937,6 +946,7 @@ if (!is_ios && !is_android) { |
sources = [ |
"tools/tld_cleanup/tld_cleanup.cc", |
] |
+ |
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
deps = [ |
@@ -1014,6 +1024,7 @@ if (is_linux) { |
"tools/flip_server/spdy_interface_test.cc", |
] |
deps = [ |
+ ":balsa", |
":flip_in_mem_edsm_server_base", |
":net", |
":test_support", |
@@ -1029,6 +1040,7 @@ if (is_linux) { |
"tools/flip_server/flip_in_mem_edsm_server.cc", |
] |
deps = [ |
+ ":balsa", |
":flip_in_mem_edsm_server_base", |
":net", |
"//base", |
@@ -1085,6 +1097,8 @@ if (is_linux) { |
"tools/quic/quic_client_bin.cc", |
] |
deps = [ |
+ ":balsa", |
+ ":epoll_server", |
":quic_base", |
":net", |
"//base", |
@@ -1181,6 +1195,7 @@ if (!is_android && !is_win && !is_mac) { |
"//crypto:platform", |
"//crypto:test_support", |
"//net/base/registry_controlled_domains", |
+ "//sql", |
"//testing/gmock", |
"//testing/gtest", |
"//third_party/zlib", |