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 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
788 'quic/quic_in_memory_cache.cc', | 788 'quic/quic_in_memory_cache.cc', |
789 'quic/quic_in_memory_cache.h', | 789 'quic/quic_in_memory_cache.h', |
790 'quic/quic_per_connection_packet_writer.cc', | 790 'quic/quic_per_connection_packet_writer.cc', |
791 'quic/quic_per_connection_packet_writer.h', | 791 'quic/quic_per_connection_packet_writer.h', |
792 'quic/quic_server.cc', | 792 'quic/quic_server.cc', |
793 'quic/quic_server.h', | 793 'quic/quic_server.h', |
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', |
| 799 'tools/quic/quic_simple_client.h', |
| 800 'tools/quic/quic_simple_client_session.cc', |
| 801 'tools/quic/quic_simple_client_session.h', |
| 802 'tools/quic/quic_simple_client_stream.cc', |
| 803 'tools/quic/quic_simple_client_stream.h', |
798 'quic/quic_spdy_server_stream.cc', | 804 'quic/quic_spdy_server_stream.cc', |
799 'quic/quic_spdy_server_stream.h', | 805 'quic/quic_spdy_server_stream.h', |
800 'quic/quic_time_wait_list_manager.cc', | 806 'quic/quic_time_wait_list_manager.cc', |
801 'quic/quic_time_wait_list_manager.h', | 807 'quic/quic_time_wait_list_manager.h', |
802 ], | 808 ], |
803 }, | 809 }, |
804 { | 810 { |
805 'target_name': 'simple_quic_client', | 811 'target_name': 'simple_quic_client', |
806 'type': 'executable', | 812 'type': 'executable', |
807 'dependencies': [ | 813 'dependencies': [ |
808 '../base/base.gyp:base', | 814 '../base/base.gyp:base', |
809 '../url/url.gyp:url_lib', | 815 '../url/url.gyp:url_lib', |
810 'net', | 816 'net', |
| 817 'quic_tools', |
811 ], | 818 ], |
812 'sources': [ | 819 'sources': [ |
813 'tools/quic/quic_simple_client.cc', | |
814 'tools/quic/quic_simple_client.h', | |
815 'tools/quic/quic_simple_client_bin.cc', | 820 'tools/quic/quic_simple_client_bin.cc', |
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 ], |
821 }, | 822 }, |
822 ], | 823 ], |
823 'conditions': [ | 824 'conditions': [ |
824 ['use_v8_in_net == 1', { | 825 ['use_v8_in_net == 1', { |
825 'targets': [ | 826 'targets': [ |
826 { | 827 { |
827 'target_name': 'net_with_v8', | 828 'target_name': 'net_with_v8', |
828 'type': '<(component)', | 829 'type': '<(component)', |
829 'variables': { 'enable_wexit_time_destructors': 1, }, | 830 'variables': { 'enable_wexit_time_destructors': 1, }, |
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1504 '../build/isolate.gypi', | 1505 '../build/isolate.gypi', |
1505 ], | 1506 ], |
1506 'sources': [ | 1507 'sources': [ |
1507 'net_unittests.isolate', | 1508 'net_unittests.isolate', |
1508 ], | 1509 ], |
1509 }, | 1510 }, |
1510 ], | 1511 ], |
1511 }], | 1512 }], |
1512 ], | 1513 ], |
1513 } | 1514 } |
OLD | NEW |