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 }, | |
822 ], | 804 ], |
823 'conditions': [ | 805 'conditions': [ |
824 ['use_v8_in_net == 1', { | 806 ['use_v8_in_net == 1', { |
825 'targets': [ | 807 'targets': [ |
826 { | 808 { |
827 'target_name': 'net_with_v8', | 809 'target_name': 'net_with_v8', |
828 'type': '<(component)', | 810 'type': '<(component)', |
829 'variables': { 'enable_wexit_time_destructors': 1, }, | 811 'variables': { 'enable_wexit_time_destructors': 1, }, |
830 'dependencies': [ | 812 'dependencies': [ |
831 '../base/base.gyp:base', | 813 '../base/base.gyp:base', |
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1504 '../build/isolate.gypi', | 1486 '../build/isolate.gypi', |
1505 ], | 1487 ], |
1506 'sources': [ | 1488 'sources': [ |
1507 'net_unittests.isolate', | 1489 'net_unittests.isolate', |
1508 ], | 1490 ], |
1509 }, | 1491 }, |
1510 ], | 1492 ], |
1511 }], | 1493 }], |
1512 ], | 1494 ], |
1513 } | 1495 } |
OLD | NEW |