Index: net/BUILD.gn |
diff --git a/net/BUILD.gn b/net/BUILD.gn |
index a77fac24fa3860f738cfa7149711ff6ecbde44ea..95d9a7a535284f66aa7d6b5b28dc56c1e1a107d7 100644 |
--- a/net/BUILD.gn |
+++ b/net/BUILD.gn |
@@ -545,6 +545,15 @@ grit("net_resources") { |
source = "base/net_resources.grd" |
} |
+static_library("net_util") { |
+ sources = gypi_values.net_util_sources |
+ configs += [ "//build/config/compiler:wexit_time_destructors" ] |
+ deps = [ |
+ ":net", |
+ "//sql:sql", |
+ ] |
+} |
+ |
static_library("http_server") { |
sources = [ |
"server/http_connection.cc", |
@@ -1062,6 +1071,7 @@ test("net_unittests") { |
deps = [ |
":http_server", |
":net", |
+ ":net_util", |
":quic_tools", |
":test_support", |
"//base", |