| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 1156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1167 "tools/quic/quic_default_packet_writer.cc", | 1167 "tools/quic/quic_default_packet_writer.cc", |
| 1168 "tools/quic/quic_default_packet_writer.h", | 1168 "tools/quic/quic_default_packet_writer.h", |
| 1169 "tools/quic/quic_epoll_clock.cc", | 1169 "tools/quic/quic_epoll_clock.cc", |
| 1170 "tools/quic/quic_epoll_clock.h", | 1170 "tools/quic/quic_epoll_clock.h", |
| 1171 "tools/quic/quic_epoll_connection_helper.cc", | 1171 "tools/quic/quic_epoll_connection_helper.cc", |
| 1172 "tools/quic/quic_epoll_connection_helper.h", | 1172 "tools/quic/quic_epoll_connection_helper.h", |
| 1173 "tools/quic/quic_packet_reader.cc", | 1173 "tools/quic/quic_packet_reader.cc", |
| 1174 "tools/quic/quic_packet_reader.h", | 1174 "tools/quic/quic_packet_reader.h", |
| 1175 "tools/quic/quic_packet_writer_wrapper.cc", | 1175 "tools/quic/quic_packet_writer_wrapper.cc", |
| 1176 "tools/quic/quic_packet_writer_wrapper.h", | 1176 "tools/quic/quic_packet_writer_wrapper.h", |
| 1177 "tools/quic/quic_process_packet_interface.h", |
| 1177 "tools/quic/quic_server.cc", | 1178 "tools/quic/quic_server.cc", |
| 1178 "tools/quic/quic_server.h", | 1179 "tools/quic/quic_server.h", |
| 1179 "tools/quic/quic_socket_utils.cc", | 1180 "tools/quic/quic_socket_utils.cc", |
| 1180 "tools/quic/quic_socket_utils.h", | 1181 "tools/quic/quic_socket_utils.h", |
| 1181 ] | 1182 ] |
| 1182 deps = [ | 1183 deps = [ |
| 1183 ":balsa", | 1184 ":balsa", |
| 1184 ":epoll_server", | 1185 ":epoll_server", |
| 1185 ":net", | 1186 ":net", |
| 1186 ":simple_quic_tools", | 1187 ":simple_quic_tools", |
| (...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1739 } else { | 1740 } else { |
| 1740 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1741 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1741 } | 1742 } |
| 1742 } | 1743 } |
| 1743 | 1744 |
| 1744 buildflag_header("features") { | 1745 buildflag_header("features") { |
| 1745 header = "net_features.h" | 1746 header = "net_features.h" |
| 1746 | 1747 |
| 1747 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] | 1748 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] |
| 1748 } | 1749 } |
| OLD | NEW |