| 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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |