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

Side by Side Diff: net/BUILD.gn

Issue 533743004: Fix Chrome linker errors in GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « extensions/common/BUILD.gn ('k') | remoting/base/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
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") { 567 static_library("extras") {
568 sources = gypi_values.net_extras_sources 568 sources = gypi_values.net_extras_sources
569 configs += [ "//build/config/compiler:wexit_time_destructors" ] 569 configs += [ "//build/config/compiler:wexit_time_destructors" ]
570 deps = [ 570 deps = [
571 ":net", 571 ":net",
572 "//sql:sql", 572 "//sql:sql",
573 ] 573 ]
574 } 574 }
575 575
576 static_library("http_server") { 576 static_library("http_server") {
577 sources = [ 577 sources = [
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after
1097 ] 1097 ]
1098 } 1098 }
1099 1099
1100 test("net_unittests") { 1100 test("net_unittests") {
1101 sources = gypi_values.net_test_sources 1101 sources = gypi_values.net_test_sources
1102 1102
1103 configs += [ ":net_win_size_truncation" ] 1103 configs += [ ":net_win_size_truncation" ]
1104 defines = [] 1104 defines = []
1105 1105
1106 deps = [ 1106 deps = [
1107 ":extras",
1107 ":http_server", 1108 ":http_server",
1108 ":net", 1109 ":net",
1109 ":net_extras",
1110 ":quic_tools", 1110 ":quic_tools",
1111 ":test_support", 1111 ":test_support",
1112 "//base", 1112 "//base",
1113 "//base:i18n", 1113 "//base:i18n",
1114 "//base:prefs_test_support", 1114 "//base:prefs_test_support",
1115 "//base/allocator", 1115 "//base/allocator",
1116 "//base/third_party/dynamic_annotations", 1116 "//base/third_party/dynamic_annotations",
1117 "//crypto", 1117 "//crypto",
1118 "//crypto:platform", 1118 "//crypto:platform",
1119 "//crypto:test_support", 1119 "//crypto:test_support",
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
1367 sources = [ "quic/quic_server_bin.cc" ] 1367 sources = [ "quic/quic_server_bin.cc" ]
1368 deps = [ 1368 deps = [
1369 ":quic_tools", 1369 ":quic_tools",
1370 ":net", 1370 ":net",
1371 "//base", 1371 "//base",
1372 "//third_party/boringssl", 1372 "//third_party/boringssl",
1373 ] 1373 ]
1374 } 1374 }
1375 1375
1376 } # !is_android 1376 } # !is_android
OLDNEW
« no previous file with comments | « extensions/common/BUILD.gn ('k') | remoting/base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698