| 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 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 '../url/url.gyp:url_lib', | 810 '../url/url.gyp:url_lib', |
| 811 'net', | 811 'net', |
| 812 ], | 812 ], |
| 813 'sources': [ | 813 'sources': [ |
| 814 'tools/quic/quic_simple_client.cc', | 814 'tools/quic/quic_simple_client.cc', |
| 815 'tools/quic/quic_simple_client.h', | 815 'tools/quic/quic_simple_client.h', |
| 816 'tools/quic/quic_simple_client_session.cc', | 816 'tools/quic/quic_simple_client_session.cc', |
| 817 'tools/quic/quic_simple_client_session.h', | 817 'tools/quic/quic_simple_client_session.h', |
| 818 'tools/quic/quic_simple_client_stream.cc', | 818 'tools/quic/quic_simple_client_stream.cc', |
| 819 'tools/quic/quic_simple_client_stream.h', | 819 'tools/quic/quic_simple_client_stream.h', |
| 820 'tools/quic/synchronous_host_resolver.cc', | |
| 821 'tools/quic/synchronous_host_resolver.h', | |
| 822 ], | 820 ], |
| 823 }, | 821 }, |
| 824 ], | 822 ], |
| 825 'conditions': [ | 823 'conditions': [ |
| 826 ['use_v8_in_net == 1', { | 824 ['use_v8_in_net == 1', { |
| 827 'targets': [ | 825 'targets': [ |
| 828 { | 826 { |
| 829 'target_name': 'net_with_v8', | 827 'target_name': 'net_with_v8', |
| 830 'type': '<(component)', | 828 'type': '<(component)', |
| 831 'variables': { 'enable_wexit_time_destructors': 1, }, | 829 'variables': { 'enable_wexit_time_destructors': 1, }, |
| (...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1268 'tools/quic/quic_time_wait_list_manager.h', | 1266 'tools/quic/quic_time_wait_list_manager.h', |
| 1269 ], | 1267 ], |
| 1270 }, | 1268 }, |
| 1271 { | 1269 { |
| 1272 'target_name': 'quic_client', | 1270 'target_name': 'quic_client', |
| 1273 'type': 'executable', | 1271 'type': 'executable', |
| 1274 'dependencies': [ | 1272 'dependencies': [ |
| 1275 '../base/base.gyp:base', | 1273 '../base/base.gyp:base', |
| 1276 'net', | 1274 'net', |
| 1277 'quic_base', | 1275 'quic_base', |
| 1278 'simple_quic_tools', | |
| 1279 ], | 1276 ], |
| 1280 'sources': [ | 1277 'sources': [ |
| 1281 'tools/quic/quic_client_bin.cc', | 1278 'tools/quic/quic_client_bin.cc', |
| 1282 ], | 1279 ], |
| 1283 }, | 1280 }, |
| 1284 ] | 1281 ] |
| 1285 }], | 1282 }], |
| 1286 ['os_posix == 1 and OS != "ios" and OS != "android"', { | 1283 ['os_posix == 1 and OS != "ios" and OS != "android"', { |
| 1287 'targets': [ | 1284 'targets': [ |
| 1288 { | 1285 { |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1520 '../build/isolate.gypi', | 1517 '../build/isolate.gypi', |
| 1521 ], | 1518 ], |
| 1522 'sources': [ | 1519 'sources': [ |
| 1523 'net_unittests.isolate', | 1520 'net_unittests.isolate', |
| 1524 ], | 1521 ], |
| 1525 }, | 1522 }, |
| 1526 ], | 1523 ], |
| 1527 }], | 1524 }], |
| 1528 ], | 1525 ], |
| 1529 } | 1526 } |
| OLD | NEW |