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