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

Side by Side Diff: net/net.gyp

Issue 995423003: Add a chromium based simple QUIC client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix iOS Created 5 years, 9 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 | « net/BUILD.gn ('k') | net/spdy/spdy_http_utils.h » ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'conditions': [ 10 'conditions': [
(...skipping 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after
1056 '../base/base.gyp:base', 1056 '../base/base.gyp:base',
1057 '../base/base.gyp:test_support_base', 1057 '../base/base.gyp:test_support_base',
1058 '../testing/gtest.gyp:gtest', 1058 '../testing/gtest.gyp:gtest',
1059 'net_test_support', 1059 'net_test_support',
1060 ], 1060 ],
1061 'sources': [ 1061 'sources': [
1062 'tools/testserver/run_testserver.cc', 1062 'tools/testserver/run_testserver.cc',
1063 ], 1063 ],
1064 }, 1064 },
1065 { 1065 {
1066 'target_name': 'simple_quic_client',
1067 'type': 'executable',
1068 'dependencies': [
1069 '../base/base.gyp:base',
1070 '../url/url.gyp:url_lib',
1071 'net',
1072 ],
1073 'sources': [
1074 'tools/quic/quic_simple_client.cc',
1075 'tools/quic/quic_simple_client.h',
1076 'tools/quic/quic_simple_client_bin.cc',
1077 'tools/quic/quic_simple_client_session.cc',
1078 'tools/quic/quic_simple_client_session.h',
1079 'tools/quic/quic_simple_client_stream.cc',
1080 'tools/quic/quic_simple_client_stream.h',
1081 ],
1082 },
1083 {
1066 'target_name': 'stress_cache', 1084 'target_name': 'stress_cache',
1067 'type': 'executable', 1085 'type': 'executable',
1068 'dependencies': [ 1086 'dependencies': [
1069 '../base/base.gyp:base', 1087 '../base/base.gyp:base',
1070 'net', 1088 'net',
1071 'net_test_support', 1089 'net_test_support',
1072 ], 1090 ],
1073 'sources': [ 1091 'sources': [
1074 'tools/stress_cache/stress_cache.cc', 1092 'tools/stress_cache/stress_cache.cc',
1075 ], 1093 ],
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
1486 '../build/isolate.gypi', 1504 '../build/isolate.gypi',
1487 ], 1505 ],
1488 'sources': [ 1506 'sources': [
1489 'net_unittests.isolate', 1507 'net_unittests.isolate',
1490 ], 1508 ],
1491 }, 1509 },
1492 ], 1510 ],
1493 }], 1511 }],
1494 ], 1512 ],
1495 } 1513 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | net/spdy/spdy_http_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698