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

Side by Side Diff: components/components_tests.gyp

Issue 528363002: Move webCacheManager to //components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 3 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 'variations/active_field_trials_unittest.cc', 240 'variations/active_field_trials_unittest.cc',
241 'variations/caching_permuted_entropy_provider_unittest.cc', 241 'variations/caching_permuted_entropy_provider_unittest.cc',
242 'variations/entropy_provider_unittest.cc', 242 'variations/entropy_provider_unittest.cc',
243 'variations/metrics_util_unittest.cc', 243 'variations/metrics_util_unittest.cc',
244 'variations/study_filtering_unittest.cc', 244 'variations/study_filtering_unittest.cc',
245 'variations/variations_associated_data_unittest.cc', 245 'variations/variations_associated_data_unittest.cc',
246 'variations/variations_http_header_provider_unittest.cc', 246 'variations/variations_http_header_provider_unittest.cc',
247 'variations/variations_seed_processor_unittest.cc', 247 'variations/variations_seed_processor_unittest.cc',
248 'variations/variations_seed_simulator_unittest.cc', 248 'variations/variations_seed_simulator_unittest.cc',
249 'visitedlink/test/visitedlink_unittest.cc', 249 'visitedlink/test/visitedlink_unittest.cc',
250 'web_cache/browser/web_cache_manager_unittest.cc',
250 'web_modal/web_contents_modal_dialog_manager_unittest.cc', 251 'web_modal/web_contents_modal_dialog_manager_unittest.cc',
251 'webdata/common/web_database_migration_unittest.cc', 252 'webdata/common/web_database_migration_unittest.cc',
252 ], 253 ],
253 'include_dirs': [ 254 'include_dirs': [
254 '..', 255 '..',
255 ], 256 ],
256 'dependencies': [ 257 'dependencies': [
257 '../base/base.gyp:base_prefs_test_support', 258 '../base/base.gyp:base_prefs_test_support',
258 '../base/base.gyp:test_support_base', 259 '../base/base.gyp:test_support_base',
259 # TODO(blundell): Eliminate this dependency by having 260 # TODO(blundell): Eliminate this dependency by having
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 'components.gyp:storage_monitor', 482 'components.gyp:storage_monitor',
482 'components.gyp:storage_monitor_test_support', 483 'components.gyp:storage_monitor_test_support',
483 484
484 # Dependencies of url_matcher. 485 # Dependencies of url_matcher.
485 'components.gyp:url_matcher', 486 'components.gyp:url_matcher',
486 487
487 # Dependencies of visitedlink 488 # Dependencies of visitedlink
488 'components.gyp:visitedlink_browser', 489 'components.gyp:visitedlink_browser',
489 'components.gyp:visitedlink_renderer', 490 'components.gyp:visitedlink_renderer',
490 491
492 # Dependencies of web_cache
493 'components.gyp:web_cache_browser',
494
491 # Dependencies of web_modal 495 # Dependencies of web_modal
492 'components.gyp:web_modal', 496 'components.gyp:web_modal',
493 'components.gyp:web_modal_test_support', 497 'components.gyp:web_modal_test_support',
494 ], 498 ],
495 }, { # 'OS == "ios"' 499 }, { # 'OS == "ios"'
496 'includes': ['../chrome/chrome_ios_bundle_resources.gypi'], 500 'includes': ['../chrome/chrome_ios_bundle_resources.gypi'],
497 'sources/': [ 501 'sources/': [
498 ['exclude', '\\.cc$'], 502 ['exclude', '\\.cc$'],
499 ['exclude', '\\.mm$'], 503 ['exclude', '\\.mm$'],
500 ['include', '^test/run_all_unittests\\.cc$'], 504 ['include', '^test/run_all_unittests\\.cc$'],
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after
936 'dependencies': [ 940 'dependencies': [
937 '../base/allocator/allocator.gyp:allocator', 941 '../base/allocator/allocator.gyp:allocator',
938 ], 942 ],
939 }], 943 }],
940 ], 944 ],
941 }, 945 },
942 ], 946 ],
943 }], 947 }],
944 ], 948 ],
945 } 949 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698