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 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
535 source = "base/net_resources.grd" | 535 source = "base/net_resources.grd" |
536 use_qualified_include = true | 536 use_qualified_include = true |
537 outputs = [ | 537 outputs = [ |
538 "grit/net_resources.h", | 538 "grit/net_resources.h", |
539 "net_resources.pak", | 539 "net_resources.pak", |
540 "net_resources.rc", | 540 "net_resources.rc", |
541 ] | 541 ] |
542 } | 542 } |
543 | 543 |
544 if (false) { | 544 if (false) { |
545 | 545 static_library("extras") { |
546 static_library("extras") { | 546 sources = gypi_values.net_extras_sources |
547 sources = gypi_values.net_extras_sources | 547 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
548 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 548 deps = [ |
549 deps = [ | 549 ":net", |
550 ":net", | 550 "//sql:sql", |
551 "//sql:sql", | 551 ] |
552 ] | 552 } |
553 } | 553 } # if (false) |
554 | |
555 } # if (false) | |
556 | 554 |
557 static_library("http_server") { | 555 static_library("http_server") { |
558 sources = [ | 556 sources = [ |
559 "server/http_connection.cc", | 557 "server/http_connection.cc", |
560 "server/http_connection.h", | 558 "server/http_connection.h", |
561 "server/http_server.cc", | 559 "server/http_server.cc", |
562 "server/http_server.h", | 560 "server/http_server.h", |
563 "server/http_server_request_info.cc", | 561 "server/http_server_request_info.cc", |
564 "server/http_server_request_info.h", | 562 "server/http_server_request_info.h", |
565 "server/http_server_response_info.cc", | 563 "server/http_server_response_info.cc", |
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1121 ":net", | 1119 ":net", |
1122 "//base", | 1120 "//base", |
1123 "//base/third_party/dynamic_annotations", | 1121 "//base/third_party/dynamic_annotations", |
1124 "//url", | 1122 "//url", |
1125 ] | 1123 ] |
1126 } | 1124 } |
1127 | 1125 |
1128 test("net_unittests") { | 1126 test("net_unittests") { |
1129 sources = gypi_values.net_test_sources | 1127 sources = gypi_values.net_test_sources |
1130 | 1128 |
1131 sources -= [ | 1129 sources -= [ "extras/sqlite/sqlite_channel_id_store_unittest.cc" ] |
1132 "extras/sqlite/sqlite_channel_id_store_unittest.cc", | |
1133 ] | |
1134 | 1130 |
1135 configs += [ ":net_win_size_truncation" ] | 1131 configs += [ ":net_win_size_truncation" ] |
1136 defines = [] | 1132 defines = [] |
1137 | 1133 |
1138 deps = [ | 1134 deps = [ |
1139 ":http_server", | 1135 ":http_server", |
1140 ":net", | 1136 ":net", |
1141 ":quic_tools", | 1137 ":quic_tools", |
1142 ":test_support", | 1138 ":test_support", |
1143 "//base", | 1139 "//base", |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1396 "quic/quic_server_bin.cc", | 1392 "quic/quic_server_bin.cc", |
1397 ] | 1393 ] |
1398 deps = [ | 1394 deps = [ |
1399 ":quic_tools", | 1395 ":quic_tools", |
1400 ":net", | 1396 ":net", |
1401 "//base", | 1397 "//base", |
1402 "//third_party/boringssl", | 1398 "//third_party/boringssl", |
1403 ] | 1399 ] |
1404 } | 1400 } |
1405 } # !is_android && !is_win && !is_mac | 1401 } # !is_android && !is_win && !is_mac |
OLD | NEW |