| OLD | NEW |
| (Empty) |
| 1 diff --git a/net/BUILD.gn b/net/BUILD.gn | |
| 2 index 73eb465..4cecaef 100644 | |
| 3 --- a/net/BUILD.gn | |
| 4 +++ b/net/BUILD.gn | |
| 5 @@ -541,6 +541,8 @@ grit("net_resources") { | |
| 6 ] | |
| 7 } | |
| 8 | |
| 9 +if (false) { | |
| 10 + | |
| 11 static_library("extras") { | |
| 12 sources = gypi_values.net_extras_sources | |
| 13 configs += [ "//build/config/compiler:wexit_time_destructors" ] | |
| 14 @@ -550,6 +552,8 @@ static_library("extras") { | |
| 15 ] | |
| 16 } | |
| 17 | |
| 18 +} # if (false) | |
| 19 + | |
| 20 static_library("http_server") { | |
| 21 sources = [ | |
| 22 "server/http_connection.cc", | |
| 23 @@ -1124,11 +1128,14 @@ if (!is_android && !is_win && !is_mac) { | |
| 24 test("net_unittests") { | |
| 25 sources = gypi_values.net_test_sources | |
| 26 | |
| 27 + sources -= [ | |
| 28 + "extras/sqlite/sqlite_channel_id_store_unittest.cc", | |
| 29 + ] | |
| 30 + | |
| 31 configs += [ ":net_win_size_truncation" ] | |
| 32 defines = [] | |
| 33 | |
| 34 deps = [ | |
| 35 - ":extras", | |
| 36 ":http_server", | |
| 37 ":net", | |
| 38 ":quic_tools", | |
| OLD | NEW |