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 '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_client', |
| 806 'type': 'executable', |
| 807 'dependencies': [ |
| 808 '../base/base.gyp:base', |
| 809 '../url/url.gyp:url_lib', |
| 810 'net', |
| 811 ], |
| 812 'sources': [ |
| 813 'tools/quic/quic_simple_client.cc', |
| 814 'tools/quic/quic_simple_client.h', |
| 815 '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 }, |
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 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1486 '../build/isolate.gypi', | 1504 '../build/isolate.gypi', |
1487 ], | 1505 ], |
1488 'sources': [ | 1506 'sources': [ |
1489 'net_unittests.isolate', | 1507 'net_unittests.isolate', |
1490 ], | 1508 ], |
1491 }, | 1509 }, |
1492 ], | 1510 ], |
1493 }], | 1511 }], |
1494 ], | 1512 ], |
1495 } | 1513 } |
OLD | NEW |