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

Side by Side Diff: net/net.gyp

Issue 337093003: QuicServer: Use Chrome's header parsing rather than Balsa (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@quic_server_3
Patch Set: One missing review comment 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 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
534 'type': '<(gtest_target_type)', 534 'type': '<(gtest_target_type)',
535 'dependencies': [ 535 'dependencies': [
536 '../base/base.gyp:base', 536 '../base/base.gyp:base',
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',
545 'http_server', 544 'http_server',
546 'net', 545 'net',
547 'net_derived_sources', 546 'net_derived_sources',
548 'net_test_support', 547 'net_test_support',
549 'quic_ported_server', 548 'quic_ported_server',
550 ], 549 ],
551 'sources': [ 550 'sources': [
552 '<@(net_test_sources)', 551 '<@(net_test_sources)',
553 ], 552 ],
554 'conditions': [ 553 'conditions': [
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after
1117 }, 1116 },
1118 { 1117 {
1119 # This is a temporary target which will be merged into 'net' once the 1118 # 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. 1119 # dependency on balsa is eliminated and the classes are actually used.
1121 'target_name': 'quic_ported_server', 1120 'target_name': 'quic_ported_server',
1122 'type': 'static_library', 1121 'type': 'static_library',
1123 'dependencies': [ 1122 'dependencies': [
1124 '../base/base.gyp:base', 1123 '../base/base.gyp:base',
1125 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 1124 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
1126 '../url/url.gyp:url_lib', 1125 '../url/url.gyp:url_lib',
1127 'balsa',
1128 'net', 1126 'net',
1129 ], 1127 ],
1130 'sources': [ 1128 'sources': [
1131 'quic/quic_dispatcher.cc', 1129 'quic/quic_dispatcher.cc',
1132 'quic/quic_dispatcher.h', 1130 'quic/quic_dispatcher.h',
1133 'quic/quic_in_memory_cache.cc', 1131 'quic/quic_in_memory_cache.cc',
1134 'quic/quic_in_memory_cache.h', 1132 'quic/quic_in_memory_cache.h',
1135 'quic/quic_per_connection_packet_writer.cc', 1133 'quic/quic_per_connection_packet_writer.cc',
1136 'quic/quic_per_connection_packet_writer.h', 1134 'quic/quic_per_connection_packet_writer.h',
1137 'quic/quic_server.cc', 1135 'quic/quic_server.cc',
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after
1700 'net_unittests.isolate', 1698 'net_unittests.isolate',
1701 ], 1699 ],
1702 'sources': [ 1700 'sources': [
1703 'net_unittests.isolate', 1701 'net_unittests.isolate',
1704 ], 1702 ],
1705 }, 1703 },
1706 ], 1704 ],
1707 }], 1705 }],
1708 ], 1706 ],
1709 } 1707 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | net/quic/quic_http_stream.cc » ('j') | net/quic/quic_spdy_server_stream.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698