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

Side by Side Diff: net/net.gyp

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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'linux_link_kerberos%': 0, 8 'linux_link_kerberos%': 0,
9 # Enables BidirectionalStream; Used in cronet, disabled by default. 9 # Enables BidirectionalStream; Used in cronet, disabled by default.
10 'enable_bidirectional_stream%': 0, 10 'enable_bidirectional_stream%': 0,
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 ['exclude', '^ftp/'], 285 ['exclude', '^ftp/'],
286 ], 286 ],
287 'sources!': [ 287 'sources!': [
288 'url_request/url_request_ftp_job_unittest.cc', 288 'url_request/url_request_ftp_job_unittest.cc',
289 ], 289 ],
290 }, 290 },
291 ], 291 ],
292 [ 'enable_bidirectional_stream!=1', { 292 [ 'enable_bidirectional_stream!=1', {
293 'sources!': [ 293 'sources!': [
294 'http/bidirectional_stream_unittest.cc', 294 'http/bidirectional_stream_unittest.cc',
295 'quic/bidirectional_stream_quic_job_unittest.cc',
295 ], 296 ],
296 }, 297 },
297 ], 298 ],
298 [ 'enable_built_in_dns!=1', { 299 [ 'enable_built_in_dns!=1', {
299 'sources!': [ 300 'sources!': [
300 'dns/address_sorter_posix_unittest.cc', 301 'dns/address_sorter_posix_unittest.cc',
301 'dns/address_sorter_unittest.cc', 302 'dns/address_sorter_unittest.cc',
302 ], 303 ],
303 }, 304 },
304 ], 305 ],
(...skipping 1411 matching lines...) Expand 10 before | Expand all | Expand 10 after
1716 '../build/isolate.gypi', 1717 '../build/isolate.gypi',
1717 ], 1718 ],
1718 'sources': [ 1719 'sources': [
1719 'net_unittests.isolate', 1720 'net_unittests.isolate',
1720 ], 1721 ],
1721 }, 1722 },
1722 ], 1723 ],
1723 }], 1724 }],
1724 ], 1725 ],
1725 } 1726 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698