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