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

Side by Side Diff: net/BUILD.gn

Issue 683033003: Rename websocket_handshake_handler.* to websocket_handshake_challenge.* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update copyright messages for new files. Created 6 years, 1 month 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/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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 import("//build/config/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//url/config.gni") 8 import("//url/config.gni")
9 9
10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. 10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni.
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 "websockets/websocket_extension.cc", 399 "websockets/websocket_extension.cc",
400 "websockets/websocket_extension.h", 400 "websockets/websocket_extension.h",
401 "websockets/websocket_extension_parser.cc", 401 "websockets/websocket_extension_parser.cc",
402 "websockets/websocket_extension_parser.h", 402 "websockets/websocket_extension_parser.h",
403 "websockets/websocket_frame.cc", 403 "websockets/websocket_frame.cc",
404 "websockets/websocket_frame.h", 404 "websockets/websocket_frame.h",
405 "websockets/websocket_frame_parser.cc", 405 "websockets/websocket_frame_parser.cc",
406 "websockets/websocket_frame_parser.h", 406 "websockets/websocket_frame_parser.h",
407 "websockets/websocket_handshake_constants.cc", 407 "websockets/websocket_handshake_constants.cc",
408 "websockets/websocket_handshake_constants.h", 408 "websockets/websocket_handshake_constants.h",
409 "websockets/websocket_handshake_handler.cc", 409 "websockets/websocket_handshake_challenge.cc",
410 "websockets/websocket_handshake_handler.h", 410 "websockets/websocket_handshake_challenge.h",
411 "websockets/websocket_handshake_request_info.cc", 411 "websockets/websocket_handshake_request_info.cc",
412 "websockets/websocket_handshake_request_info.h", 412 "websockets/websocket_handshake_request_info.h",
413 "websockets/websocket_handshake_response_info.cc", 413 "websockets/websocket_handshake_response_info.cc",
414 "websockets/websocket_handshake_response_info.h", 414 "websockets/websocket_handshake_response_info.h",
415 "websockets/websocket_handshake_stream_base.h", 415 "websockets/websocket_handshake_stream_base.h",
416 "websockets/websocket_handshake_stream_create_helper.cc", 416 "websockets/websocket_handshake_stream_create_helper.cc",
417 "websockets/websocket_handshake_stream_create_helper.h", 417 "websockets/websocket_handshake_stream_create_helper.h",
418 "websockets/websocket_inflater.cc", 418 "websockets/websocket_inflater.cc",
419 "websockets/websocket_inflater.h", 419 "websockets/websocket_inflater.h",
420 "websockets/websocket_mux.h", 420 "websockets/websocket_mux.h",
(...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after
1217 sources -= [ 1217 sources -= [
1218 "websockets/websocket_basic_stream_test.cc", 1218 "websockets/websocket_basic_stream_test.cc",
1219 "websockets/websocket_channel_test.cc", 1219 "websockets/websocket_channel_test.cc",
1220 "websockets/websocket_deflate_predictor_impl_test.cc", 1220 "websockets/websocket_deflate_predictor_impl_test.cc",
1221 "websockets/websocket_deflate_stream_test.cc", 1221 "websockets/websocket_deflate_stream_test.cc",
1222 "websockets/websocket_deflater_test.cc", 1222 "websockets/websocket_deflater_test.cc",
1223 "websockets/websocket_errors_test.cc", 1223 "websockets/websocket_errors_test.cc",
1224 "websockets/websocket_extension_parser_test.cc", 1224 "websockets/websocket_extension_parser_test.cc",
1225 "websockets/websocket_frame_parser_test.cc", 1225 "websockets/websocket_frame_parser_test.cc",
1226 "websockets/websocket_frame_test.cc", 1226 "websockets/websocket_frame_test.cc",
1227 "websockets/websocket_handshake_handler_spdy_test.cc", 1227 "websockets/websocket_handshake_challenge_test.cc",
1228 "websockets/websocket_handshake_handler_test.cc",
1229 "websockets/websocket_handshake_stream_create_helper_test.cc", 1228 "websockets/websocket_handshake_stream_create_helper_test.cc",
1230 "websockets/websocket_inflater_test.cc", 1229 "websockets/websocket_inflater_test.cc",
1231 "websockets/websocket_stream_test.cc", 1230 "websockets/websocket_stream_test.cc",
1232 "websockets/websocket_test_util.cc", 1231 "websockets/websocket_test_util.cc",
1233 "websockets/websocket_test_util.h", 1232 "websockets/websocket_test_util.h",
1234 ] 1233 ]
1235 } 1234 }
1236 1235
1237 if (disable_file_support) { 1236 if (disable_file_support) {
1238 sources -= [ 1237 sources -= [
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
1362 sources = [ "quic/quic_server_bin.cc" ] 1361 sources = [ "quic/quic_server_bin.cc" ]
1363 deps = [ 1362 deps = [
1364 ":quic_tools", 1363 ":quic_tools",
1365 ":net", 1364 ":net",
1366 "//base", 1365 "//base",
1367 "//third_party/boringssl", 1366 "//third_party/boringssl",
1368 ] 1367 ]
1369 } 1368 }
1370 1369
1371 } # !is_android && !is_win && !is_mac 1370 } # !is_android && !is_win && !is_mac
OLDNEW
« no previous file with comments | « no previous file | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698