applied patch net_sql.patch
diff --git a/net/BUILD.gn b/net/BUILD.gn
index 3dcfa6b..81d59c8 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -551,6 +551,8 @@
   ]
 }
 
+if (false) {
+
 static_library("extras") {
   sources = gypi_values.net_extras_sources
   configs += [ "//build/config/compiler:wexit_time_destructors" ]
@@ -560,6 +562,8 @@
   ]
 }
 
+} # if (false)
+
 static_library("http_server") {
   sources = [
     "server/http_connection.cc",
@@ -1103,11 +1107,14 @@
 test("net_unittests") {
   sources = gypi_values.net_test_sources
 
+  sources -= [
+    "extras/sqlite/sqlite_channel_id_store_unittest.cc",
+  ]
+
   configs += [ ":net_win_size_truncation" ]
   defines = []
 
   deps = [
-    ":extras",
     ":http_server",
     ":net",
     ":quic_tools",