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

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: Fixed comments 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
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 1057 matching lines...) Expand 10 before | Expand all | Expand 10 after
1068 'server/http_connection.cc', 1068 'server/http_connection.cc',
1069 'server/http_connection.h', 1069 'server/http_connection.h',
1070 'server/http_server.cc', 1070 'server/http_server.cc',
1071 'server/http_server.h', 1071 'server/http_server.h',
1072 'server/http_server_request_info.cc', 1072 'server/http_server_request_info.cc',
1073 'server/http_server_request_info.h', 1073 'server/http_server_request_info.h',
1074 'server/http_server_response_info.cc', 1074 'server/http_server_response_info.cc',
1075 'server/http_server_response_info.h', 1075 'server/http_server_response_info.h',
1076 'server/web_socket.cc', 1076 'server/web_socket.cc',
1077 'server/web_socket.h', 1077 'server/web_socket.h',
1078 'server/web_socket_encoder.cc',
1079 'server/web_socket_encoder.h',
1078 ], 1080 ],
1079 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1081 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1080 'msvs_disabled_warnings': [4267, ], 1082 'msvs_disabled_warnings': [4267, ],
1081 }, 1083 },
1082 { 1084 {
1083 'target_name': 'balsa', 1085 'target_name': 'balsa',
1084 'type': 'static_library', 1086 'type': 'static_library',
1085 'dependencies': [ 1087 'dependencies': [
1086 '../base/base.gyp:base', 1088 '../base/base.gyp:base',
1087 'net', 1089 'net',
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
1738 '../build/isolate.gypi', 1740 '../build/isolate.gypi',
1739 ], 1741 ],
1740 'sources': [ 1742 'sources': [
1741 'net_unittests.isolate', 1743 'net_unittests.isolate',
1742 ], 1744 ],
1743 }, 1745 },
1744 ], 1746 ],
1745 }], 1747 }],
1746 ], 1748 ],
1747 } 1749 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | net/net.gypi » ('j') | net/server/web_socket_encoder.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698