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

Side by Side Diff: net/net_common.gypi

Issue 1550843002: Convert enable_bidirectional_stream into build flag local to net. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
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', { 98 ['enable_bidirectional_stream==1', {
99 'defines': [
100 'ENABLE_BIDIRECTIONAL_STREAM',
101 ],
102 'sources': ['<@(net_bidirectional_stream_sources)'] 99 'sources': ['<@(net_bidirectional_stream_sources)']
103 }], 100 }],
104 ['enable_built_in_dns==1', { 101 ['enable_built_in_dns==1', {
105 'defines': [ 102 'defines': [
106 'ENABLE_BUILT_IN_DNS', 103 'ENABLE_BUILT_IN_DNS',
107 ] 104 ]
108 }, { # else 105 }, { # else
109 'sources!': [ 106 'sources!': [
110 'dns/address_sorter_posix.cc', 107 'dns/address_sorter_posix.cc',
111 'dns/address_sorter_posix.h', 108 'dns/address_sorter_posix.h',
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 ['include', '^cert/test_root_certs_nss\\.cc$'], 409 ['include', '^cert/test_root_certs_nss\\.cc$'],
413 ['include', '^cert/x509_util_nss_certs\\.cc$'], 410 ['include', '^cert/x509_util_nss_certs\\.cc$'],
414 ['include', '^cert_net/nss_ocsp\\.cc$'], 411 ['include', '^cert_net/nss_ocsp\\.cc$'],
415 ['include', '^cert_net/nss_ocsp\\.h$'], 412 ['include', '^cert_net/nss_ocsp\\.h$'],
416 ['include', '^proxy/proxy_resolver_mac\\.cc$'], 413 ['include', '^proxy/proxy_resolver_mac\\.cc$'],
417 ['include', '^proxy/proxy_server_mac\\.cc$'], 414 ['include', '^proxy/proxy_server_mac\\.cc$'],
418 ], 415 ],
419 }], 416 }],
420 ], 417 ],
421 } 418 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698