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

Side by Side Diff: net/net.gyp

Issue 1021153003: Move simple QUIC client classes around in the .gyp files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: whoops! Created 5 years, 9 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 | « net/BUILD.gn ('k') | no next file » | 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 'conditions': [ 10 'conditions': [
(...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 'quic/quic_server_packet_writer.cc', 794 'quic/quic_server_packet_writer.cc',
795 'quic/quic_server_packet_writer.h', 795 'quic/quic_server_packet_writer.h',
796 'quic/quic_server_session.cc', 796 'quic/quic_server_session.cc',
797 'quic/quic_server_session.h', 797 'quic/quic_server_session.h',
798 'quic/quic_spdy_server_stream.cc', 798 'quic/quic_spdy_server_stream.cc',
799 'quic/quic_spdy_server_stream.h', 799 'quic/quic_spdy_server_stream.h',
800 'quic/quic_time_wait_list_manager.cc', 800 'quic/quic_time_wait_list_manager.cc',
801 'quic/quic_time_wait_list_manager.h', 801 'quic/quic_time_wait_list_manager.h',
802 ], 802 ],
803 }, 803 },
804 {
805 'target_name': 'simple_quic_tools',
806 'type': 'static_library',
807 'dependencies': [
808 '../base/base.gyp:base',
809 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
810 '../url/url.gyp:url_lib',
811 'net',
812 ],
813 'sources': [
814 'tools/quic/quic_simple_client.cc',
815 'tools/quic/quic_simple_client.h',
816 'tools/quic/quic_simple_client_session.cc',
817 'tools/quic/quic_simple_client_session.h',
818 'tools/quic/quic_simple_client_stream.cc',
819 'tools/quic/quic_simple_client_stream.h',
820 ],
821 },
804 ], 822 ],
805 'conditions': [ 823 'conditions': [
806 ['use_v8_in_net == 1', { 824 ['use_v8_in_net == 1', {
807 'targets': [ 825 'targets': [
808 { 826 {
809 'target_name': 'net_with_v8', 827 'target_name': 'net_with_v8',
810 'type': '<(component)', 828 'type': '<(component)',
811 'variables': { 'enable_wexit_time_destructors': 1, }, 829 'variables': { 'enable_wexit_time_destructors': 1, },
812 'dependencies': [ 830 'dependencies': [
813 '../base/base.gyp:base', 831 '../base/base.gyp:base',
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
1062 'tools/testserver/run_testserver.cc', 1080 'tools/testserver/run_testserver.cc',
1063 ], 1081 ],
1064 }, 1082 },
1065 { 1083 {
1066 'target_name': 'simple_quic_client', 1084 'target_name': 'simple_quic_client',
1067 'type': 'executable', 1085 'type': 'executable',
1068 'dependencies': [ 1086 'dependencies': [
1069 '../base/base.gyp:base', 1087 '../base/base.gyp:base',
1070 '../url/url.gyp:url_lib', 1088 '../url/url.gyp:url_lib',
1071 'net', 1089 'net',
1090 'simple_quic_tools',
1072 ], 1091 ],
1073 'sources': [ 1092 'sources': [
1074 'tools/quic/quic_simple_client.cc',
1075 'tools/quic/quic_simple_client.h',
1076 'tools/quic/quic_simple_client_bin.cc', 1093 'tools/quic/quic_simple_client_bin.cc',
1077 'tools/quic/quic_simple_client_session.cc',
1078 'tools/quic/quic_simple_client_session.h',
1079 'tools/quic/quic_simple_client_stream.cc',
1080 'tools/quic/quic_simple_client_stream.h',
1081 ], 1094 ],
1082 }, 1095 },
1083 { 1096 {
1084 'target_name': 'stress_cache', 1097 'target_name': 'stress_cache',
1085 'type': 'executable', 1098 'type': 'executable',
1086 'dependencies': [ 1099 'dependencies': [
1087 '../base/base.gyp:base', 1100 '../base/base.gyp:base',
1088 'net', 1101 'net',
1089 'net_test_support', 1102 'net_test_support',
1090 ], 1103 ],
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
1504 '../build/isolate.gypi', 1517 '../build/isolate.gypi',
1505 ], 1518 ],
1506 'sources': [ 1519 'sources': [
1507 'net_unittests.isolate', 1520 'net_unittests.isolate',
1508 ], 1521 ],
1509 }, 1522 },
1510 ], 1523 ],
1511 }], 1524 }],
1512 ], 1525 ],
1513 } 1526 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698