| 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 'linux_link_kerberos%': 0, | 8 'linux_link_kerberos%': 0, |
| 9 # Enables BidirectionalStream; Used in cronet, disabled by default. | 9 # Enables BidirectionalStream; Used in cronet, disabled by default. |
| 10 'enable_bidirectional_stream%': 0, | 10 'enable_bidirectional_stream%': 0, |
| (...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 796 'dependencies': [ | 796 'dependencies': [ |
| 797 '../base/base.gyp:base', | 797 '../base/base.gyp:base', |
| 798 'net', | 798 'net', |
| 799 'net_test_support', | 799 'net_test_support', |
| 800 ], | 800 ], |
| 801 'sources': [ | 801 'sources': [ |
| 802 'tools/cachetool/cachetool.cc', | 802 'tools/cachetool/cachetool.cc', |
| 803 ], | 803 ], |
| 804 }, | 804 }, |
| 805 { | 805 { |
| 806 'target_name': 'contentdecodertool', |
| 807 'type': 'executable', |
| 808 'dependencies': [ |
| 809 '../base/base.gyp:base', |
| 810 'net', |
| 811 ], |
| 812 'sources': [ |
| 813 'tools/contentdecodertool/contentdecodertool.cc', |
| 814 'filter/mock_filter_context.cc', |
| 815 ], |
| 816 }, |
| 817 { |
| 806 'target_name': 'dump_cache', | 818 'target_name': 'dump_cache', |
| 807 'type': 'executable', | 819 'type': 'executable', |
| 808 'dependencies': [ | 820 'dependencies': [ |
| 809 '../base/base.gyp:base', | 821 '../base/base.gyp:base', |
| 810 'net', | 822 'net', |
| 811 'net_test_support', | 823 'net_test_support', |
| 812 ], | 824 ], |
| 813 'sources': [ | 825 'sources': [ |
| 814 'tools/dump_cache/dump_cache.cc', | 826 'tools/dump_cache/dump_cache.cc', |
| 815 'tools/dump_cache/dump_files.cc', | 827 'tools/dump_cache/dump_files.cc', |
| (...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1716 '../build/isolate.gypi', | 1728 '../build/isolate.gypi', |
| 1717 ], | 1729 ], |
| 1718 'sources': [ | 1730 'sources': [ |
| 1719 'net_unittests.isolate', | 1731 'net_unittests.isolate', |
| 1720 ], | 1732 ], |
| 1721 }, | 1733 }, |
| 1722 ], | 1734 ], |
| 1723 }], | 1735 }], |
| 1724 ], | 1736 ], |
| 1725 } | 1737 } |
| OLD | NEW |