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

Side by Side Diff: net/BUILD.gn

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 (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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 "server/http_connection.cc", 555 "server/http_connection.cc",
556 "server/http_connection.h", 556 "server/http_connection.h",
557 "server/http_server.cc", 557 "server/http_server.cc",
558 "server/http_server.h", 558 "server/http_server.h",
559 "server/http_server_request_info.cc", 559 "server/http_server_request_info.cc",
560 "server/http_server_request_info.h", 560 "server/http_server_request_info.h",
561 "server/http_server_response_info.cc", 561 "server/http_server_response_info.cc",
562 "server/http_server_response_info.h", 562 "server/http_server_response_info.h",
563 "server/web_socket.cc", 563 "server/web_socket.cc",
564 "server/web_socket.h", 564 "server/web_socket.h",
565 "server/web_socket_encoder.cc",
566 "server/web_socket_encoder.h",
565 ] 567 ]
566 configs += [ 568 configs += [
567 "//build/config/compiler:wexit_time_destructors", 569 "//build/config/compiler:wexit_time_destructors",
568 ":net_win_size_truncation", 570 ":net_win_size_truncation",
569 ] 571 ]
570 deps = [ 572 deps = [
571 ":net", 573 ":net",
572 "//base", 574 "//base",
573 ] 575 ]
574 } 576 }
(...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after
1389 "quic/quic_server_bin.cc", 1391 "quic/quic_server_bin.cc",
1390 ] 1392 ]
1391 deps = [ 1393 deps = [
1392 ":quic_tools", 1394 ":quic_tools",
1393 ":net", 1395 ":net",
1394 "//base", 1396 "//base",
1395 "//third_party/boringssl", 1397 "//third_party/boringssl",
1396 ] 1398 ]
1397 } 1399 }
1398 } # !is_android && !is_win && !is_mac 1400 } # !is_android && !is_win && !is_mac
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698