| 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("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
| 9 import("//url/config.gni") | 9 import("//url/config.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1241 ] | 1241 ] |
| 1242 deps = [ | 1242 deps = [ |
| 1243 ":net", | 1243 ":net", |
| 1244 "//base", | 1244 "//base", |
| 1245 ] | 1245 ] |
| 1246 } | 1246 } |
| 1247 } | 1247 } |
| 1248 | 1248 |
| 1249 source_set("simple_quic_tools") { | 1249 source_set("simple_quic_tools") { |
| 1250 sources = [ | 1250 sources = [ |
| 1251 "tools/quic/quic_client_base.cc", |
| 1252 "tools/quic/quic_client_base.h", |
| 1251 "tools/quic/quic_client_session.cc", | 1253 "tools/quic/quic_client_session.cc", |
| 1252 "tools/quic/quic_client_session.h", | 1254 "tools/quic/quic_client_session.h", |
| 1253 "tools/quic/quic_dispatcher.cc", | 1255 "tools/quic/quic_dispatcher.cc", |
| 1254 "tools/quic/quic_dispatcher.h", | 1256 "tools/quic/quic_dispatcher.h", |
| 1255 "tools/quic/quic_in_memory_cache.cc", | 1257 "tools/quic/quic_in_memory_cache.cc", |
| 1256 "tools/quic/quic_in_memory_cache.h", | 1258 "tools/quic/quic_in_memory_cache.h", |
| 1257 "tools/quic/quic_per_connection_packet_writer.cc", | 1259 "tools/quic/quic_per_connection_packet_writer.cc", |
| 1258 "tools/quic/quic_per_connection_packet_writer.h", | 1260 "tools/quic/quic_per_connection_packet_writer.h", |
| 1259 "tools/quic/quic_server_session.cc", | 1261 "tools/quic/quic_server_session.cc", |
| 1260 "tools/quic/quic_server_session.h", | 1262 "tools/quic/quic_server_session.h", |
| (...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1681 if (enable_websockets) { | 1683 if (enable_websockets) { |
| 1682 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1684 sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 1683 } | 1685 } |
| 1684 | 1686 |
| 1685 if (use_v8_in_net) { | 1687 if (use_v8_in_net) { |
| 1686 deps += [ ":net_with_v8" ] | 1688 deps += [ ":net_with_v8" ] |
| 1687 } else { | 1689 } else { |
| 1688 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1690 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1689 } | 1691 } |
| 1690 } | 1692 } |
| OLD | NEW |