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 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1087 | 1096 |
1088 test("net_unittests") { | 1097 test("net_unittests") { |
1089 sources = gypi_values.net_test_sources | 1098 sources = gypi_values.net_test_sources |
1090 | 1099 |
1091 configs += [ ":net_win_size_truncation" ] | 1100 configs += [ ":net_win_size_truncation" ] |
1092 defines = [] | 1101 defines = [] |
1093 | 1102 |
1094 deps = [ | 1103 deps = [ |
1095 ":http_server", | 1104 ":http_server", |
1096 ":net", | 1105 ":net", |
| 1106 ":net_extras", |
1097 ":quic_tools", | 1107 ":quic_tools", |
1098 ":test_support", | 1108 ":test_support", |
1099 "//base", | 1109 "//base", |
1100 "//base:i18n", | 1110 "//base:i18n", |
1101 "//base:prefs_test_support", | 1111 "//base:prefs_test_support", |
1102 "//base/allocator", | 1112 "//base/allocator", |
1103 "//base/third_party/dynamic_annotations", | 1113 "//base/third_party/dynamic_annotations", |
1104 "//crypto", | 1114 "//crypto", |
1105 "//crypto:platform", | 1115 "//crypto:platform", |
1106 "//crypto:test_support", | 1116 "//crypto:test_support", |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1354 sources = [ "quic/quic_server_bin.cc" ] | 1364 sources = [ "quic/quic_server_bin.cc" ] |
1355 deps = [ | 1365 deps = [ |
1356 ":quic_tools", | 1366 ":quic_tools", |
1357 ":net", | 1367 ":net", |
1358 "//base", | 1368 "//base", |
1359 "//third_party/boringssl", | 1369 "//third_party/boringssl", |
1360 ] | 1370 ] |
1361 } | 1371 } |
1362 | 1372 |
1363 } # !is_android | 1373 } # !is_android |
OLD | NEW |