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

Side by Side Diff: net/net.gyp

Issue 361083002: Small cleanups to ported QuicServer and dependencies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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',
550 ], 549 ],
551 'sources': [ 550 'sources': [
552 '<@(net_test_sources)', 551 '<@(net_test_sources)',
553 ], 552 ],
554 'conditions': [ 553 'conditions': [
555 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { 554 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
556 'dependencies': [ 555 'dependencies': [
557 'epoll_server', 556 'epoll_server',
558 'flip_in_mem_edsm_server_base', 557 'flip_in_mem_edsm_server_base',
559 'quic_base', 558 'quic_base',
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
1108 'tools/dump_cache/upgrade_win.cc', 1107 'tools/dump_cache/upgrade_win.cc',
1109 'tools/dump_cache/upgrade_win.h', 1108 'tools/dump_cache/upgrade_win.h',
1110 'tools/dump_cache/url_to_filename_encoder.cc', 1109 'tools/dump_cache/url_to_filename_encoder.cc',
1111 'tools/dump_cache/url_to_filename_encoder.h', 1110 'tools/dump_cache/url_to_filename_encoder.h',
1112 'tools/dump_cache/url_utilities.h', 1111 'tools/dump_cache/url_utilities.h',
1113 'tools/dump_cache/url_utilities.cc', 1112 'tools/dump_cache/url_utilities.cc',
1114 ], 1113 ],
1115 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1114 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1116 'msvs_disabled_warnings': [4267, ], 1115 'msvs_disabled_warnings': [4267, ],
1117 }, 1116 },
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 'net',
1128 ],
1129 'sources': [
1130 'quic/quic_dispatcher.cc',
1131 'quic/quic_dispatcher.h',
1132 'quic/quic_in_memory_cache.cc',
1133 'quic/quic_in_memory_cache.h',
1134 'quic/quic_per_connection_packet_writer.cc',
1135 'quic/quic_per_connection_packet_writer.h',
1136 'quic/quic_server.cc',
1137 'quic/quic_server.h',
1138 'quic/quic_server_packet_writer.cc',
1139 'quic/quic_server_packet_writer.h',
1140 'quic/quic_server_session.cc',
1141 'quic/quic_server_session.h',
1142 'quic/quic_spdy_server_stream.cc',
1143 'quic/quic_spdy_server_stream.h',
1144 'quic/quic_time_wait_list_manager.cc',
1145 'quic/quic_time_wait_list_manager.h',
1146 ],
1147 },
1148 ], 1117 ],
1149 'conditions': [ 1118 'conditions': [
1150 ['use_v8_in_net == 1', { 1119 ['use_v8_in_net == 1', {
1151 'targets': [ 1120 'targets': [
1152 { 1121 {
1153 'target_name': 'net_with_v8', 1122 'target_name': 'net_with_v8',
1154 'type': '<(component)', 1123 'type': '<(component)',
1155 'variables': { 'enable_wexit_time_destructors': 1, }, 1124 'variables': { 'enable_wexit_time_destructors': 1, },
1156 'dependencies': [ 1125 'dependencies': [
1157 '../base/base.gyp:base', 1126 '../base/base.gyp:base',
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
1499 'sources': [ 1468 'sources': [
1500 'tools/quic/quic_client_bin.cc', 1469 'tools/quic/quic_client_bin.cc',
1501 ], 1470 ],
1502 }, 1471 },
1503 { 1472 {
1504 'target_name': 'quic_server', 1473 'target_name': 'quic_server',
1505 'type': 'executable', 1474 'type': 'executable',
1506 'dependencies': [ 1475 'dependencies': [
1507 '../base/base.gyp:base', 1476 '../base/base.gyp:base',
1508 'net', 1477 'net',
1509 'quic_ported_server',
1510 ], 1478 ],
1511 'sources': [ 1479 'sources': [
1512 'quic/quic_server_bin.cc', 1480 'quic/quic_server_bin.cc',
1513 ], 1481 ],
1514 }, 1482 },
1515 ] 1483 ]
1516 }], 1484 }],
1517 ['OS=="android"', { 1485 ['OS=="android"', {
1518 'targets': [ 1486 'targets': [
1519 { 1487 {
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
1699 'net_unittests.isolate', 1667 'net_unittests.isolate',
1700 ], 1668 ],
1701 'sources': [ 1669 'sources': [
1702 'net_unittests.isolate', 1670 'net_unittests.isolate',
1703 ], 1671 ],
1704 }, 1672 },
1705 ], 1673 ],
1706 }], 1674 }],
1707 ], 1675 ],
1708 } 1676 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698