| OLD | NEW |
| 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 975 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 986 "tools/quic/quic_dispatcher.h", | 986 "tools/quic/quic_dispatcher.h", |
| 987 "tools/quic/quic_dispatcher.cc", | 987 "tools/quic/quic_dispatcher.cc", |
| 988 "tools/quic/quic_epoll_clock.cc", | 988 "tools/quic/quic_epoll_clock.cc", |
| 989 "tools/quic/quic_epoll_clock.h", | 989 "tools/quic/quic_epoll_clock.h", |
| 990 "tools/quic/quic_epoll_connection_helper.cc", | 990 "tools/quic/quic_epoll_connection_helper.cc", |
| 991 "tools/quic/quic_epoll_connection_helper.h", | 991 "tools/quic/quic_epoll_connection_helper.h", |
| 992 "tools/quic/quic_in_memory_cache.cc", | 992 "tools/quic/quic_in_memory_cache.cc", |
| 993 "tools/quic/quic_in_memory_cache.h", | 993 "tools/quic/quic_in_memory_cache.h", |
| 994 "tools/quic/quic_packet_writer_wrapper.cc", | 994 "tools/quic/quic_packet_writer_wrapper.cc", |
| 995 "tools/quic/quic_packet_writer_wrapper.h", | 995 "tools/quic/quic_packet_writer_wrapper.h", |
| 996 "tools/quic/quic_per_connection_packet_writer.cc", |
| 997 "tools/quic/quic_per_connection_packet_writer.h", |
| 996 "tools/quic/quic_server.cc", | 998 "tools/quic/quic_server.cc", |
| 997 "tools/quic/quic_server.h", | 999 "tools/quic/quic_server.h", |
| 998 "tools/quic/quic_server_session.cc", | 1000 "tools/quic/quic_server_session.cc", |
| 999 "tools/quic/quic_server_session.h", | 1001 "tools/quic/quic_server_session.h", |
| 1000 "tools/quic/quic_socket_utils.cc", | 1002 "tools/quic/quic_socket_utils.cc", |
| 1001 "tools/quic/quic_socket_utils.h", | 1003 "tools/quic/quic_socket_utils.h", |
| 1002 "tools/quic/quic_spdy_client_stream.cc", | 1004 "tools/quic/quic_spdy_client_stream.cc", |
| 1003 "tools/quic/quic_spdy_client_stream.h", | 1005 "tools/quic/quic_spdy_client_stream.h", |
| 1004 "tools/quic/quic_spdy_server_stream.cc", | 1006 "tools/quic/quic_spdy_server_stream.cc", |
| 1005 "tools/quic/quic_spdy_server_stream.h", | 1007 "tools/quic/quic_spdy_server_stream.h", |
| (...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1355 sources = [ "quic/quic_server_bin.cc" ] | 1357 sources = [ "quic/quic_server_bin.cc" ] |
| 1356 deps = [ | 1358 deps = [ |
| 1357 ":quic_tools", | 1359 ":quic_tools", |
| 1358 ":net", | 1360 ":net", |
| 1359 "//base", | 1361 "//base", |
| 1360 "//third_party/boringssl", | 1362 "//third_party/boringssl", |
| 1361 ] | 1363 ] |
| 1362 } | 1364 } |
| 1363 | 1365 |
| 1364 } # !is_android | 1366 } # !is_android |
| OLD | NEW |