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

Side by Side Diff: components/components_tests.gyp

Issue 255273002: First step towards invalidations componentization (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix merge conflict Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « components/components.gyp ('k') | components/invalidation.gypi » ('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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 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 # 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 'domain_reliability/config_unittest.cc', 86 'domain_reliability/config_unittest.cc',
87 'domain_reliability/context_unittest.cc', 87 'domain_reliability/context_unittest.cc',
88 'domain_reliability/dispatcher_unittest.cc', 88 'domain_reliability/dispatcher_unittest.cc',
89 'domain_reliability/monitor_unittest.cc', 89 'domain_reliability/monitor_unittest.cc',
90 'domain_reliability/scheduler_unittest.cc', 90 'domain_reliability/scheduler_unittest.cc',
91 'domain_reliability/test_util.cc', 91 'domain_reliability/test_util.cc',
92 'domain_reliability/test_util.h', 92 'domain_reliability/test_util.h',
93 'domain_reliability/uploader_unittest.cc', 93 'domain_reliability/uploader_unittest.cc',
94 'domain_reliability/util_unittest.cc', 94 'domain_reliability/util_unittest.cc',
95 'feedback/feedback_uploader_unittest.cc', 95 'feedback/feedback_uploader_unittest.cc',
96 'invalidation/invalidation_logger_unittest.cc',
96 'json_schema/json_schema_validator_unittest.cc', 97 'json_schema/json_schema_validator_unittest.cc',
97 'json_schema/json_schema_validator_unittest_base.cc', 98 'json_schema/json_schema_validator_unittest_base.cc',
98 'json_schema/json_schema_validator_unittest_base.h', 99 'json_schema/json_schema_validator_unittest_base.h',
99 'keyed_service/content/browser_context_dependency_manager_unittest.c c', 100 'keyed_service/content/browser_context_dependency_manager_unittest.c c',
100 'keyed_service/core/dependency_graph_unittest.cc', 101 'keyed_service/core/dependency_graph_unittest.cc',
101 'language_usage_metrics/language_usage_metrics_unittest.cc', 102 'language_usage_metrics/language_usage_metrics_unittest.cc',
102 'metrics/metrics_hashes_unittest.cc', 103 'metrics/metrics_hashes_unittest.cc',
103 'metrics/metrics_log_base_unittest.cc', 104 'metrics/metrics_log_base_unittest.cc',
104 'metrics/metrics_log_manager_unittest.cc', 105 'metrics/metrics_log_manager_unittest.cc',
105 'navigation_interception/intercept_navigation_resource_throttle_unit test.cc', 106 'navigation_interception/intercept_navigation_resource_throttle_unit test.cc',
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 'components.gyp:distilled_page_proto', 222 'components.gyp:distilled_page_proto',
222 'components.gyp:dom_distiller_core', 223 'components.gyp:dom_distiller_core',
223 'components.gyp:dom_distiller_test_support', 224 'components.gyp:dom_distiller_test_support',
224 225
225 # Dependencies of domain_reliability 226 # Dependencies of domain_reliability
226 'components.gyp:domain_reliability', 227 'components.gyp:domain_reliability',
227 228
228 # Dependencies of feedback 229 # Dependencies of feedback
229 'components.gyp:feedback_component', 230 'components.gyp:feedback_component',
230 231
232 # Dependencies of invalidation
233 'components.gyp:invalidation',
234
231 # Dependencies of json_schema 235 # Dependencies of json_schema
232 'components.gyp:json_schema', 236 'components.gyp:json_schema',
233 237
234 # Dependencies of keyed_service 238 # Dependencies of keyed_service
235 'components.gyp:keyed_service_core', 239 'components.gyp:keyed_service_core',
236 240
237 # Dependencies of language_usage_metrics 241 # Dependencies of language_usage_metrics
238 'components.gyp:language_usage_metrics', 242 'components.gyp:language_usage_metrics',
239 243
240 # Dependencies of os_crypt 244 # Dependencies of os_crypt
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 'includes': ['../chrome/chrome_ios_bundle_resources.gypi'], 333 'includes': ['../chrome/chrome_ios_bundle_resources.gypi'],
330 'sources/': [ 334 'sources/': [
331 ['exclude', '\\.cc$'], 335 ['exclude', '\\.cc$'],
332 ['exclude', '\\.mm$'], 336 ['exclude', '\\.mm$'],
333 ['include', '^test/run_all_unittests\\.cc$'], 337 ['include', '^test/run_all_unittests\\.cc$'],
334 ['include', '^auto_login_parser/'], 338 ['include', '^auto_login_parser/'],
335 ['include', '^autofill/core/'], 339 ['include', '^autofill/core/'],
336 ['include', '^bookmarks/'], 340 ['include', '^bookmarks/'],
337 ['include', '^data_reduction_proxy/'], 341 ['include', '^data_reduction_proxy/'],
338 ['include', '^dom_distiller/'], 342 ['include', '^dom_distiller/'],
343 ['include', '^invalidation/'],
339 ['include', '^json_schema/'], 344 ['include', '^json_schema/'],
340 ['include', '^keyed_service/core/'], 345 ['include', '^keyed_service/core/'],
341 ['include', '^language_usage_metrics/'], 346 ['include', '^language_usage_metrics/'],
342 ['include', '^password_manager/'], 347 ['include', '^password_manager/'],
343 ['include', '^precache/core/'], 348 ['include', '^precache/core/'],
344 ['include', '^search_provider_logos/'], 349 ['include', '^search_provider_logos/'],
345 ['include', '^signin/'], 350 ['include', '^signin/'],
346 ['include', '^sync_driver/'], 351 ['include', '^sync_driver/'],
347 ['include', '^translate/'], 352 ['include', '^translate/'],
348 ['include', '^variations/'], 353 ['include', '^variations/'],
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 'dependencies': [ 701 'dependencies': [
697 '../base/allocator/allocator.gyp:allocator', 702 '../base/allocator/allocator.gyp:allocator',
698 ], 703 ],
699 }], 704 }],
700 ], 705 ],
701 }, 706 },
702 ], 707 ],
703 }], 708 }],
704 ], 709 ],
705 } 710 }
OLDNEW
« no previous file with comments | « components/components.gyp ('k') | components/invalidation.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698