summaryrefslogtreecommitdiffstats
path: root/net/net.gyp
diff options
context:
space:
mode:
authorrch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-28 22:32:43 +0000
committerrch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-28 22:32:43 +0000
commit073eba0593057f520f206f4b2fa4e01b11468f8b (patch)
tree4ade42f9309376ee7dcf559e0d6bf605e191b4a2 /net/net.gyp
parentdc146c6b245c22893ff90f4fe9b1e75d7da32fc4 (diff)
downloadchromium_src-073eba0593057f520f206f4b2fa4e01b11468f8b.zip
chromium_src-073eba0593057f520f206f4b2fa4e01b11468f8b.tar.gz
chromium_src-073eba0593057f520f206f4b2fa4e01b11468f8b.tar.bz2
Revert 170024 - Adding a simple class for dumping the contents of a cache. Use this new class in dump_cache.
Reverted: 169769 Initially landed: 169704 Review URL: https://codereview.chromium.org/11316204 TBR=rch@chromium.org Review URL: https://codereview.chromium.org/11419213 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170075 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/net.gyp')
-rw-r--r--net/net.gyp49
1 files changed, 25 insertions, 24 deletions
diff --git a/net/net.gyp b/net/net.gyp
index 57253726..795f627 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -1942,30 +1942,6 @@
'server/web_socket.h',
],
},
- {
- 'target_name': 'dump_cache',
- 'type': 'executable',
- 'dependencies': [
- '../base/base.gyp:base',
- 'net',
- 'net_test_support',
- ],
- 'sources': [
- 'tools/dump_cache/cache_dumper.cc',
- 'tools/dump_cache/cache_dumper.h',
- 'tools/dump_cache/dump_cache.cc',
- 'tools/dump_cache/dump_files.cc',
- 'tools/dump_cache/dump_files.h',
- 'tools/dump_cache/simple_cache_dumper.cc',
- 'tools/dump_cache/simple_cache_dumper.h',
- 'tools/dump_cache/upgrade_win.cc',
- 'tools/dump_cache/upgrade_win.h',
- 'tools/dump_cache/url_to_filename_encoder.cc',
- 'tools/dump_cache/url_to_filename_encoder.h',
- 'tools/dump_cache/url_utilities.h',
- 'tools/dump_cache/url_utilities.cc',
- ],
- },
],
'conditions': [
['use_v8_in_net == 1', {
@@ -2330,6 +2306,31 @@
},
],
}],
+ ['OS=="win"', {
+ 'targets': [
+ {
+ # TODO(port): dump_cache is still Windows-specific.
+ 'target_name': 'dump_cache',
+ 'type': 'executable',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'net',
+ 'net_test_support',
+ ],
+ 'sources': [
+ 'tools/dump_cache/cache_dumper.cc',
+ 'tools/dump_cache/cache_dumper.h',
+ 'tools/dump_cache/dump_cache.cc',
+ 'tools/dump_cache/dump_files.cc',
+ 'tools/dump_cache/upgrade.cc',
+ 'tools/dump_cache/url_to_filename_encoder.cc',
+ 'tools/dump_cache/url_to_filename_encoder.h',
+ 'tools/dump_cache/url_utilities.h',
+ 'tools/dump_cache/url_utilities.cc',
+ ],
+ },
+ ],
+ }],
['test_isolation_mode != "noop"', {
'targets': [
{