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

Side by Side Diff: net/BUILD.gn

Issue 1744693002: Implement QUIC-based net::BidirectionalStream (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@basecl
Patch Set: Address comments and fixed tests 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
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 -= [ "http/bidirectional_stream_unittest.cc" ] 1569 sources -= [
1570 "http/bidirectional_stream_unittest.cc",
1571 "quic/bidirectional_stream_quic_impl_unittest.cc",
1572 ]
1570 } 1573 }
1571 if (!enable_built_in_dns) { 1574 if (!enable_built_in_dns) {
1572 sources -= [ 1575 sources -= [
1573 "dns/address_sorter_posix_unittest.cc", 1576 "dns/address_sorter_posix_unittest.cc",
1574 "dns/address_sorter_unittest.cc", 1577 "dns/address_sorter_unittest.cc",
1575 ] 1578 ]
1576 } 1579 }
1577 1580
1578 if (use_v8_in_net) { 1581 if (use_v8_in_net) {
1579 deps += [ ":net_with_v8" ] 1582 deps += [ ":net_with_v8" ]
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
1922 "//base", 1925 "//base",
1923 "//net", 1926 "//net",
1924 ] 1927 ]
1925 } 1928 }
1926 1929
1927 buildflag_header("features") { 1930 buildflag_header("features") {
1928 header = "net_features.h" 1931 header = "net_features.h"
1929 1932
1930 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] 1933 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ]
1931 } 1934 }
OLDNEW
« no previous file with comments | « no previous file | net/http/http_stream_factory.h » ('j') | net/quic/bidirectional_stream_quic_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698