Chromium Code Reviews| 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 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 798 ], | 798 ], |
| 799 'sources': [ | 799 'sources': [ |
| 800 'tools/dump_cache/dump_cache.cc', | 800 'tools/dump_cache/dump_cache.cc', |
| 801 'tools/dump_cache/dump_files.cc', | 801 'tools/dump_cache/dump_files.cc', |
| 802 'tools/dump_cache/dump_files.h', | 802 'tools/dump_cache/dump_files.h', |
| 803 ], | 803 ], |
| 804 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 804 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 805 'msvs_disabled_warnings': [4267, ], | 805 'msvs_disabled_warnings': [4267, ], |
| 806 }, | 806 }, |
| 807 { | 807 { |
| 808 'target_name': 'cachetool', | |
|
gavinp
2016/02/19 16:21:11
I believe this goes above "dump_cache" because we
gabadie
2016/02/22 14:35:45
Done.
| |
| 809 'type': 'executable', | |
| 810 'dependencies': [ | |
| 811 '../base/base.gyp:base', | |
| 812 'net', | |
| 813 'net_test_support', | |
| 814 ], | |
| 815 'sources': [ | |
| 816 'tools/cachetool/cachetool.cc', | |
| 817 ], | |
| 818 }, | |
| 819 { | |
| 808 'target_name': 'simple_quic_tools', | 820 'target_name': 'simple_quic_tools', |
| 809 'type': 'static_library', | 821 'type': 'static_library', |
| 810 'dependencies': [ | 822 'dependencies': [ |
| 811 '../base/base.gyp:base', | 823 '../base/base.gyp:base', |
| 812 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', | 824 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', |
| 813 '../url/url.gyp:url_lib', | 825 '../url/url.gyp:url_lib', |
| 814 'net', | 826 'net', |
| 815 'net_quic_proto', | 827 'net_quic_proto', |
| 816 ], | 828 ], |
| 817 'sources': [ | 829 'sources': [ |
| (...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1701 '../build/isolate.gypi', | 1713 '../build/isolate.gypi', |
| 1702 ], | 1714 ], |
| 1703 'sources': [ | 1715 'sources': [ |
| 1704 'net_unittests.isolate', | 1716 'net_unittests.isolate', |
| 1705 ], | 1717 ], |
| 1706 }, | 1718 }, |
| 1707 ], | 1719 ], |
| 1708 }], | 1720 }], |
| 1709 ], | 1721 ], |
| 1710 } | 1722 } |
| OLD | NEW |