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

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: 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_impl.h » ('j') | net/http/http_stream_factory_impl.h » ('J')
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 1547 matching lines...) Expand 10 before | Expand all | Expand 10 after
1558 "ftp/ftp_directory_listing_parser_unittest.h", 1558 "ftp/ftp_directory_listing_parser_unittest.h",
1559 "ftp/ftp_directory_listing_parser_vms_unittest.cc", 1559 "ftp/ftp_directory_listing_parser_vms_unittest.cc",
1560 "ftp/ftp_directory_listing_parser_windows_unittest.cc", 1560 "ftp/ftp_directory_listing_parser_windows_unittest.cc",
1561 "ftp/ftp_network_transaction_unittest.cc", 1561 "ftp/ftp_network_transaction_unittest.cc",
1562 "ftp/ftp_util_unittest.cc", 1562 "ftp/ftp_util_unittest.cc",
1563 "url_request/url_request_ftp_job_unittest.cc", 1563 "url_request/url_request_ftp_job_unittest.cc",
1564 ] 1564 ]
1565 } 1565 }
1566 1566
1567 if (!enable_bidirectional_stream) { 1567 if (!enable_bidirectional_stream) {
1568 sources -= [ "http/bidirectional_stream_unittest.cc" ] 1568 sources -= [
1569 "http/bidirectional_stream_unittest.cc",
1570 "quic/bidirectional_stream_quic_job_unittest.cc",
1571 ]
1569 } 1572 }
1570 if (!enable_built_in_dns) { 1573 if (!enable_built_in_dns) {
1571 sources -= [ 1574 sources -= [
1572 "dns/address_sorter_posix_unittest.cc", 1575 "dns/address_sorter_posix_unittest.cc",
1573 "dns/address_sorter_unittest.cc", 1576 "dns/address_sorter_unittest.cc",
1574 ] 1577 ]
1575 } 1578 }
1576 1579
1577 if (use_v8_in_net) { 1580 if (use_v8_in_net) {
1578 deps += [ ":net_with_v8" ] 1581 deps += [ ":net_with_v8" ]
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
1739 } else { 1742 } else {
1740 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1743 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1741 } 1744 }
1742 } 1745 }
1743 1746
1744 buildflag_header("features") { 1747 buildflag_header("features") {
1745 header = "net_features.h" 1748 header = "net_features.h"
1746 1749
1747 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] 1750 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ]
1748 } 1751 }
OLDNEW
« no previous file with comments | « no previous file | net/http/http_stream_factory_impl.h » ('j') | net/http/http_stream_factory_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698