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

Side by Side Diff: net/BUILD.gn

Issue 1793273004: Revert of Implement QUIC-based net::BidirectionalStream (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@basecl
Patch Set: Created 4 years, 9 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 | « no previous file | net/http/http_stream_factory.h » ('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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 1548 matching lines...) Expand 10 before | Expand all | Expand 10 after
1559 "ftp/ftp_directory_listing_parser_unittest.h", 1559 "ftp/ftp_directory_listing_parser_unittest.h",
1560 "ftp/ftp_directory_listing_parser_vms_unittest.cc", 1560 "ftp/ftp_directory_listing_parser_vms_unittest.cc",
1561 "ftp/ftp_directory_listing_parser_windows_unittest.cc", 1561 "ftp/ftp_directory_listing_parser_windows_unittest.cc",
1562 "ftp/ftp_network_transaction_unittest.cc", 1562 "ftp/ftp_network_transaction_unittest.cc",
1563 "ftp/ftp_util_unittest.cc", 1563 "ftp/ftp_util_unittest.cc",
1564 "url_request/url_request_ftp_job_unittest.cc", 1564 "url_request/url_request_ftp_job_unittest.cc",
1565 ] 1565 ]
1566 } 1566 }
1567 1567
1568 if (!enable_bidirectional_stream) { 1568 if (!enable_bidirectional_stream) {
1569 sources -= [ 1569 sources -= [ "http/bidirectional_stream_unittest.cc" ]
1570 "http/bidirectional_stream_unittest.cc",
1571 "quic/bidirectional_stream_quic_impl_unittest.cc",
1572 ]
1573 } 1570 }
1574 if (!enable_built_in_dns) { 1571 if (!enable_built_in_dns) {
1575 sources -= [ 1572 sources -= [
1576 "dns/address_sorter_posix_unittest.cc", 1573 "dns/address_sorter_posix_unittest.cc",
1577 "dns/address_sorter_unittest.cc", 1574 "dns/address_sorter_unittest.cc",
1578 ] 1575 ]
1579 } 1576 }
1580 1577
1581 if (use_v8_in_net) { 1578 if (use_v8_in_net) {
1582 deps += [ ":net_with_v8" ] 1579 deps += [ ":net_with_v8" ]
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
1926 "//base", 1923 "//base",
1927 "//net", 1924 "//net",
1928 ] 1925 ]
1929 } 1926 }
1930 1927
1931 buildflag_header("features") { 1928 buildflag_header("features") {
1932 header = "net_features.h" 1929 header = "net_features.h"
1933 1930
1934 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] 1931 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ]
1935 } 1932 }
OLDNEW
« no previous file with comments | « no previous file | net/http/http_stream_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698