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

Side by Side Diff: net/net.gyp

Issue 769423005: Support WebSocket per-message deflate extension in http server. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix iOS build Created 6 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
« no previous file with comments | « net/BUILD.gn ('k') | net/net.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 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'conditions': [ 10 'conditions': [
(...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after
658 }, 658 },
659 ], 659 ],
660 [ 'use_openssl_certs == 0', { 660 [ 'use_openssl_certs == 0', {
661 'sources!': [ 661 'sources!': [
662 'ssl/openssl_client_key_store_unittest.cc', 662 'ssl/openssl_client_key_store_unittest.cc',
663 ], 663 ],
664 }], 664 }],
665 [ 'enable_websockets != 1', { 665 [ 'enable_websockets != 1', {
666 'sources/': [ 666 'sources/': [
667 ['exclude', '^websockets/'], 667 ['exclude', '^websockets/'],
668 ['exclude', '^server/'],
669 ],
670 'dependencies!': [
671 'http_server',
668 ], 672 ],
669 }], 673 }],
670 ['disable_file_support==1', { 674 ['disable_file_support==1', {
671 'sources!': [ 675 'sources!': [
672 'base/directory_lister_unittest.cc', 676 'base/directory_lister_unittest.cc',
673 'url_request/url_request_file_job_unittest.cc', 677 'url_request/url_request_file_job_unittest.cc',
674 ], 678 ],
675 }], 679 }],
676 [ 'disable_ftp_support==1', { 680 [ 'disable_ftp_support==1', {
677 'sources/': [ 681 'sources/': [
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
1068 'server/http_connection.cc', 1072 'server/http_connection.cc',
1069 'server/http_connection.h', 1073 'server/http_connection.h',
1070 'server/http_server.cc', 1074 'server/http_server.cc',
1071 'server/http_server.h', 1075 'server/http_server.h',
1072 'server/http_server_request_info.cc', 1076 'server/http_server_request_info.cc',
1073 'server/http_server_request_info.h', 1077 'server/http_server_request_info.h',
1074 'server/http_server_response_info.cc', 1078 'server/http_server_response_info.cc',
1075 'server/http_server_response_info.h', 1079 'server/http_server_response_info.h',
1076 'server/web_socket.cc', 1080 'server/web_socket.cc',
1077 'server/web_socket.h', 1081 'server/web_socket.h',
1082 'server/web_socket_encoder.cc',
1083 'server/web_socket_encoder.h',
1078 ], 1084 ],
1079 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1085 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1080 'msvs_disabled_warnings': [4267, ], 1086 'msvs_disabled_warnings': [4267, ],
1081 }, 1087 },
1082 { 1088 {
1083 'target_name': 'balsa', 1089 'target_name': 'balsa',
1084 'type': 'static_library', 1090 'type': 'static_library',
1085 'dependencies': [ 1091 'dependencies': [
1086 '../base/base.gyp:base', 1092 '../base/base.gyp:base',
1087 'net', 1093 'net',
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
1738 '../build/isolate.gypi', 1744 '../build/isolate.gypi',
1739 ], 1745 ],
1740 'sources': [ 1746 'sources': [
1741 'net_unittests.isolate', 1747 'net_unittests.isolate',
1742 ], 1748 ],
1743 }, 1749 },
1744 ], 1750 ],
1745 }], 1751 }],
1746 ], 1752 ],
1747 } 1753 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698