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

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: Indentation fix 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
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 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 'net_derived_sources', 547 'net_derived_sources',
548 'net_test_support', 548 'net_test_support',
549 'quic_ported_server',
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',
557 'flip_in_mem_edsm_server_base', 558 'flip_in_mem_edsm_server_base',
558 'quic_base', 559 'quic_base',
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
1107 'tools/dump_cache/upgrade_win.cc', 1108 'tools/dump_cache/upgrade_win.cc',
1108 'tools/dump_cache/upgrade_win.h', 1109 'tools/dump_cache/upgrade_win.h',
1109 'tools/dump_cache/url_to_filename_encoder.cc', 1110 'tools/dump_cache/url_to_filename_encoder.cc',
1110 'tools/dump_cache/url_to_filename_encoder.h', 1111 'tools/dump_cache/url_to_filename_encoder.h',
1111 'tools/dump_cache/url_utilities.h', 1112 'tools/dump_cache/url_utilities.h',
1112 'tools/dump_cache/url_utilities.cc', 1113 'tools/dump_cache/url_utilities.cc',
1113 ], 1114 ],
1114 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1115 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1115 'msvs_disabled_warnings': [4267, ], 1116 'msvs_disabled_warnings': [4267, ],
1116 }, 1117 },
1118 {
1119 # This is a temporary target which will be merged into 'net' once the
1120 # dependency on balsa is eliminated and the classes are actually used.
1121 'target_name': 'quic_ported_server',
1122 'type': 'static_library',
1123 'dependencies': [
1124 '../base/base.gyp:base',
1125 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
1126 '../url/url.gyp:url_lib',
1127 'balsa',
1128 'net',
1129 ],
1130 'sources': [
1131 'quic/quic_dispatcher.cc',
1132 'quic/quic_dispatcher.h',
1133 'quic/quic_in_memory_cache.cc',
1134 'quic/quic_in_memory_cache.h',
1135 'quic/quic_per_connection_packet_writer.cc',
1136 'quic/quic_per_connection_packet_writer.h',
1137 'quic/quic_server.cc',
1138 'quic/quic_server.h',
1139 'quic/quic_server_packet_writer.cc',
1140 'quic/quic_server_packet_writer.h',
1141 'quic/quic_server_session.cc',
1142 'quic/quic_server_session.h',
1143 'quic/quic_spdy_server_stream.cc',
1144 'quic/quic_spdy_server_stream.h',
1145 'quic/quic_time_wait_list_manager.cc',
1146 'quic/quic_time_wait_list_manager.h',
1147 ],
1148 },
1117 ], 1149 ],
1118 'conditions': [ 1150 'conditions': [
1119 ['use_v8_in_net == 1', { 1151 ['use_v8_in_net == 1', {
1120 'targets': [ 1152 'targets': [
1121 { 1153 {
1122 'target_name': 'net_with_v8', 1154 'target_name': 'net_with_v8',
1123 'type': '<(component)', 1155 'type': '<(component)',
1124 'variables': { 'enable_wexit_time_destructors': 1, }, 1156 'variables': { 'enable_wexit_time_destructors': 1, },
1125 'dependencies': [ 1157 'dependencies': [
1126 '../base/base.gyp:base', 1158 '../base/base.gyp:base',
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
1468 'sources': [ 1500 'sources': [
1469 'tools/quic/quic_client_bin.cc', 1501 'tools/quic/quic_client_bin.cc',
1470 ], 1502 ],
1471 }, 1503 },
1472 { 1504 {
1473 'target_name': 'quic_server', 1505 'target_name': 'quic_server',
1474 'type': 'executable', 1506 'type': 'executable',
1475 'dependencies': [ 1507 'dependencies': [
1476 '../base/base.gyp:base', 1508 '../base/base.gyp:base',
1477 'net', 1509 'net',
1478 'quic_base', 1510 'quic_ported_server',
1479 ], 1511 ],
1480 'sources': [ 1512 'sources': [
1481 'tools/quic/quic_server_bin.cc', 1513 'quic/quic_server_bin.cc',
1482 ], 1514 ],
1483 }, 1515 },
1484 ] 1516 ]
1485 }], 1517 }],
1486 ['OS=="android"', { 1518 ['OS=="android"', {
1487 'targets': [ 1519 'targets': [
1488 { 1520 {
1489 'target_name': 'net_jni_headers', 1521 'target_name': 'net_jni_headers',
1490 'type': 'none', 1522 'type': 'none',
1491 'sources': [ 1523 'sources': [
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
1668 'net_unittests.isolate', 1700 'net_unittests.isolate',
1669 ], 1701 ],
1670 'sources': [ 1702 'sources': [
1671 'net_unittests.isolate', 1703 'net_unittests.isolate',
1672 ], 1704 ],
1673 }, 1705 },
1674 ], 1706 ],
1675 }], 1707 }],
1676 ], 1708 ],
1677 } 1709 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | net/net.gypi » ('j') | net/quic/quic_server_packet_writer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698