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

Side by Side Diff: components/components_tests.gyp

Issue 493953002: Componentize component_updater: Move a bunch of tests to component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Put test data file move in separate CLs. Created 6 years, 4 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
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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 'autofill/core/common/save_password_progress_logger_unittest.cc', 69 'autofill/core/common/save_password_progress_logger_unittest.cc',
70 'bookmarks/browser/bookmark_codec_unittest.cc', 70 'bookmarks/browser/bookmark_codec_unittest.cc',
71 'bookmarks/browser/bookmark_expanded_state_tracker_unittest.cc', 71 'bookmarks/browser/bookmark_expanded_state_tracker_unittest.cc',
72 'bookmarks/browser/bookmark_index_unittest.cc', 72 'bookmarks/browser/bookmark_index_unittest.cc',
73 'bookmarks/browser/bookmark_model_unittest.cc', 73 'bookmarks/browser/bookmark_model_unittest.cc',
74 'bookmarks/browser/bookmark_utils_unittest.cc', 74 'bookmarks/browser/bookmark_utils_unittest.cc',
75 'breakpad/app/crash_keys_win_unittest.cc', 75 'breakpad/app/crash_keys_win_unittest.cc',
76 'captive_portal/captive_portal_detector_unittest.cc', 76 'captive_portal/captive_portal_detector_unittest.cc',
77 'cloud_devices/common/cloud_devices_urls_unittest.cc', 77 'cloud_devices/common/cloud_devices_urls_unittest.cc',
78 'cloud_devices/common/printer_description_unittest.cc', 78 'cloud_devices/common/printer_description_unittest.cc',
79 'component_updater/test/component_patcher_unittest.cc',
80 'component_updater/test/component_updater_ping_manager_unittest.cc',
81 'component_updater/test/crx_downloader_unittest.cc',
82 'component_updater/test/update_checker_unittest.cc',
83 'component_updater/test/update_response_unittest.cc',
79 'data_reduction_proxy/browser/data_reduction_proxy_auth_request_hand ler_unittest.cc', 84 'data_reduction_proxy/browser/data_reduction_proxy_auth_request_hand ler_unittest.cc',
80 'data_reduction_proxy/browser/data_reduction_proxy_config_service_un ittest.cc', 85 'data_reduction_proxy/browser/data_reduction_proxy_config_service_un ittest.cc',
81 'data_reduction_proxy/browser/data_reduction_proxy_metrics_unittest. cc', 86 'data_reduction_proxy/browser/data_reduction_proxy_metrics_unittest. cc',
82 'data_reduction_proxy/browser/data_reduction_proxy_params_unittest.c c', 87 'data_reduction_proxy/browser/data_reduction_proxy_params_unittest.c c',
83 'data_reduction_proxy/browser/data_reduction_proxy_protocol_unittest .cc', 88 'data_reduction_proxy/browser/data_reduction_proxy_protocol_unittest .cc',
84 'data_reduction_proxy/browser/data_reduction_proxy_settings_unittest .cc', 89 'data_reduction_proxy/browser/data_reduction_proxy_settings_unittest .cc',
85 'data_reduction_proxy/browser/data_reduction_proxy_tamper_detection_ unittest.cc', 90 'data_reduction_proxy/browser/data_reduction_proxy_tamper_detection_ unittest.cc',
86 'data_reduction_proxy/browser/data_reduction_proxy_usage_stats_unitt est.cc', 91 'data_reduction_proxy/browser/data_reduction_proxy_usage_stats_unitt est.cc',
87 'data_reduction_proxy/common/data_reduction_proxy_headers_unittest.c c', 92 'data_reduction_proxy/common/data_reduction_proxy_headers_unittest.c c',
88 'dom_distiller/core/article_entry_unittest.cc', 93 'dom_distiller/core/article_entry_unittest.cc',
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 'dom_distiller/content/dom_distiller_viewer_source_unittest.cc', 412 'dom_distiller/content/dom_distiller_viewer_source_unittest.cc',
408 'power/origin_power_map_unittest.cc', 413 'power/origin_power_map_unittest.cc',
409 'usb_service/usb_context_unittest.cc', 414 'usb_service/usb_context_unittest.cc',
410 'usb_service/usb_device_filter_unittest.cc', 415 'usb_service/usb_device_filter_unittest.cc',
411 ], 416 ],
412 'dependencies': [ 417 'dependencies': [
413 # Dependencies of autofill 418 # Dependencies of autofill
414 'components.gyp:autofill_content_browser', 419 'components.gyp:autofill_content_browser',
415 'components.gyp:autofill_content_renderer', 420 'components.gyp:autofill_content_renderer',
416 'components.gyp:autofill_content_test_support', 421 'components.gyp:autofill_content_test_support',
422
423 # Dependencies of component_updater
424 'components.gyp:component_updater',
425 'components.gyp:component_updater_test_support',
426 '../third_party/libxml/libxml.gyp:libxml',
417 427
418 # Dependencies of dom_distiller 428 # Dependencies of dom_distiller
419 'components.gyp:dom_distiller_content', 429 'components.gyp:dom_distiller_content',
420 430
421 # Dependencies of 431 # Dependencies of
422 # intercept_navigation_resource_throttle_unittest.cc 432 # intercept_navigation_resource_throttle_unittest.cc
423 '../skia/skia.gyp:skia', 433 '../skia/skia.gyp:skia',
424 'components.gyp:navigation_interception', 434 'components.gyp:navigation_interception',
425 435
426 # Dependencies of keyed_service 436 # Dependencies of keyed_service
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
897 'dependencies': [ 907 'dependencies': [
898 '../base/allocator/allocator.gyp:allocator', 908 '../base/allocator/allocator.gyp:allocator',
899 ], 909 ],
900 }], 910 }],
901 ], 911 ],
902 }, 912 },
903 ], 913 ],
904 }], 914 }],
905 ], 915 ],
906 } 916 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698