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("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
9 import("//url/config.gni") | 9 import("//url/config.gni") |
10 | 10 |
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 "base/net_string_util_icu_alternatives_android.cc", | 538 "base/net_string_util_icu_alternatives_android.cc", |
539 "base/net_string_util_icu_alternatives_android.h", | 539 "base/net_string_util_icu_alternatives_android.h", |
540 ] | 540 ] |
541 } | 541 } |
542 } | 542 } |
543 | 543 |
544 grit("net_resources") { | 544 grit("net_resources") { |
545 source = "base/net_resources.grd" | 545 source = "base/net_resources.grd" |
546 } | 546 } |
547 | 547 |
| 548 static_library("net_sqlite") { |
| 549 sources = [ |
| 550 "sqlite/sqlite_server_bound_cert_store.cc", |
| 551 "sqlite/sqlite_server_bound_cert_store.h", |
| 552 ] |
| 553 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 554 deps = [ |
| 555 ":net", |
| 556 "//sql:sql", |
| 557 ] |
| 558 } |
| 559 |
548 static_library("http_server") { | 560 static_library("http_server") { |
549 sources = [ | 561 sources = [ |
550 "server/http_connection.cc", | 562 "server/http_connection.cc", |
551 "server/http_connection.h", | 563 "server/http_connection.h", |
552 "server/http_server.cc", | 564 "server/http_server.cc", |
553 "server/http_server.h", | 565 "server/http_server.h", |
554 "server/http_server_request_info.cc", | 566 "server/http_server_request_info.cc", |
555 "server/http_server_request_info.h", | 567 "server/http_server_request_info.h", |
556 "server/http_server_response_info.cc", | 568 "server/http_server_response_info.cc", |
557 "server/http_server_response_info.h", | 569 "server/http_server_response_info.h", |
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1055 | 1067 |
1056 test("net_unittests") { | 1068 test("net_unittests") { |
1057 sources = gypi_values.net_test_sources | 1069 sources = gypi_values.net_test_sources |
1058 | 1070 |
1059 configs += [ ":net_win_size_truncation" ] | 1071 configs += [ ":net_win_size_truncation" ] |
1060 defines = [] | 1072 defines = [] |
1061 | 1073 |
1062 deps = [ | 1074 deps = [ |
1063 ":http_server", | 1075 ":http_server", |
1064 ":net", | 1076 ":net", |
| 1077 ":net_sqlite", |
1065 ":quic_tools", | 1078 ":quic_tools", |
1066 ":test_support", | 1079 ":test_support", |
1067 "//base", | 1080 "//base", |
1068 "//base:i18n", | 1081 "//base:i18n", |
1069 "//base:prefs_test_support", | 1082 "//base:prefs_test_support", |
1070 "//base/allocator", | 1083 "//base/allocator", |
1071 "//base/third_party/dynamic_annotations", | 1084 "//base/third_party/dynamic_annotations", |
1072 "//crypto", | 1085 "//crypto", |
1073 "//crypto:platform", | 1086 "//crypto:platform", |
1074 "//net/base/registry_controlled_domains", | 1087 "//net/base/registry_controlled_domains", |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1320 sources = [ "quic/quic_server_bin.cc" ] | 1333 sources = [ "quic/quic_server_bin.cc" ] |
1321 deps = [ | 1334 deps = [ |
1322 ":quic_tools", | 1335 ":quic_tools", |
1323 ":net", | 1336 ":net", |
1324 "//base", | 1337 "//base", |
1325 "//third_party/openssl", | 1338 "//third_party/openssl", |
1326 ] | 1339 ] |
1327 } | 1340 } |
1328 | 1341 |
1329 } # !is_android | 1342 } # !is_android |
OLD | NEW |