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

Side by Side Diff: components/components_tests.gyp

Issue 1191393008: Introduce a layering in the invalidation component as public and impl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Explicitly forbid content to prevent future additions Created 5 years, 5 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
« no previous file with comments | « components/BUILD.gn ('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 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 'history/core/browser/url_utils_unittest.cc', 250 'history/core/browser/url_utils_unittest.cc',
251 'history/core/browser/visit_database_unittest.cc', 251 'history/core/browser/visit_database_unittest.cc',
252 'history/core/browser/visit_filter_unittest.cc', 252 'history/core/browser/visit_filter_unittest.cc',
253 'history/core/browser/visit_tracker_unittest.cc', 253 'history/core/browser/visit_tracker_unittest.cc',
254 'history/core/common/thumbnail_score_unittest.cc', 254 'history/core/common/thumbnail_score_unittest.cc',
255 ], 255 ],
256 'instance_id_unittest_sources': [ 256 'instance_id_unittest_sources': [
257 'gcm_driver/instance_id/instance_id_driver_unittest.cc', 257 'gcm_driver/instance_id/instance_id_driver_unittest.cc',
258 ], 258 ],
259 'invalidation_unittest_sources': [ 259 'invalidation_unittest_sources': [
260 'invalidation/fake_invalidator_unittest.cc', 260 'invalidation/impl/fake_invalidator_unittest.cc',
261 'invalidation/gcm_network_channel_unittest.cc', 261 'invalidation/impl/gcm_network_channel_unittest.cc',
262 'invalidation/invalidation_logger_unittest.cc', 262 'invalidation/impl/invalidation_logger_unittest.cc',
263 'invalidation/invalidation_notifier_unittest.cc', 263 'invalidation/impl/invalidation_notifier_unittest.cc',
264 'invalidation/invalidator_registrar_unittest.cc', 264 'invalidation/impl/invalidator_registrar_unittest.cc',
265 'invalidation/non_blocking_invalidator_unittest.cc', 265 'invalidation/impl/non_blocking_invalidator_unittest.cc',
266 'invalidation/object_id_invalidation_map_unittest.cc', 266 'invalidation/impl/object_id_invalidation_map_unittest.cc',
267 'invalidation/p2p_invalidator_unittest.cc', 267 'invalidation/impl/p2p_invalidator_unittest.cc',
268 'invalidation/push_client_channel_unittest.cc', 268 'invalidation/impl/push_client_channel_unittest.cc',
269 'invalidation/registration_manager_unittest.cc', 269 'invalidation/impl/registration_manager_unittest.cc',
270 'invalidation/single_object_invalidation_set_unittest.cc', 270 'invalidation/impl/single_object_invalidation_set_unittest.cc',
271 'invalidation/sync_invalidation_listener_unittest.cc', 271 'invalidation/impl/sync_invalidation_listener_unittest.cc',
272 'invalidation/sync_system_resources_unittest.cc', 272 'invalidation/impl/sync_system_resources_unittest.cc',
273 'invalidation/ticl_invalidation_service_unittest.cc', 273 'invalidation/impl/ticl_invalidation_service_unittest.cc',
274 'invalidation/unacked_invalidation_set_unittest.cc', 274 'invalidation/impl/unacked_invalidation_set_unittest.cc',
275 ], 275 ],
276 'json_schema_unittest_sources': [ 276 'json_schema_unittest_sources': [
277 'json_schema/json_schema_validator_unittest.cc', 277 'json_schema/json_schema_validator_unittest.cc',
278 'json_schema/json_schema_validator_unittest_base.cc', 278 'json_schema/json_schema_validator_unittest_base.cc',
279 'json_schema/json_schema_validator_unittest_base.h', 279 'json_schema/json_schema_validator_unittest_base.h',
280 ], 280 ],
281 'keyed_service_unittest_sources': [ 281 'keyed_service_unittest_sources': [
282 'keyed_service/content/browser_context_dependency_manager_unittest.cc', 282 'keyed_service/content/browser_context_dependency_manager_unittest.cc',
283 'keyed_service/core/dependency_graph_unittest.cc', 283 'keyed_service/core/dependency_graph_unittest.cc',
284 ], 284 ],
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
785 'components.gyp:enhanced_bookmarks_test_support', 785 'components.gyp:enhanced_bookmarks_test_support',
786 'components.gyp:favicon_base', 786 'components.gyp:favicon_base',
787 'components.gyp:favicon_core', 787 'components.gyp:favicon_core',
788 'components.gyp:gcm_driver', 788 'components.gyp:gcm_driver',
789 'components.gyp:gcm_driver_test_support', 789 'components.gyp:gcm_driver_test_support',
790 'components.gyp:google_core_browser', 790 'components.gyp:google_core_browser',
791 'components.gyp:history_core_browser', 791 'components.gyp:history_core_browser',
792 'components.gyp:history_core_common', 792 'components.gyp:history_core_common',
793 'components.gyp:history_core_test_support', 793 'components.gyp:history_core_test_support',
794 'components.gyp:instance_id_test_support', 794 'components.gyp:instance_id_test_support',
795 'components.gyp:invalidation', 795 'components.gyp:invalidation_impl',
796 'components.gyp:invalidation_test_support', 796 'components.gyp:invalidation_test_support',
797 'components.gyp:json_schema', 797 'components.gyp:json_schema',
798 'components.gyp:keyed_service_core', 798 'components.gyp:keyed_service_core',
799 'components.gyp:language_usage_metrics', 799 'components.gyp:language_usage_metrics',
800 'components.gyp:leveldb_proto', 800 'components.gyp:leveldb_proto',
801 'components.gyp:leveldb_proto_test_support', 801 'components.gyp:leveldb_proto_test_support',
802 'components.gyp:login', 802 'components.gyp:login',
803 'components.gyp:metrics', 803 'components.gyp:metrics',
804 'components.gyp:metrics_gpu', 804 'components.gyp:metrics_gpu',
805 'components.gyp:metrics_net', 805 'components.gyp:metrics_net',
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
1017 'sources!': [ 1017 'sources!': [
1018 'password_manager/core/browser/password_store_default_unittest.cc', 1018 'password_manager/core/browser/password_store_default_unittest.cc',
1019 ], 1019 ],
1020 }], 1020 }],
1021 ['OS == "android"', { 1021 ['OS == "android"', {
1022 'sources': [ 1022 'sources': [
1023 '<@(cronet_unittest_sources)', 1023 '<@(cronet_unittest_sources)',
1024 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_blo cking_page_unittest.cc', 1024 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_blo cking_page_unittest.cc',
1025 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_res ource_throttle_unittest.cc', 1025 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_res ource_throttle_unittest.cc',
1026 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_ui_ manager_unittest.cc', 1026 'data_reduction_proxy/content/browser/data_reduction_proxy_debug_ui_ manager_unittest.cc',
1027 'invalidation/invalidation_logger_unittest.cc', 1027 'invalidation/impl/invalidation_logger_unittest.cc',
1028 'invalidation/invalidation_service_android_unittest.cc', 1028 'invalidation/impl/invalidation_service_android_unittest.cc',
1029 ], 1029 ],
1030 'sources!': [ 1030 'sources!': [
1031 'gcm_driver/gcm_account_mapper_unittest.cc', 1031 'gcm_driver/gcm_account_mapper_unittest.cc',
1032 'gcm_driver/gcm_channel_status_request_unittest.cc', 1032 'gcm_driver/gcm_channel_status_request_unittest.cc',
1033 'gcm_driver/gcm_client_impl_unittest.cc', 1033 'gcm_driver/gcm_client_impl_unittest.cc',
1034 'gcm_driver/gcm_delayed_task_controller_unittest.cc', 1034 'gcm_driver/gcm_delayed_task_controller_unittest.cc',
1035 'gcm_driver/gcm_driver_desktop_unittest.cc', 1035 'gcm_driver/gcm_driver_desktop_unittest.cc',
1036 'gcm_driver/gcm_stats_recorder_impl_unittest.cc', 1036 'gcm_driver/gcm_stats_recorder_impl_unittest.cc',
1037 'gcm_driver/instance_id/instance_id_driver_unittest.cc', 1037 'gcm_driver/instance_id/instance_id_driver_unittest.cc',
1038 'sessions/session_backend_unittest.cc', 1038 'sessions/session_backend_unittest.cc',
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
1488 ], 1488 ],
1489 'variables': { 1489 'variables': {
1490 'test_suite_name': 'components_unittests', 1490 'test_suite_name': 'components_unittests',
1491 }, 1491 },
1492 'includes': [ '../build/apk_test.gypi' ], 1492 'includes': [ '../build/apk_test.gypi' ],
1493 }, 1493 },
1494 ], 1494 ],
1495 }], 1495 }],
1496 ], 1496 ],
1497 } 1497 }
OLDNEW
« no previous file with comments | « components/BUILD.gn ('k') | components/invalidation.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698