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

Side by Side Diff: net/BUILD.gn

Issue 1297853002: QUIC - reorganize common code between quic_client and quic_simple_client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Uploaded quic_client_base.* changes Created 5 years, 4 months 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
« no previous file with comments | « no previous file | net/net.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698