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

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: Rebased to r286605 Created 6 years, 4 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("//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
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 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
1080 1089
1081 test("net_unittests") { 1090 test("net_unittests") {
1082 sources = gypi_values.net_test_sources 1091 sources = gypi_values.net_test_sources
1083 1092
1084 configs += [ ":net_win_size_truncation" ] 1093 configs += [ ":net_win_size_truncation" ]
1085 defines = [] 1094 defines = []
1086 1095
1087 deps = [ 1096 deps = [
1088 ":http_server", 1097 ":http_server",
1089 ":net", 1098 ":net",
1099 ":net_extras",
1090 ":quic_tools", 1100 ":quic_tools",
1091 ":test_support", 1101 ":test_support",
1092 "//base", 1102 "//base",
1093 "//base:i18n", 1103 "//base:i18n",
1094 "//base:prefs_test_support", 1104 "//base:prefs_test_support",
1095 "//base/allocator", 1105 "//base/allocator",
1096 "//base/third_party/dynamic_annotations", 1106 "//base/third_party/dynamic_annotations",
1097 "//crypto", 1107 "//crypto",
1098 "//crypto:platform", 1108 "//crypto:platform",
1099 "//crypto:test_support", 1109 "//crypto:test_support",
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
1347 sources = [ "quic/quic_server_bin.cc" ] 1357 sources = [ "quic/quic_server_bin.cc" ]
1348 deps = [ 1358 deps = [
1349 ":quic_tools", 1359 ":quic_tools",
1350 ":net", 1360 ":net",
1351 "//base", 1361 "//base",
1352 "//third_party/boringssl", 1362 "//third_party/boringssl",
1353 ] 1363 ]
1354 } 1364 }
1355 1365
1356 } # !is_android 1366 } # !is_android
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698