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

Side by Side Diff: net/net.gyp

Issue 7037022: An initial curvecp implementation. This implementation is not complete, (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 7 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 | Annotate | Revision Log
« net/curvecp/messenger.cc ('K') | « net/curvecp/test_server.cc ('k') | no next file » | 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after
1345 'tools/flip_server/spdy_util.cc', 1345 'tools/flip_server/spdy_util.cc',
1346 'tools/flip_server/spdy_util.h', 1346 'tools/flip_server/spdy_util.h',
1347 'tools/flip_server/streamer_interface.cc', 1347 'tools/flip_server/streamer_interface.cc',
1348 'tools/flip_server/streamer_interface.h', 1348 'tools/flip_server/streamer_interface.h',
1349 'tools/flip_server/string_piece_utils.h', 1349 'tools/flip_server/string_piece_utils.h',
1350 'tools/flip_server/thread.h', 1350 'tools/flip_server/thread.h',
1351 'tools/flip_server/url_to_filename_encoder.h', 1351 'tools/flip_server/url_to_filename_encoder.h',
1352 'tools/flip_server/url_utilities.h', 1352 'tools/flip_server/url_utilities.h',
1353 ], 1353 ],
1354 }, 1354 },
1355 {
1356 'target_name': 'curvecp',
1357 'type': '<(library)',
1358 'dependencies': [
1359 '../base/base.gyp:base',
1360 'net.gyp:net',
1361 ],
1362 'sources': [
1363 'curvecp/circular_buffer.cc',
1364 'curvecp/circular_buffer.h',
1365 'curvecp/client_packetizer.cc',
1366 'curvecp/client_packetizer.h',
1367 'curvecp/connection_key.cc',
1368 'curvecp/connection_key.h',
1369 'curvecp/curvecp_client_socket.cc',
1370 'curvecp/curvecp_client_socket.h',
1371 'curvecp/curvecp_server_socket.cc',
1372 'curvecp/curvecp_server_socket.h',
1373 'curvecp/messenger.h',
1374 'curvecp/messenger.cc',
1375 'curvecp/packetizer.h',
1376 'curvecp/protocol.cc',
1377 'curvecp/protocol.h',
1378 'curvecp/received_block_list.cc',
1379 'curvecp/received_block_list.h',
1380 'curvecp/rtt_and_send_rate_calculator.cc',
1381 'curvecp/rtt_and_send_rate_calculator.h',
1382 'curvecp/sent_block_list.cc',
1383 'curvecp/sent_block_list.h',
1384 'curvecp/server_messenger.cc',
1385 'curvecp/server_messenger.h',
1386 'curvecp/server_packetizer.cc',
1387 'curvecp/server_packetizer.h',
1388 ],
1389 },
1390 {
1391 'target_name': 'curvecp_unittests',
1392 'type': 'executable',
1393 'dependencies': [
1394 '../base/base.gyp:base',
1395 'net.gyp:curvecp',
1396 'net.gyp:net',
1397 'net_test_support',
1398 '../testing/gmock.gyp:gmock',
1399 '../testing/gtest.gyp:gtest',
1400 '../third_party/zlib/zlib.gyp:zlib',
1401 ],
1402 'sources': [
1403 'curvecp/curvecp_transfer_unittest.cc',
1404 'curvecp/test_client.cc',
1405 'curvecp/test_server.cc',
1406 ],
1407 },
1355 ] 1408 ]
1356 }], 1409 }],
1357 ['OS=="win"', { 1410 ['OS=="win"', {
1358 'targets': [ 1411 'targets': [
1359 { 1412 {
1360 # TODO(port): dump_cache is still Windows-specific. 1413 # TODO(port): dump_cache is still Windows-specific.
1361 'target_name': 'dump_cache', 1414 'target_name': 'dump_cache',
1362 'type': 'executable', 1415 'type': 'executable',
1363 'dependencies': [ 1416 'dependencies': [
1364 'net', 1417 'net',
(...skipping 15 matching lines...) Expand all
1380 ], 1433 ],
1381 }], 1434 }],
1382 ], 1435 ],
1383 } 1436 }
1384 1437
1385 # Local Variables: 1438 # Local Variables:
1386 # tab-width:2 1439 # tab-width:2
1387 # indent-tabs-mode:nil 1440 # indent-tabs-mode:nil
1388 # End: 1441 # End:
1389 # vim: set expandtab tabstop=2 shiftwidth=2: 1442 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« net/curvecp/messenger.cc ('K') | « net/curvecp/test_server.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698