| 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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//build_overrides/v8.gni") | 10 import("//build_overrides/v8.gni") |
| (...skipping 1233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1244 "tools/quic/quic_server_session.cc", | 1244 "tools/quic/quic_server_session.cc", |
| 1245 "tools/quic/quic_server_session.h", | 1245 "tools/quic/quic_server_session.h", |
| 1246 "tools/quic/quic_simple_client.cc", | 1246 "tools/quic/quic_simple_client.cc", |
| 1247 "tools/quic/quic_simple_client.h", | 1247 "tools/quic/quic_simple_client.h", |
| 1248 "tools/quic/quic_simple_per_connection_packet_writer.cc", | 1248 "tools/quic/quic_simple_per_connection_packet_writer.cc", |
| 1249 "tools/quic/quic_simple_per_connection_packet_writer.h", | 1249 "tools/quic/quic_simple_per_connection_packet_writer.h", |
| 1250 "tools/quic/quic_simple_server.cc", | 1250 "tools/quic/quic_simple_server.cc", |
| 1251 "tools/quic/quic_simple_server.h", | 1251 "tools/quic/quic_simple_server.h", |
| 1252 "tools/quic/quic_simple_server_packet_writer.cc", | 1252 "tools/quic/quic_simple_server_packet_writer.cc", |
| 1253 "tools/quic/quic_simple_server_packet_writer.h", | 1253 "tools/quic/quic_simple_server_packet_writer.h", |
| 1254 "tools/quic/quic_simple_server_stream.cc", |
| 1255 "tools/quic/quic_simple_server_stream.h", |
| 1254 "tools/quic/quic_spdy_client_stream.cc", | 1256 "tools/quic/quic_spdy_client_stream.cc", |
| 1255 "tools/quic/quic_spdy_client_stream.h", | 1257 "tools/quic/quic_spdy_client_stream.h", |
| 1256 "tools/quic/quic_spdy_server_stream.cc", | |
| 1257 "tools/quic/quic_spdy_server_stream.h", | |
| 1258 "tools/quic/quic_time_wait_list_manager.cc", | 1258 "tools/quic/quic_time_wait_list_manager.cc", |
| 1259 "tools/quic/quic_time_wait_list_manager.h", | 1259 "tools/quic/quic_time_wait_list_manager.h", |
| 1260 "tools/quic/synchronous_host_resolver.cc", | 1260 "tools/quic/synchronous_host_resolver.cc", |
| 1261 "tools/quic/synchronous_host_resolver.h", | 1261 "tools/quic/synchronous_host_resolver.h", |
| 1262 ] | 1262 ] |
| 1263 deps = [ | 1263 deps = [ |
| 1264 ":net", | 1264 ":net", |
| 1265 "//base", | 1265 "//base", |
| 1266 "//base/third_party/dynamic_annotations", | 1266 "//base/third_party/dynamic_annotations", |
| 1267 "//url", | 1267 "//url", |
| (...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1688 if (enable_websockets) { | 1688 if (enable_websockets) { |
| 1689 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1689 sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 1690 } | 1690 } |
| 1691 | 1691 |
| 1692 if (use_v8_in_net) { | 1692 if (use_v8_in_net) { |
| 1693 deps += [ ":net_with_v8" ] | 1693 deps += [ ":net_with_v8" ] |
| 1694 } else { | 1694 } else { |
| 1695 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1695 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1696 } | 1696 } |
| 1697 } | 1697 } |
| OLD | NEW |