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

Side by Side Diff: net/net_common.gypi

Issue 2082603002: Introduce an 'ENABLE_WEBSOCKETS' define in //net. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@hsts
Patch Set: URLRequestJobManager Created 4 years, 6 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 | « net/net.gyp ('k') | net/url_request/url_request_http_job_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 by 'net' target. 6 # This target is included by 'net' target.
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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 ], 205 ],
206 # client_cert_store_nss.c requires NSS_CmpCertChainWCANames from NSS's 206 # client_cert_store_nss.c requires NSS_CmpCertChainWCANames from NSS's
207 # libssl, but our bundled copy is not built in OpenSSL ports. Pull that 207 # libssl, but our bundled copy is not built in OpenSSL ports. Pull that
208 # file in directly. 208 # file in directly.
209 [ 'use_nss_certs == 1', { 209 [ 'use_nss_certs == 1', {
210 'sources': [ 210 'sources': [
211 'third_party/nss/ssl/cmpcert.c', 211 'third_party/nss/ssl/cmpcert.c',
212 ], 212 ],
213 }], 213 }],
214 [ 'enable_websockets == 1', { 214 [ 'enable_websockets == 1', {
215 'defines': ['ENABLE_WEBSOCKETS'],
215 'sources': ['<@(net_websockets_sources)'] 216 'sources': ['<@(net_websockets_sources)']
216 }], 217 }],
217 [ 'enable_mdns != 1', { 218 [ 'enable_mdns != 1', {
218 'sources!' : [ 219 'sources!' : [
219 'dns/mdns_cache.cc', 220 'dns/mdns_cache.cc',
220 'dns/mdns_cache.h', 221 'dns/mdns_cache.h',
221 'dns/mdns_client.cc', 222 'dns/mdns_client.cc',
222 'dns/mdns_client.h', 223 'dns/mdns_client.h',
223 'dns/mdns_client_impl.cc', 224 'dns/mdns_client_impl.cc',
224 'dns/mdns_client_impl.h', 225 'dns/mdns_client_impl.h',
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 ['include', '^proxy/proxy_server_mac\\.cc$'], 357 ['include', '^proxy/proxy_server_mac\\.cc$'],
357 ], 358 ],
358 }], 359 }],
359 ['OS == "ios"', { 360 ['OS == "ios"', {
360 'sources/': [ 361 'sources/': [
361 ['include', '^cert/test_root_certs_mac\\.cc$'], 362 ['include', '^cert/test_root_certs_mac\\.cc$'],
362 ], 363 ],
363 }], 364 }],
364 ], 365 ],
365 } 366 }
OLDNEW
« no previous file with comments | « net/net.gyp ('k') | net/url_request/url_request_http_job_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698