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

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: Rebase onto upstream 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
« no previous file with comments | « no previous file | net/quic/quic_spdy_server_stream.cc » ('j') | no next file with comments »
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 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 '../crypto/crypto.gyp:crypto', 541 '../crypto/crypto.gyp:crypto',
542 '../testing/gmock.gyp:gmock', 542 '../testing/gmock.gyp:gmock',
543 '../testing/gtest.gyp:gtest', 543 '../testing/gtest.gyp:gtest',
544 '../third_party/zlib/zlib.gyp:zlib', 544 '../third_party/zlib/zlib.gyp:zlib',
545 '../url/url.gyp:url_lib', 545 '../url/url.gyp:url_lib',
546 'balsa', 546 'balsa',
547 'http_server', 547 'http_server',
548 'net', 548 'net',
549 'net_derived_sources', 549 'net_derived_sources',
550 'net_test_support', 550 'net_test_support',
551 'quic_ported_server', 551 'quic_tools',
552 ], 552 ],
553 'sources': [ 553 'sources': [
554 '<@(net_test_sources)', 554 '<@(net_test_sources)',
555 ], 555 ],
556 'conditions': [ 556 'conditions': [
557 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { 557 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
558 'dependencies': [ 558 'dependencies': [
559 'epoll_server', 559 'epoll_server',
560 'flip_in_mem_edsm_server_base', 560 'flip_in_mem_edsm_server_base',
561 'quic_base', 561 'quic_base',
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
1113 'tools/dump_cache/url_to_filename_encoder.h', 1113 'tools/dump_cache/url_to_filename_encoder.h',
1114 'tools/dump_cache/url_utilities.h', 1114 'tools/dump_cache/url_utilities.h',
1115 'tools/dump_cache/url_utilities.cc', 1115 'tools/dump_cache/url_utilities.cc',
1116 ], 1116 ],
1117 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1117 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1118 'msvs_disabled_warnings': [4267, ], 1118 'msvs_disabled_warnings': [4267, ],
1119 }, 1119 },
1120 { 1120 {
1121 # This is a temporary target which will be merged into 'net' once the 1121 # This is a temporary target which will be merged into 'net' once the
1122 # dependency on balsa is eliminated and the classes are actually used. 1122 # dependency on balsa is eliminated and the classes are actually used.
1123 'target_name': 'quic_ported_server', 1123 'target_name': 'quic_tools',
1124 'type': 'static_library', 1124 'type': 'static_library',
1125 'dependencies': [ 1125 'dependencies': [
1126 '../base/base.gyp:base', 1126 '../base/base.gyp:base',
1127 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 1127 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
1128 '../url/url.gyp:url_lib', 1128 '../url/url.gyp:url_lib',
1129 'net', 1129 'net',
1130 ], 1130 ],
1131 'sources': [ 1131 'sources': [
1132 'quic/quic_dispatcher.cc', 1132 'quic/quic_dispatcher.cc',
1133 'quic/quic_dispatcher.h', 1133 'quic/quic_dispatcher.h',
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
1501 'sources': [ 1501 'sources': [
1502 'tools/quic/quic_client_bin.cc', 1502 'tools/quic/quic_client_bin.cc',
1503 ], 1503 ],
1504 }, 1504 },
1505 { 1505 {
1506 'target_name': 'quic_server', 1506 'target_name': 'quic_server',
1507 'type': 'executable', 1507 'type': 'executable',
1508 'dependencies': [ 1508 'dependencies': [
1509 '../base/base.gyp:base', 1509 '../base/base.gyp:base',
1510 'net', 1510 'net',
1511 'quic_ported_server', 1511 'quic_tools',
1512 ], 1512 ],
1513 'sources': [ 1513 'sources': [
1514 'quic/quic_server_bin.cc', 1514 'quic/quic_server_bin.cc',
1515 ], 1515 ],
1516 }, 1516 },
1517 ] 1517 ]
1518 }], 1518 }],
1519 ['OS=="android"', { 1519 ['OS=="android"', {
1520 'targets': [ 1520 'targets': [
1521 { 1521 {
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
1701 'net_unittests.isolate', 1701 'net_unittests.isolate',
1702 ], 1702 ],
1703 'sources': [ 1703 'sources': [
1704 'net_unittests.isolate', 1704 'net_unittests.isolate',
1705 ], 1705 ],
1706 }, 1706 },
1707 ], 1707 ],
1708 }], 1708 }],
1709 ], 1709 ],
1710 } 1710 }
OLDNEW
« no previous file with comments | « no previous file | net/quic/quic_spdy_server_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698