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

Side by Side Diff: net/net.gyp

Issue 340433002: Port QuicServer to Chrome network stack (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address further comments Created 6 years, 6 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.gypi » ('j') | net/quic/quic_connection_packet_writer_wrapper.h » ('J')
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 'use_tracing_cache_backend%': 0, 10 'use_tracing_cache_backend%': 0,
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 '../base/base.gyp:base_i18n', 537 '../base/base.gyp:base_i18n',
538 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 538 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
539 '../crypto/crypto.gyp:crypto', 539 '../crypto/crypto.gyp:crypto',
540 '../testing/gmock.gyp:gmock', 540 '../testing/gmock.gyp:gmock',
541 '../testing/gtest.gyp:gtest', 541 '../testing/gtest.gyp:gtest',
542 '../third_party/zlib/zlib.gyp:zlib', 542 '../third_party/zlib/zlib.gyp:zlib',
543 '../url/url.gyp:url_lib', 543 '../url/url.gyp:url_lib',
544 'balsa', 544 'balsa',
545 'http_server', 545 'http_server',
546 'net', 546 'net',
547 'quic_ported_server',
wtc 2014/06/20 21:40:48 List this in alphabetical order, after 'net_test_s
dmziegler 2014/06/23 18:31:23 Done.
547 'net_derived_sources', 548 'net_derived_sources',
548 'net_test_support', 549 'net_test_support',
549 ], 550 ],
550 'sources': [ 551 'sources': [
551 '<@(net_test_sources)', 552 '<@(net_test_sources)',
552 ], 553 ],
553 'conditions': [ 554 'conditions': [
554 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { 555 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
555 'dependencies': [ 556 'dependencies': [
556 'epoll_server', 557 'epoll_server',
(...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after
1409 'dependencies': [ 1410 'dependencies': [
1410 '../base/base.gyp:base', 1411 '../base/base.gyp:base',
1411 'flip_in_mem_edsm_server_base', 1412 'flip_in_mem_edsm_server_base',
1412 'net', 1413 'net',
1413 ], 1414 ],
1414 'sources': [ 1415 'sources': [
1415 'tools/flip_server/flip_in_mem_edsm_server.cc', 1416 'tools/flip_server/flip_in_mem_edsm_server.cc',
1416 ], 1417 ],
1417 }, 1418 },
1418 { 1419 {
1420 'target_name': 'quic_ported_server',
wtc 2014/06/20 21:40:48 Please document why these files are a separate bui
dmziegler 2014/06/23 18:31:23 Done.
1421 'type': 'static_library',
1422 'dependencies': [
1423 '../base/base.gyp:base',
1424 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
1425 '../url/url.gyp:url_lib',
1426 'balsa',
1427 'net',
1428 ],
1429 'sources': [
1430 'quic/quic_dispatcher.cc',
1431 'quic/quic_dispatcher.h',
1432 'quic/quic_in_memory_cache.cc',
1433 'quic/quic_in_memory_cache.h',
1434 'quic/quic_server.cc',
1435 'quic/quic_server.h',
1436 'quic/quic_connection_packet_writer_wrapper.cc',
1437 'quic/quic_connection_packet_writer_wrapper.h',
1438 'quic/quic_server_packet_writer.cc',
1439 'quic/quic_server_packet_writer.h',
1440 'quic/quic_server_session.cc',
1441 'quic/quic_server_session.h',
1442 'quic/quic_spdy_server_stream.cc',
1443 'quic/quic_spdy_server_stream.h',
1444 'quic/quic_time_wait_list_manager.cc',
1445 'quic/quic_time_wait_list_manager.h',
wtc 2014/06/20 21:40:48 List these files in alphabetical order.
dmziegler 2014/06/23 18:31:23 Done.
1446 ],
1447 },
1448 {
1419 'target_name': 'quic_base', 1449 'target_name': 'quic_base',
1420 'type': 'static_library', 1450 'type': 'static_library',
1421 'dependencies': [ 1451 'dependencies': [
1422 '../base/base.gyp:base', 1452 '../base/base.gyp:base',
1423 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 1453 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
1424 '../url/url.gyp:url_lib', 1454 '../url/url.gyp:url_lib',
1425 'balsa', 1455 'balsa',
1426 'epoll_server', 1456 'epoll_server',
1427 'net', 1457 'net',
1428 ], 1458 ],
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
1468 'sources': [ 1498 'sources': [
1469 'tools/quic/quic_client_bin.cc', 1499 'tools/quic/quic_client_bin.cc',
1470 ], 1500 ],
1471 }, 1501 },
1472 { 1502 {
1473 'target_name': 'quic_server', 1503 'target_name': 'quic_server',
1474 'type': 'executable', 1504 'type': 'executable',
1475 'dependencies': [ 1505 'dependencies': [
1476 '../base/base.gyp:base', 1506 '../base/base.gyp:base',
1477 'net', 1507 'net',
1478 'quic_base', 1508 'quic_ported_server',
1479 ], 1509 ],
1480 'sources': [ 1510 'sources': [
1481 'tools/quic/quic_server_bin.cc', 1511 'tools/quic/quic_server_bin.cc',
1482 ], 1512 ],
1483 }, 1513 },
1484 ] 1514 ]
1485 }], 1515 }],
1486 ['OS=="android"', { 1516 ['OS=="android"', {
1487 'targets': [ 1517 'targets': [
1488 { 1518 {
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
1668 'net_unittests.isolate', 1698 'net_unittests.isolate',
1669 ], 1699 ],
1670 'sources': [ 1700 'sources': [
1671 'net_unittests.isolate', 1701 'net_unittests.isolate',
1672 ], 1702 ],
1673 }, 1703 },
1674 ], 1704 ],
1675 }], 1705 }],
1676 ], 1706 ],
1677 } 1707 }
OLDNEW
« no previous file with comments | « no previous file | net/net.gypi » ('j') | net/quic/quic_connection_packet_writer_wrapper.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698