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

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: (mark StringPieceUtils as copied, not added) 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/quic/http_request_line.h » ('j') | net/quic/http_request_line.cc » ('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 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 'quic_ported_server', 546 'quic_ported_server',
548 'net_derived_sources', 547 'net_derived_sources',
549 'net_test_support', 548 'net_test_support',
550 ], 549 ],
551 'sources': [ 550 'sources': [
552 '<@(net_test_sources)', 551 '<@(net_test_sources)',
553 ], 552 ],
554 'conditions': [ 553 'conditions': [
(...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after
1416 'tools/flip_server/flip_in_mem_edsm_server.cc', 1415 'tools/flip_server/flip_in_mem_edsm_server.cc',
1417 ], 1416 ],
1418 }, 1417 },
1419 { 1418 {
1420 'target_name': 'quic_ported_server', 1419 'target_name': 'quic_ported_server',
1421 'type': 'static_library', 1420 'type': 'static_library',
1422 'dependencies': [ 1421 'dependencies': [
1423 '../base/base.gyp:base', 1422 '../base/base.gyp:base',
1424 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 1423 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
1425 '../url/url.gyp:url_lib', 1424 '../url/url.gyp:url_lib',
1426 'balsa',
1427 'net', 1425 'net',
1428 ], 1426 ],
1429 'sources': [ 1427 'sources': [
1428 'quic/http_request_line.cc',
1429 'quic/http_request_line.h',
1430 'quic/quic_dispatcher.cc', 1430 'quic/quic_dispatcher.cc',
1431 'quic/quic_dispatcher.h', 1431 'quic/quic_dispatcher.h',
1432 'quic/quic_in_memory_cache.cc', 1432 'quic/quic_in_memory_cache.cc',
1433 'quic/quic_in_memory_cache.h', 1433 'quic/quic_in_memory_cache.h',
1434 'quic/quic_server.cc', 1434 'quic/quic_server.cc',
1435 'quic/quic_server.h', 1435 'quic/quic_server.h',
1436 'quic/quic_server_packet_writer.cc', 1436 'quic/quic_server_packet_writer.cc',
1437 'quic/quic_server_packet_writer.h', 1437 'quic/quic_server_packet_writer.h',
1438 'quic/quic_server_session.cc', 1438 'quic/quic_server_session.cc',
1439 'quic/quic_server_session.h', 1439 'quic/quic_server_session.h',
1440 'quic/quic_spdy_server_stream.cc', 1440 'quic/quic_spdy_server_stream.cc',
1441 'quic/quic_spdy_server_stream.h', 1441 'quic/quic_spdy_server_stream.h',
1442 'quic/quic_time_wait_list_manager.cc', 1442 'quic/quic_time_wait_list_manager.cc',
1443 'quic/quic_time_wait_list_manager.h', 1443 'quic/quic_time_wait_list_manager.h',
1444 'quic/string_piece_utils.h',
1444 ], 1445 ],
1445 }, 1446 },
1446 { 1447 {
1447 'target_name': 'quic_base', 1448 'target_name': 'quic_base',
1448 'type': 'static_library', 1449 'type': 'static_library',
1449 'dependencies': [ 1450 'dependencies': [
1450 '../base/base.gyp:base', 1451 '../base/base.gyp:base',
1451 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 1452 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
1452 '../url/url.gyp:url_lib', 1453 '../url/url.gyp:url_lib',
1453 'balsa', 1454 'balsa',
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
1696 'net_unittests.isolate', 1697 'net_unittests.isolate',
1697 ], 1698 ],
1698 'sources': [ 1699 'sources': [
1699 'net_unittests.isolate', 1700 'net_unittests.isolate',
1700 ], 1701 ],
1701 }, 1702 },
1702 ], 1703 ],
1703 }], 1704 }],
1704 ], 1705 ],
1705 } 1706 }
OLDNEW
« no previous file with comments | « no previous file | net/quic/http_request_line.h » ('j') | net/quic/http_request_line.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698