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

Side by Side Diff: components/components_tests.gyp

Issue 1387253004: [Sync] Creating sync_sessions component, moving revisit logic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing test_support target. Created 5 years, 2 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/components.gyp ('k') | components/sync_driver.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 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
649 'sync_driver/about_sync_util_unittest.cc', 649 'sync_driver/about_sync_util_unittest.cc',
650 'sync_driver/backup_rollback_controller_unittest.cc', 650 'sync_driver/backup_rollback_controller_unittest.cc',
651 'sync_driver/data_type_manager_impl_unittest.cc', 651 'sync_driver/data_type_manager_impl_unittest.cc',
652 'sync_driver/device_info_data_type_controller_unittest.cc', 652 'sync_driver/device_info_data_type_controller_unittest.cc',
653 'sync_driver/device_info_sync_service_unittest.cc', 653 'sync_driver/device_info_sync_service_unittest.cc',
654 'sync_driver/favicon_cache_unittest.cc', 654 'sync_driver/favicon_cache_unittest.cc',
655 'sync_driver/generic_change_processor_unittest.cc', 655 'sync_driver/generic_change_processor_unittest.cc',
656 'sync_driver/model_association_manager_unittest.cc', 656 'sync_driver/model_association_manager_unittest.cc',
657 'sync_driver/non_blocking_data_type_controller_unittest.cc', 657 'sync_driver/non_blocking_data_type_controller_unittest.cc',
658 'sync_driver/non_ui_data_type_controller_unittest.cc', 658 'sync_driver/non_ui_data_type_controller_unittest.cc',
659 'sync_driver/revisit/current_tab_matcher_unittest.cc',
660 'sync_driver/revisit/offset_tab_matcher_unittest.cc',
661 'sync_driver/revisit/sessions_page_revisit_observer_unittest.cc',
662 'sync_driver/shared_change_processor_unittest.cc', 659 'sync_driver/shared_change_processor_unittest.cc',
663 'sync_driver/sync_prefs_unittest.cc', 660 'sync_driver/sync_prefs_unittest.cc',
664 'sync_driver/sync_stopped_reporter_unittest.cc', 661 'sync_driver/sync_stopped_reporter_unittest.cc',
665 'sync_driver/sync_util_unittest.cc', 662 'sync_driver/sync_util_unittest.cc',
666 'sync_driver/system_encryptor_unittest.cc', 663 'sync_driver/system_encryptor_unittest.cc',
667 'sync_driver/tab_node_pool_unittest.cc', 664 'sync_driver/tab_node_pool_unittest.cc',
668 'sync_driver/ui_data_type_controller_unittest.cc', 665 'sync_driver/ui_data_type_controller_unittest.cc',
669 ], 666 ],
667 'sync_sessions_unittest_sources': [
668 'sync_sessions/revisit/current_tab_matcher_unittest.cc',
669 'sync_sessions/revisit/offset_tab_matcher_unittest.cc',
670 'sync_sessions/revisit/sessions_page_revisit_observer_unittest.cc',
671 ],
670 'syncable_prefs_unittest_sources': [ 672 'syncable_prefs_unittest_sources': [
671 'syncable_prefs/pref_model_associator_unittest.cc', 673 'syncable_prefs/pref_model_associator_unittest.cc',
672 'syncable_prefs/pref_service_syncable_unittest.cc', 674 'syncable_prefs/pref_service_syncable_unittest.cc',
673 ], 675 ],
674 'tracing_unittest_sources': [ 676 'tracing_unittest_sources': [
675 'tracing/trace_config_file_unittest.cc', 677 'tracing/trace_config_file_unittest.cc',
676 ], 678 ],
677 'translate_unittest_sources': [ 679 'translate_unittest_sources': [
678 'translate/core/browser/language_state_unittest.cc', 680 'translate/core/browser/language_state_unittest.cc',
679 'translate/core/browser/translate_browser_metrics_unittest.cc', 681 'translate/core/browser/translate_browser_metrics_unittest.cc',
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
855 '<@(proxy_config_unittest_sources)', 857 '<@(proxy_config_unittest_sources)',
856 '<@(query_parser_unittest_sources)', 858 '<@(query_parser_unittest_sources)',
857 '<@(rappor_unittest_sources)', 859 '<@(rappor_unittest_sources)',
858 '<@(search_engines_unittest_sources)', 860 '<@(search_engines_unittest_sources)',
859 '<@(search_provider_logos_unittest_sources)', 861 '<@(search_provider_logos_unittest_sources)',
860 '<@(search_unittest_sources)', 862 '<@(search_unittest_sources)',
861 '<@(sessions_unittest_sources)', 863 '<@(sessions_unittest_sources)',
862 '<@(signin_unittest_sources)', 864 '<@(signin_unittest_sources)',
863 '<@(suggestions_unittest_sources)', 865 '<@(suggestions_unittest_sources)',
864 '<@(sync_driver_unittest_sources)', 866 '<@(sync_driver_unittest_sources)',
867 '<@(sync_sessions_unittest_sources)',
865 '<@(syncable_prefs_unittest_sources)', 868 '<@(syncable_prefs_unittest_sources)',
866 '<@(translate_unittest_sources)', 869 '<@(translate_unittest_sources)',
867 '<@(undo_unittest_sources)', 870 '<@(undo_unittest_sources)',
868 '<@(update_client_unittest_sources)', 871 '<@(update_client_unittest_sources)',
869 '<@(upload_list_unittest_sources)', 872 '<@(upload_list_unittest_sources)',
870 '<@(url_formatter_unittest_sources)', 873 '<@(url_formatter_unittest_sources)',
871 '<@(url_matcher_unittest_sources)', 874 '<@(url_matcher_unittest_sources)',
872 '<@(user_prefs_unittest_sources)', 875 '<@(user_prefs_unittest_sources)',
873 '<@(variations_unittest_sources)', 876 '<@(variations_unittest_sources)',
874 '<@(wallpaper_unittest_sources)', 877 '<@(wallpaper_unittest_sources)',
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
976 'components.gyp:rappor_test_support', 979 'components.gyp:rappor_test_support',
977 'components.gyp:search', 980 'components.gyp:search',
978 'components.gyp:search_engines', 981 'components.gyp:search_engines',
979 'components.gyp:search_engines_test_support', 982 'components.gyp:search_engines_test_support',
980 'components.gyp:search_provider_logos', 983 'components.gyp:search_provider_logos',
981 'components.gyp:sessions_test_support', 984 'components.gyp:sessions_test_support',
982 'components.gyp:signin_core_browser', 985 'components.gyp:signin_core_browser',
983 'components.gyp:signin_core_browser_test_support', 986 'components.gyp:signin_core_browser_test_support',
984 'components.gyp:suggestions', 987 'components.gyp:suggestions',
985 'components.gyp:sync_driver_test_support', 988 'components.gyp:sync_driver_test_support',
989 'components.gyp:sync_sessions',
986 'components.gyp:syncable_prefs_test_support', 990 'components.gyp:syncable_prefs_test_support',
987 'components.gyp:translate_core_browser', 991 'components.gyp:translate_core_browser',
988 'components.gyp:translate_core_common', 992 'components.gyp:translate_core_common',
989 'components.gyp:translate_core_language_detection', 993 'components.gyp:translate_core_language_detection',
990 'components.gyp:ui_zoom', 994 'components.gyp:ui_zoom',
991 'components.gyp:undo_component', 995 'components.gyp:undo_component',
992 'components.gyp:update_client', 996 'components.gyp:update_client',
993 'components.gyp:update_client_test_support', 997 'components.gyp:update_client_test_support',
994 'components.gyp:upload_list', 998 'components.gyp:upload_list',
995 'components.gyp:url_matcher', 999 'components.gyp:url_matcher',
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
1730 'dependencies': [ 1734 'dependencies': [
1731 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1735 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1732 ], 1736 ],
1733 }], 1737 }],
1734 ], 1738 ],
1735 }, 1739 },
1736 ], 1740 ],
1737 }], 1741 }],
1738 ], 1742 ],
1739 } 1743 }
OLDNEW
« no previous file with comments | « components/components.gyp ('k') | components/sync_driver.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698