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

Side by Side Diff: net/net.gyp

Issue 1326503003: Added a net::BidirectionalStream to expose a bidirectional streaming interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Misha's comments Created 5 years 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 'conditions': [ 9 'conditions': [
10 ['chromeos==1 or embedded==1 or OS=="ios"', { 10 ['chromeos==1 or embedded==1 or OS=="ios"', {
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 }], 276 }],
277 [ 'disable_ftp_support==1', { 277 [ 'disable_ftp_support==1', {
278 'sources/': [ 278 'sources/': [
279 ['exclude', '^ftp/'], 279 ['exclude', '^ftp/'],
280 ], 280 ],
281 'sources!': [ 281 'sources!': [
282 'url_request/url_request_ftp_job_unittest.cc', 282 'url_request/url_request_ftp_job_unittest.cc',
283 ], 283 ],
284 }, 284 },
285 ], 285 ],
286 [ 'enable_bidirectional_stream!=1', {
287 'sources!': [
288 'http/bidirectional_stream_unittest.cc',
289 ],
290 },
291 ],
286 [ 'enable_built_in_dns!=1', { 292 [ 'enable_built_in_dns!=1', {
287 'sources!': [ 293 'sources!': [
288 'dns/address_sorter_posix_unittest.cc', 294 'dns/address_sorter_posix_unittest.cc',
289 'dns/address_sorter_unittest.cc', 295 'dns/address_sorter_unittest.cc',
290 ], 296 ],
291 }, 297 },
292 ], 298 ],
293 [ 'use_v8_in_net==1', { 299 [ 'use_v8_in_net==1', {
294 'dependencies': [ 300 'dependencies': [
295 'net_with_v8', 301 'net_with_v8',
(...skipping 1331 matching lines...) Expand 10 before | Expand all | Expand 10 after
1627 '../build/isolate.gypi', 1633 '../build/isolate.gypi',
1628 ], 1634 ],
1629 'sources': [ 1635 'sources': [
1630 'net_unittests.isolate', 1636 'net_unittests.isolate',
1631 ], 1637 ],
1632 }, 1638 },
1633 ], 1639 ],
1634 }], 1640 }],
1635 ], 1641 ],
1636 } 1642 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698