Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Side by Side Diff: net/net.gyp

Issue 1767653002: Implement content_decoder_tool.cc to decode offline any resources. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addresses gavinp's nits Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | net/tools/content_decoder_tool/content_decoder_tool.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 786 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 'dependencies': [ 797 'dependencies': [
798 '../base/base.gyp:base', 798 '../base/base.gyp:base',
799 'net', 799 'net',
800 'net_test_support', 800 'net_test_support',
801 ], 801 ],
802 'sources': [ 802 'sources': [
803 'tools/cachetool/cachetool.cc', 803 'tools/cachetool/cachetool.cc',
804 ], 804 ],
805 }, 805 },
806 { 806 {
807 'target_name': 'content_decoder_tool',
808 'type': 'executable',
809 'dependencies': [
810 '../base/base.gyp:base',
811 'net',
812 ],
813 'sources': [
814 'tools/content_decoder_tool/content_decoder_tool.cc',
815 'filter/mock_filter_context.cc',
816 ],
817 },
818 {
807 'target_name': 'dump_cache', 819 'target_name': 'dump_cache',
808 'type': 'executable', 820 'type': 'executable',
809 'dependencies': [ 821 'dependencies': [
810 '../base/base.gyp:base', 822 '../base/base.gyp:base',
811 'net', 823 'net',
812 'net_test_support', 824 'net_test_support',
813 ], 825 ],
814 'sources': [ 826 'sources': [
815 'tools/dump_cache/dump_cache.cc', 827 'tools/dump_cache/dump_cache.cc',
816 'tools/dump_cache/dump_files.cc', 828 'tools/dump_cache/dump_files.cc',
(...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after
1717 '../build/isolate.gypi', 1729 '../build/isolate.gypi',
1718 ], 1730 ],
1719 'sources': [ 1731 'sources': [
1720 'net_unittests.isolate', 1732 'net_unittests.isolate',
1721 ], 1733 ],
1722 }, 1734 },
1723 ], 1735 ],
1724 }], 1736 }],
1725 ], 1737 ],
1726 } 1738 }
OLDNEW
« no previous file with comments | « no previous file | net/tools/content_decoder_tool/content_decoder_tool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698