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

Side by Side Diff: net/net.gyp

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/BUILD.gn ('k') | net/net_common.gypi » ('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 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 }], 270 }],
271 [ 'use_openssl_certs == 0', { 271 [ 'use_openssl_certs == 0', {
272 'sources!': [ 272 'sources!': [
273 'ssl/openssl_client_key_store_unittest.cc', 273 'ssl/openssl_client_key_store_unittest.cc',
274 ], 274 ],
275 }], 275 }],
276 [ 'enable_websockets == 1', { 276 [ 'enable_websockets == 1', {
277 'sources': [ 277 'sources': [
278 '<@(net_websockets_test_sources)', 278 '<@(net_websockets_test_sources)',
279 ], 279 ],
280 'defines': [
281 'ENABLE_WEBSOCKETS',
282 ],
280 'dependencies': [ 283 'dependencies': [
281 'http_server', 284 'http_server',
282 ], 285 ],
283 }], 286 }],
284 ['disable_file_support==1', { 287 ['disable_file_support==1', {
285 'sources!': [ 288 'sources!': [
286 'base/directory_lister_unittest.cc', 289 'base/directory_lister_unittest.cc',
287 'base/directory_listing_unittest.cc', 290 'base/directory_listing_unittest.cc',
288 'url_request/url_request_file_dir_job_unittest.cc', 291 'url_request/url_request_file_dir_job_unittest.cc',
289 'url_request/url_request_file_job_unittest.cc', 292 'url_request/url_request_file_job_unittest.cc',
(...skipping 1480 matching lines...) Expand 10 before | Expand all | Expand 10 after
1770 '../build/isolate.gypi', 1773 '../build/isolate.gypi',
1771 ], 1774 ],
1772 'sources': [ 1775 'sources': [
1773 'net_unittests.isolate', 1776 'net_unittests.isolate',
1774 ], 1777 ],
1775 }, 1778 },
1776 ], 1779 ],
1777 }], 1780 }],
1778 ], 1781 ],
1779 } 1782 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | net/net_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698