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

Side by Side Diff: net/net.gyp

Issue 11299239: Adding a simple class for dumping the contents of a cache. Use this new class in dump_cache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | net/tools/dump_cache/cache_dumper.h » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 1924 matching lines...) Expand 10 before | Expand all | Expand 10 after
1935 'server/http_connection.cc', 1935 'server/http_connection.cc',
1936 'server/http_connection.h', 1936 'server/http_connection.h',
1937 'server/http_server.cc', 1937 'server/http_server.cc',
1938 'server/http_server.h', 1938 'server/http_server.h',
1939 'server/http_server_request_info.cc', 1939 'server/http_server_request_info.cc',
1940 'server/http_server_request_info.h', 1940 'server/http_server_request_info.h',
1941 'server/web_socket.cc', 1941 'server/web_socket.cc',
1942 'server/web_socket.h', 1942 'server/web_socket.h',
1943 ], 1943 ],
1944 }, 1944 },
1945 {
1946 'target_name': 'dump_cache',
1947 'type': 'executable',
1948 'dependencies': [
1949 '../base/base.gyp:base',
1950 'net',
1951 'net_test_support',
1952 ],
1953 'sources': [
1954 'tools/dump_cache/cache_dumper.cc',
1955 'tools/dump_cache/cache_dumper.h',
1956 'tools/dump_cache/dump_cache.cc',
1957 'tools/dump_cache/dump_files.cc',
1958 'tools/dump_cache/dump_files.h',
1959 'tools/dump_cache/simple_cache_dumper.cc',
1960 'tools/dump_cache/simple_cache_dumper.h',
1961 'tools/dump_cache/upgrade_win.cc',
1962 'tools/dump_cache/upgrade_win.h',
1963 'tools/dump_cache/url_to_filename_encoder.cc',
1964 'tools/dump_cache/url_to_filename_encoder.h',
1965 'tools/dump_cache/url_utilities.h',
1966 'tools/dump_cache/url_utilities.cc',
1967 ],
1968 },
1945 ], 1969 ],
1946 'conditions': [ 1970 'conditions': [
1947 ['use_v8_in_net == 1', { 1971 ['use_v8_in_net == 1', {
1948 'targets': [ 1972 'targets': [
1949 { 1973 {
1950 'target_name': 'net_with_v8', 1974 'target_name': 'net_with_v8',
1951 'type': '<(component)', 1975 'type': '<(component)',
1952 'variables': { 'enable_wexit_time_destructors': 1, }, 1976 'variables': { 'enable_wexit_time_destructors': 1, },
1953 'dependencies': [ 1977 'dependencies': [
1954 '../base/base.gyp:base', 1978 '../base/base.gyp:base',
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
2299 'net_unittests', 2323 'net_unittests',
2300 ], 2324 ],
2301 'variables': { 2325 'variables': {
2302 'test_suite_name': 'net_unittests', 2326 'test_suite_name': 'net_unittests',
2303 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)net_unitt ests<(SHARED_LIB_SUFFIX)', 2327 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)net_unitt ests<(SHARED_LIB_SUFFIX)',
2304 }, 2328 },
2305 'includes': [ '../build/apk_test.gypi' ], 2329 'includes': [ '../build/apk_test.gypi' ],
2306 }, 2330 },
2307 ], 2331 ],
2308 }], 2332 }],
2309 ['OS=="win"', {
2310 'targets': [
2311 {
2312 # TODO(port): dump_cache is still Windows-specific.
2313 'target_name': 'dump_cache',
2314 'type': 'executable',
2315 'dependencies': [
2316 '../base/base.gyp:base',
2317 'net',
2318 'net_test_support',
2319 ],
2320 'sources': [
2321 'tools/dump_cache/cache_dumper.cc',
2322 'tools/dump_cache/cache_dumper.h',
2323 'tools/dump_cache/dump_cache.cc',
2324 'tools/dump_cache/dump_files.cc',
2325 'tools/dump_cache/upgrade.cc',
2326 'tools/dump_cache/url_to_filename_encoder.cc',
2327 'tools/dump_cache/url_to_filename_encoder.h',
2328 'tools/dump_cache/url_utilities.h',
2329 'tools/dump_cache/url_utilities.cc',
2330 ],
2331 },
2332 ],
2333 }],
2334 ['test_isolation_mode != "noop"', { 2333 ['test_isolation_mode != "noop"', {
2335 'targets': [ 2334 'targets': [
2336 { 2335 {
2337 'target_name': 'net_unittests_run', 2336 'target_name': 'net_unittests_run',
2338 'type': 'none', 2337 'type': 'none',
2339 'dependencies': [ 2338 'dependencies': [
2340 'net_unittests', 2339 'net_unittests',
2341 ], 2340 ],
2342 'includes': [ 2341 'includes': [
2343 'net_unittests.isolate', 2342 'net_unittests.isolate',
(...skipping 18 matching lines...) Expand all
2362 '--result', '<@(_outputs)', 2361 '--result', '<@(_outputs)',
2363 '--isolate', 'net_unittests.isolate', 2362 '--isolate', 'net_unittests.isolate',
2364 ], 2363 ],
2365 }, 2364 },
2366 ], 2365 ],
2367 }, 2366 },
2368 ], 2367 ],
2369 }], 2368 }],
2370 ], 2369 ],
2371 } 2370 }
OLDNEW
« no previous file with comments | « no previous file | net/tools/dump_cache/cache_dumper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698