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

Side by Side Diff: net/net.gyp

Issue 23872029: Implement WebSocketExtensionParser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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 | « no previous file | net/websockets/README » ('j') | net/websockets/websocket_extension_parser.cc » ('J')
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 'use_tracing_cache_backend%': 0, 10 'use_tracing_cache_backend%': 0,
(...skipping 1085 matching lines...) Expand 10 before | Expand all | Expand 10 after
1096 'url_request/view_cache_helper.cc', 1096 'url_request/view_cache_helper.cc',
1097 'url_request/view_cache_helper.h', 1097 'url_request/view_cache_helper.h',
1098 'websockets/websocket_basic_stream.cc', 1098 'websockets/websocket_basic_stream.cc',
1099 'websockets/websocket_basic_stream.h', 1099 'websockets/websocket_basic_stream.h',
1100 'websockets/websocket_channel.cc', 1100 'websockets/websocket_channel.cc',
1101 'websockets/websocket_channel.h', 1101 'websockets/websocket_channel.h',
1102 'websockets/websocket_deflater.h', 1102 'websockets/websocket_deflater.h',
1103 'websockets/websocket_deflater.cc', 1103 'websockets/websocket_deflater.cc',
1104 'websockets/websocket_errors.cc', 1104 'websockets/websocket_errors.cc',
1105 'websockets/websocket_errors.h', 1105 'websockets/websocket_errors.h',
1106 'websockets/websocket_extension.cc',
1107 'websockets/websocket_extension.h',
1108 'websockets/websocket_extension_parser.cc',
1109 'websockets/websocket_extension_parser.h',
1106 'websockets/websocket_frame.cc', 1110 'websockets/websocket_frame.cc',
1107 'websockets/websocket_frame.h', 1111 'websockets/websocket_frame.h',
1108 'websockets/websocket_frame_parser.cc', 1112 'websockets/websocket_frame_parser.cc',
1109 'websockets/websocket_frame_parser.h', 1113 'websockets/websocket_frame_parser.h',
1110 'websockets/websocket_handshake_constants.cc', 1114 'websockets/websocket_handshake_constants.cc',
1111 'websockets/websocket_handshake_constants.h', 1115 'websockets/websocket_handshake_constants.h',
1112 'websockets/websocket_handshake_handler.cc', 1116 'websockets/websocket_handshake_handler.cc',
1113 'websockets/websocket_handshake_handler.h', 1117 'websockets/websocket_handshake_handler.h',
1114 'websockets/websocket_job.cc', 1118 'websockets/websocket_job.cc',
1115 'websockets/websocket_job.h', 1119 'websockets/websocket_job.h',
(...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after
1868 'url_request/url_request_throttler_simulation_unittest.cc', 1872 'url_request/url_request_throttler_simulation_unittest.cc',
1869 'url_request/url_request_throttler_test_support.cc', 1873 'url_request/url_request_throttler_test_support.cc',
1870 'url_request/url_request_throttler_test_support.h', 1874 'url_request/url_request_throttler_test_support.h',
1871 'url_request/url_request_throttler_unittest.cc', 1875 'url_request/url_request_throttler_unittest.cc',
1872 'url_request/url_request_unittest.cc', 1876 'url_request/url_request_unittest.cc',
1873 'url_request/view_cache_helper_unittest.cc', 1877 'url_request/view_cache_helper_unittest.cc',
1874 'websockets/websocket_basic_stream_test.cc', 1878 'websockets/websocket_basic_stream_test.cc',
1875 'websockets/websocket_channel_test.cc', 1879 'websockets/websocket_channel_test.cc',
1876 'websockets/websocket_deflater_test.cc', 1880 'websockets/websocket_deflater_test.cc',
1877 'websockets/websocket_errors_test.cc', 1881 'websockets/websocket_errors_test.cc',
1882 'websockets/websocket_extension_parser_test.cc',
1878 'websockets/websocket_frame_parser_test.cc', 1883 'websockets/websocket_frame_parser_test.cc',
1879 'websockets/websocket_frame_test.cc', 1884 'websockets/websocket_frame_test.cc',
1880 'websockets/websocket_handshake_handler_test.cc', 1885 'websockets/websocket_handshake_handler_test.cc',
1881 'websockets/websocket_handshake_handler_spdy_test.cc', 1886 'websockets/websocket_handshake_handler_spdy_test.cc',
1882 'websockets/websocket_job_test.cc', 1887 'websockets/websocket_job_test.cc',
1883 'websockets/websocket_net_log_params_test.cc', 1888 'websockets/websocket_net_log_params_test.cc',
1884 'websockets/websocket_throttle_test.cc', 1889 'websockets/websocket_throttle_test.cc',
1885 ], 1890 ],
1886 'conditions': [ 1891 'conditions': [
1887 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { 1892 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
(...skipping 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after
2959 'net_unittests.isolate', 2964 'net_unittests.isolate',
2960 ], 2965 ],
2961 'sources': [ 2966 'sources': [
2962 'net_unittests.isolate', 2967 'net_unittests.isolate',
2963 ], 2968 ],
2964 }, 2969 },
2965 ], 2970 ],
2966 }], 2971 }],
2967 ], 2972 ],
2968 } 2973 }
OLDNEW
« no previous file with comments | « no previous file | net/websockets/README » ('j') | net/websockets/websocket_extension_parser.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698