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

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: 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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 "server/http_connection.cc", 559 "server/http_connection.cc",
560 "server/http_connection.h", 560 "server/http_connection.h",
561 "server/http_server.cc", 561 "server/http_server.cc",
562 "server/http_server.h", 562 "server/http_server.h",
563 "server/http_server_request_info.cc", 563 "server/http_server_request_info.cc",
564 "server/http_server_request_info.h", 564 "server/http_server_request_info.h",
565 "server/http_server_response_info.cc", 565 "server/http_server_response_info.cc",
566 "server/http_server_response_info.h", 566 "server/http_server_response_info.h",
567 "server/web_socket.cc", 567 "server/web_socket.cc",
568 "server/web_socket.h", 568 "server/web_socket.h",
569 "server/web_socket_encoder.cc",
570 "server/web_socket_encoder.h",
569 ] 571 ]
570 configs += [ 572 configs += [
571 "//build/config/compiler:wexit_time_destructors", 573 "//build/config/compiler:wexit_time_destructors",
572 ":net_win_size_truncation" 574 ":net_win_size_truncation"
573 ] 575 ]
574 deps = [ 576 deps = [
575 ":net", 577 ":net",
576 "//base", 578 "//base",
577 ] 579 ]
578 } 580 }
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
1372 sources = [ "quic/quic_server_bin.cc" ] 1374 sources = [ "quic/quic_server_bin.cc" ]
1373 deps = [ 1375 deps = [
1374 ":quic_tools", 1376 ":quic_tools",
1375 ":net", 1377 ":net",
1376 "//base", 1378 "//base",
1377 "//third_party/boringssl", 1379 "//third_party/boringssl",
1378 ] 1380 ]
1379 } 1381 }
1380 1382
1381 } # !is_android && !is_win && !is_mac 1383 } # !is_android && !is_win && !is_mac
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698