Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(296)

Side by Side Diff: net/BUILD.gn

Issue 381073002: Move sqlite_channel_id_store from chrome/browser/net to net/extras. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added content/browser/net/quota_policyserver_bound_cert_store... Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_util") {
549 sources = gypi_values.net_util_sources
550 configs += [ "//build/config/compiler:wexit_time_destructors" ]
551 deps = [
552 ":net",
553 "//sql:sql",
554 ]
555 }
556
548 static_library("http_server") { 557 static_library("http_server") {
549 sources = [ 558 sources = [
550 "server/http_connection.cc", 559 "server/http_connection.cc",
551 "server/http_connection.h", 560 "server/http_connection.h",
552 "server/http_server.cc", 561 "server/http_server.cc",
553 "server/http_server.h", 562 "server/http_server.h",
554 "server/http_server_request_info.cc", 563 "server/http_server_request_info.cc",
555 "server/http_server_request_info.h", 564 "server/http_server_request_info.h",
556 "server/http_server_response_info.cc", 565 "server/http_server_response_info.cc",
557 "server/http_server_response_info.h", 566 "server/http_server_response_info.h",
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
1055 1064
1056 test("net_unittests") { 1065 test("net_unittests") {
1057 sources = gypi_values.net_test_sources 1066 sources = gypi_values.net_test_sources
1058 1067
1059 configs += [ ":net_win_size_truncation" ] 1068 configs += [ ":net_win_size_truncation" ]
1060 defines = [] 1069 defines = []
1061 1070
1062 deps = [ 1071 deps = [
1063 ":http_server", 1072 ":http_server",
1064 ":net", 1073 ":net",
1074 ":net_util",
1065 ":quic_tools", 1075 ":quic_tools",
1066 ":test_support", 1076 ":test_support",
1067 "//base", 1077 "//base",
1068 "//base:i18n", 1078 "//base:i18n",
1069 "//base:prefs_test_support", 1079 "//base:prefs_test_support",
1070 "//base/allocator", 1080 "//base/allocator",
1071 "//base/third_party/dynamic_annotations", 1081 "//base/third_party/dynamic_annotations",
1072 "//crypto", 1082 "//crypto",
1073 "//crypto:platform", 1083 "//crypto:platform",
1074 "//net/base/registry_controlled_domains", 1084 "//net/base/registry_controlled_domains",
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
1320 sources = [ "quic/quic_server_bin.cc" ] 1330 sources = [ "quic/quic_server_bin.cc" ]
1321 deps = [ 1331 deps = [
1322 ":quic_tools", 1332 ":quic_tools",
1323 ":net", 1333 ":net",
1324 "//base", 1334 "//base",
1325 "//third_party/openssl", 1335 "//third_party/openssl",
1326 ] 1336 ]
1327 } 1337 }
1328 1338
1329 } # !is_android 1339 } # !is_android
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698