| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//url/config.gni") | 8 import("//url/config.gni") |
| 9 | 9 |
| 10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. | 10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. |
| (...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 source = "base/net_resources.grd" | 535 source = "base/net_resources.grd" |
| 536 use_qualified_include = true | 536 use_qualified_include = true |
| 537 outputs = [ | 537 outputs = [ |
| 538 "grit/net_resources.h", | 538 "grit/net_resources.h", |
| 539 "net_resources.pak", | 539 "net_resources.pak", |
| 540 "net_resources.rc", | 540 "net_resources.rc", |
| 541 ] | 541 ] |
| 542 } | 542 } |
| 543 | 543 |
| 544 if (false) { | 544 if (false) { |
| 545 static_library("extras") { | 545 |
| 546 sources = gypi_values.net_extras_sources | 546 static_library("extras") { |
| 547 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 547 sources = gypi_values.net_extras_sources |
| 548 deps = [ | 548 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 549 ":net", | 549 deps = [ |
| 550 "//sql:sql", | 550 ":net", |
| 551 ] | 551 "//sql:sql", |
| 552 } | 552 ] |
| 553 } # if (false) | 553 } |
| 554 |
| 555 } # if (false) |
| 554 | 556 |
| 555 static_library("http_server") { | 557 static_library("http_server") { |
| 556 sources = [ | 558 sources = [ |
| 557 "server/http_connection.cc", | 559 "server/http_connection.cc", |
| 558 "server/http_connection.h", | 560 "server/http_connection.h", |
| 559 "server/http_server.cc", | 561 "server/http_server.cc", |
| 560 "server/http_server.h", | 562 "server/http_server.h", |
| 561 "server/http_server_request_info.cc", | 563 "server/http_server_request_info.cc", |
| 562 "server/http_server_request_info.h", | 564 "server/http_server_request_info.h", |
| 563 "server/http_server_response_info.cc", | 565 "server/http_server_response_info.cc", |
| (...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1119 ":net", | 1121 ":net", |
| 1120 "//base", | 1122 "//base", |
| 1121 "//base/third_party/dynamic_annotations", | 1123 "//base/third_party/dynamic_annotations", |
| 1122 "//url", | 1124 "//url", |
| 1123 ] | 1125 ] |
| 1124 } | 1126 } |
| 1125 | 1127 |
| 1126 test("net_unittests") { | 1128 test("net_unittests") { |
| 1127 sources = gypi_values.net_test_sources | 1129 sources = gypi_values.net_test_sources |
| 1128 | 1130 |
| 1129 sources -= [ "extras/sqlite/sqlite_channel_id_store_unittest.cc" ] | 1131 sources -= [ |
| 1132 "extras/sqlite/sqlite_channel_id_store_unittest.cc", |
| 1133 ] |
| 1130 | 1134 |
| 1131 configs += [ ":net_win_size_truncation" ] | 1135 configs += [ ":net_win_size_truncation" ] |
| 1132 defines = [] | 1136 defines = [] |
| 1133 | 1137 |
| 1134 deps = [ | 1138 deps = [ |
| 1135 ":http_server", | 1139 ":http_server", |
| 1136 ":net", | 1140 ":net", |
| 1137 ":quic_tools", | 1141 ":quic_tools", |
| 1138 ":test_support", | 1142 ":test_support", |
| 1139 "//base", | 1143 "//base", |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1392 "quic/quic_server_bin.cc", | 1396 "quic/quic_server_bin.cc", |
| 1393 ] | 1397 ] |
| 1394 deps = [ | 1398 deps = [ |
| 1395 ":quic_tools", | 1399 ":quic_tools", |
| 1396 ":net", | 1400 ":net", |
| 1397 "//base", | 1401 "//base", |
| 1398 "//third_party/boringssl", | 1402 "//third_party/boringssl", |
| 1399 ] | 1403 ] |
| 1400 } | 1404 } |
| 1401 } # !is_android && !is_win && !is_mac | 1405 } # !is_android && !is_win && !is_mac |
| OLD | NEW |