| 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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 grit("net_resources") { | 557 grit("net_resources") { |
| 558 source = "base/net_resources.grd" | 558 source = "base/net_resources.grd" |
| 559 use_qualified_include = true | 559 use_qualified_include = true |
| 560 outputs = [ | 560 outputs = [ |
| 561 "grit/net_resources.h", | 561 "grit/net_resources.h", |
| 562 "net_resources.pak", | 562 "net_resources.pak", |
| 563 "net_resources.rc", | 563 "net_resources.rc", |
| 564 ] | 564 ] |
| 565 } | 565 } |
| 566 | 566 |
| 567 static_library("net_extras") { |
| 568 sources = gypi_values.net_extras_sources |
| 569 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 570 deps = [ |
| 571 ":net", |
| 572 "//sql:sql", |
| 573 ] |
| 574 } |
| 575 |
| 567 static_library("http_server") { | 576 static_library("http_server") { |
| 568 sources = [ | 577 sources = [ |
| 569 "server/http_connection.cc", | 578 "server/http_connection.cc", |
| 570 "server/http_connection.h", | 579 "server/http_connection.h", |
| 571 "server/http_server.cc", | 580 "server/http_server.cc", |
| 572 "server/http_server.h", | 581 "server/http_server.h", |
| 573 "server/http_server_request_info.cc", | 582 "server/http_server_request_info.cc", |
| 574 "server/http_server_request_info.h", | 583 "server/http_server_request_info.h", |
| 575 "server/http_server_response_info.cc", | 584 "server/http_server_response_info.cc", |
| 576 "server/http_server_response_info.h", | 585 "server/http_server_response_info.h", |
| (...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1090 | 1099 |
| 1091 test("net_unittests") { | 1100 test("net_unittests") { |
| 1092 sources = gypi_values.net_test_sources | 1101 sources = gypi_values.net_test_sources |
| 1093 | 1102 |
| 1094 configs += [ ":net_win_size_truncation" ] | 1103 configs += [ ":net_win_size_truncation" ] |
| 1095 defines = [] | 1104 defines = [] |
| 1096 | 1105 |
| 1097 deps = [ | 1106 deps = [ |
| 1098 ":http_server", | 1107 ":http_server", |
| 1099 ":net", | 1108 ":net", |
| 1109 ":net_extras", |
| 1100 ":quic_tools", | 1110 ":quic_tools", |
| 1101 ":test_support", | 1111 ":test_support", |
| 1102 "//base", | 1112 "//base", |
| 1103 "//base:i18n", | 1113 "//base:i18n", |
| 1104 "//base:prefs_test_support", | 1114 "//base:prefs_test_support", |
| 1105 "//base/allocator", | 1115 "//base/allocator", |
| 1106 "//base/third_party/dynamic_annotations", | 1116 "//base/third_party/dynamic_annotations", |
| 1107 "//crypto", | 1117 "//crypto", |
| 1108 "//crypto:platform", | 1118 "//crypto:platform", |
| 1109 "//crypto:test_support", | 1119 "//crypto:test_support", |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1357 sources = [ "quic/quic_server_bin.cc" ] | 1367 sources = [ "quic/quic_server_bin.cc" ] |
| 1358 deps = [ | 1368 deps = [ |
| 1359 ":quic_tools", | 1369 ":quic_tools", |
| 1360 ":net", | 1370 ":net", |
| 1361 "//base", | 1371 "//base", |
| 1362 "//third_party/boringssl", | 1372 "//third_party/boringssl", |
| 1363 ] | 1373 ] |
| 1364 } | 1374 } |
| 1365 | 1375 |
| 1366 } # !is_android | 1376 } # !is_android |
| OLD | NEW |