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 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 | 556 |
557 grit("net_resources") { | 557 grit("net_resources") { |
558 source = "base/net_resources.grd" | 558 source = "base/net_resources.grd" |
559 outputs = [ | 559 outputs = [ |
560 "grit/net_resources.h", | 560 "grit/net_resources.h", |
561 "net_resources.pak", | 561 "net_resources.pak", |
562 "net_resources.rc", | 562 "net_resources.rc", |
563 ] | 563 ] |
564 } | 564 } |
565 | 565 |
| 566 static_library("net_extras") { |
| 567 sources = gypi_values.net_extras_sources |
| 568 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 569 deps = [ |
| 570 ":net", |
| 571 "//sql:sql", |
| 572 ] |
| 573 } |
| 574 |
566 static_library("http_server") { | 575 static_library("http_server") { |
567 sources = [ | 576 sources = [ |
568 "server/http_connection.cc", | 577 "server/http_connection.cc", |
569 "server/http_connection.h", | 578 "server/http_connection.h", |
570 "server/http_server.cc", | 579 "server/http_server.cc", |
571 "server/http_server.h", | 580 "server/http_server.h", |
572 "server/http_server_request_info.cc", | 581 "server/http_server_request_info.cc", |
573 "server/http_server_request_info.h", | 582 "server/http_server_request_info.h", |
574 "server/http_server_response_info.cc", | 583 "server/http_server_response_info.cc", |
575 "server/http_server_response_info.h", | 584 "server/http_server_response_info.h", |
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1081 | 1090 |
1082 test("net_unittests") { | 1091 test("net_unittests") { |
1083 sources = gypi_values.net_test_sources | 1092 sources = gypi_values.net_test_sources |
1084 | 1093 |
1085 configs += [ ":net_win_size_truncation" ] | 1094 configs += [ ":net_win_size_truncation" ] |
1086 defines = [] | 1095 defines = [] |
1087 | 1096 |
1088 deps = [ | 1097 deps = [ |
1089 ":http_server", | 1098 ":http_server", |
1090 ":net", | 1099 ":net", |
| 1100 ":net_extras", |
1091 ":quic_tools", | 1101 ":quic_tools", |
1092 ":test_support", | 1102 ":test_support", |
1093 "//base", | 1103 "//base", |
1094 "//base:i18n", | 1104 "//base:i18n", |
1095 "//base:prefs_test_support", | 1105 "//base:prefs_test_support", |
1096 "//base/allocator", | 1106 "//base/allocator", |
1097 "//base/third_party/dynamic_annotations", | 1107 "//base/third_party/dynamic_annotations", |
1098 "//crypto", | 1108 "//crypto", |
1099 "//crypto:platform", | 1109 "//crypto:platform", |
1100 "//crypto:test_support", | 1110 "//crypto:test_support", |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1348 sources = [ "quic/quic_server_bin.cc" ] | 1358 sources = [ "quic/quic_server_bin.cc" ] |
1349 deps = [ | 1359 deps = [ |
1350 ":quic_tools", | 1360 ":quic_tools", |
1351 ":net", | 1361 ":net", |
1352 "//base", | 1362 "//base", |
1353 "//third_party/boringssl", | 1363 "//third_party/boringssl", |
1354 ] | 1364 ] |
1355 } | 1365 } |
1356 | 1366 |
1357 } # !is_android | 1367 } # !is_android |
OLD | NEW |