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

Side by Side Diff: net/net_common.gypi

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 4 years, 12 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 # This target is included in both 'net' and 'net_small'. 6 # This target is included in both 'net' and 'net_small'.
7 'type': '<(component)', 7 'type': '<(component)',
8 'variables': { 'enable_wexit_time_destructors': 1, }, 8 'variables': { 'enable_wexit_time_destructors': 1, },
9 'dependencies': [ 9 'dependencies': [
10 '../base/base.gyp:base', 10 '../base/base.gyp:base',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 }], 88 }],
89 ['disable_file_support!=1', { 89 ['disable_file_support!=1', {
90 # TODO(mmenke): Should probably get rid of the dependency on 90 # TODO(mmenke): Should probably get rid of the dependency on
91 # net_resources in this case (It's used in net_util, to format 91 # net_resources in this case (It's used in net_util, to format
92 # directory listings. Also used outside of net/). 92 # directory listings. Also used outside of net/).
93 'sources': ['<@(net_file_support_sources)'] 93 'sources': ['<@(net_file_support_sources)']
94 }], 94 }],
95 ['disable_ftp_support!=1', { 95 ['disable_ftp_support!=1', {
96 'sources': ['<@(net_ftp_support_sources)'] 96 'sources': ['<@(net_ftp_support_sources)']
97 }], 97 }],
98 ['enable_bidirectional_stream==1', {
99 'defines': [
100 'ENABLE_BIDIRECTIONAL_STREAM',
101 ],
102 'sources': ['<@(net_bidirectional_stream_sources)']
103 }],
98 ['enable_built_in_dns==1', { 104 ['enable_built_in_dns==1', {
99 'defines': [ 105 'defines': [
100 'ENABLE_BUILT_IN_DNS', 106 'ENABLE_BUILT_IN_DNS',
101 ] 107 ]
102 }, { # else 108 }, { # else
103 'sources!': [ 109 'sources!': [
104 'dns/address_sorter_posix.cc', 110 'dns/address_sorter_posix.cc',
105 'dns/address_sorter_posix.h', 111 'dns/address_sorter_posix.h',
106 'dns/dns_client.cc', 112 'dns/dns_client.cc',
107 ], 113 ],
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 ['include', '^cert/test_root_certs_nss\\.cc$'], 408 ['include', '^cert/test_root_certs_nss\\.cc$'],
403 ['include', '^cert/x509_util_nss_certs\\.cc$'], 409 ['include', '^cert/x509_util_nss_certs\\.cc$'],
404 ['include', '^cert_net/nss_ocsp\\.cc$'], 410 ['include', '^cert_net/nss_ocsp\\.cc$'],
405 ['include', '^cert_net/nss_ocsp\\.h$'], 411 ['include', '^cert_net/nss_ocsp\\.h$'],
406 ['include', '^proxy/proxy_resolver_mac\\.cc$'], 412 ['include', '^proxy/proxy_resolver_mac\\.cc$'],
407 ['include', '^proxy/proxy_server_mac\\.cc$'], 413 ['include', '^proxy/proxy_server_mac\\.cc$'],
408 ], 414 ],
409 }], 415 }],
410 ], 416 ],
411 } 417 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698