| OLD | NEW |
| 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 Loading... |
| 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 'tools/quic/quic_simple_client.cc', | 798 'tools/quic/quic_simple_client.cc', |
| 799 'tools/quic/quic_simple_client.h', | 799 'tools/quic/quic_simple_client.h', |
| 800 'tools/quic/quic_simple_client_session.cc', | 800 'tools/quic/quic_simple_client_session.cc', |
| 801 'tools/quic/quic_simple_client_session.h', | 801 'tools/quic/quic_simple_client_session.h', |
| 802 'tools/quic/quic_simple_client_stream.cc', | 802 'tools/quic/quic_simple_client_stream.cc', |
| 803 'tools/quic/quic_simple_client_stream.h', | 803 'tools/quic/quic_simple_client_stream.h', |
| 804 'tools/quic/synchronous_host_resolver.cc', |
| 805 'tools/quic/synchronous_host_resolver.h', |
| 804 'quic/quic_spdy_server_stream.cc', | 806 'quic/quic_spdy_server_stream.cc', |
| 805 'quic/quic_spdy_server_stream.h', | 807 'quic/quic_spdy_server_stream.h', |
| 806 'quic/quic_time_wait_list_manager.cc', | 808 'quic/quic_time_wait_list_manager.cc', |
| 807 'quic/quic_time_wait_list_manager.h', | 809 'quic/quic_time_wait_list_manager.h', |
| 808 ], | 810 ], |
| 809 }, | 811 }, |
| 810 ], | 812 ], |
| 811 'conditions': [ | 813 'conditions': [ |
| 812 ['use_v8_in_net == 1', { | 814 ['use_v8_in_net == 1', { |
| 813 'targets': [ | 815 'targets': [ |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1211 { | 1213 { |
| 1212 'target_name': 'quic_base', | 1214 'target_name': 'quic_base', |
| 1213 'type': 'static_library', | 1215 'type': 'static_library', |
| 1214 'dependencies': [ | 1216 'dependencies': [ |
| 1215 '../base/base.gyp:base', | 1217 '../base/base.gyp:base', |
| 1216 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', | 1218 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', |
| 1217 '../url/url.gyp:url_lib', | 1219 '../url/url.gyp:url_lib', |
| 1218 'balsa', | 1220 'balsa', |
| 1219 'epoll_server', | 1221 'epoll_server', |
| 1220 'net', | 1222 'net', |
| 1223 'quic_tools', |
| 1221 ], | 1224 ], |
| 1222 'sources': [ | 1225 'sources': [ |
| 1223 'tools/quic/quic_client.cc', | 1226 'tools/quic/quic_client.cc', |
| 1224 'tools/quic/quic_client.h', | 1227 'tools/quic/quic_client.h', |
| 1225 'tools/quic/quic_client_session.cc', | 1228 'tools/quic/quic_client_session.cc', |
| 1226 'tools/quic/quic_client_session.h', | 1229 'tools/quic/quic_client_session.h', |
| 1227 'tools/quic/quic_default_packet_writer.cc', | 1230 'tools/quic/quic_default_packet_writer.cc', |
| 1228 'tools/quic/quic_default_packet_writer.h', | 1231 'tools/quic/quic_default_packet_writer.h', |
| 1229 'tools/quic/quic_dispatcher.cc', | 1232 'tools/quic/quic_dispatcher.cc', |
| 1230 'tools/quic/quic_dispatcher.h', | 1233 'tools/quic/quic_dispatcher.h', |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1505 '../build/isolate.gypi', | 1508 '../build/isolate.gypi', |
| 1506 ], | 1509 ], |
| 1507 'sources': [ | 1510 'sources': [ |
| 1508 'net_unittests.isolate', | 1511 'net_unittests.isolate', |
| 1509 ], | 1512 ], |
| 1510 }, | 1513 }, |
| 1511 ], | 1514 ], |
| 1512 }], | 1515 }], |
| 1513 ], | 1516 ], |
| 1514 } | 1517 } |
| OLD | NEW |