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

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: Changes are made. 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 'variations/active_field_trials_unittest.cc', 234 'variations/active_field_trials_unittest.cc',
235 'variations/caching_permuted_entropy_provider_unittest.cc', 235 'variations/caching_permuted_entropy_provider_unittest.cc',
236 'variations/entropy_provider_unittest.cc', 236 'variations/entropy_provider_unittest.cc',
237 'variations/metrics_util_unittest.cc', 237 'variations/metrics_util_unittest.cc',
238 'variations/study_filtering_unittest.cc', 238 'variations/study_filtering_unittest.cc',
239 'variations/variations_associated_data_unittest.cc', 239 'variations/variations_associated_data_unittest.cc',
240 'variations/variations_http_header_provider_unittest.cc', 240 'variations/variations_http_header_provider_unittest.cc',
241 'variations/variations_seed_processor_unittest.cc', 241 'variations/variations_seed_processor_unittest.cc',
242 'variations/variations_seed_simulator_unittest.cc', 242 'variations/variations_seed_simulator_unittest.cc',
243 'visitedlink/test/visitedlink_unittest.cc', 243 'visitedlink/test/visitedlink_unittest.cc',
244 'web_cache/browser/web_cache_manager_unittest.cc',
244 'web_modal/web_contents_modal_dialog_manager_unittest.cc', 245 'web_modal/web_contents_modal_dialog_manager_unittest.cc',
245 'webdata/common/web_database_migration_unittest.cc', 246 'webdata/common/web_database_migration_unittest.cc',
246 ], 247 ],
247 'include_dirs': [ 248 'include_dirs': [
248 '..', 249 '..',
249 ], 250 ],
250 'dependencies': [ 251 'dependencies': [
251 '../base/base.gyp:base_prefs_test_support', 252 '../base/base.gyp:base_prefs_test_support',
252 '../base/base.gyp:test_support_base', 253 '../base/base.gyp:test_support_base',
253 # TODO(blundell): Eliminate this dependency by having 254 # TODO(blundell): Eliminate this dependency by having
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 'components.gyp:storage_monitor', 473 'components.gyp:storage_monitor',
473 'components.gyp:storage_monitor_test_support', 474 'components.gyp:storage_monitor_test_support',
474 475
475 # Dependencies of url_matcher. 476 # Dependencies of url_matcher.
476 'components.gyp:url_matcher', 477 'components.gyp:url_matcher',
477 478
478 # Dependencies of visitedlink 479 # Dependencies of visitedlink
479 'components.gyp:visitedlink_browser', 480 'components.gyp:visitedlink_browser',
480 'components.gyp:visitedlink_renderer', 481 'components.gyp:visitedlink_renderer',
481 482
483 # Dependencies of web_cache
484 'components.gyp:web_cache_browser',
485
482 # Dependencies of web_modal 486 # Dependencies of web_modal
483 'components.gyp:web_modal', 487 'components.gyp:web_modal',
484 'components.gyp:web_modal_test_support', 488 'components.gyp:web_modal_test_support',
485 ], 489 ],
486 }, { # 'OS == "ios"' 490 }, { # 'OS == "ios"'
487 'includes': ['../chrome/chrome_ios_bundle_resources.gypi'], 491 'includes': ['../chrome/chrome_ios_bundle_resources.gypi'],
488 'sources/': [ 492 'sources/': [
489 ['exclude', '\\.cc$'], 493 ['exclude', '\\.cc$'],
490 ['exclude', '\\.mm$'], 494 ['exclude', '\\.mm$'],
491 ['include', '^test/run_all_unittests\\.cc$'], 495 ['include', '^test/run_all_unittests\\.cc$'],
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
923 'dependencies': [ 927 'dependencies': [
924 '../base/allocator/allocator.gyp:allocator', 928 '../base/allocator/allocator.gyp:allocator',
925 ], 929 ],
926 }], 930 }],
927 ], 931 ],
928 }, 932 },
929 ], 933 ],
930 }], 934 }],
931 ], 935 ],
932 } 936 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698