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

Side by Side Diff: components/components_tests.gyp

Issue 1028543002: Turn the utility process image decoder into a Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 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
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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 'history/core/browser/history_types_unittest.cc', 228 'history/core/browser/history_types_unittest.cc',
229 'history/core/browser/top_sites_cache_unittest.cc', 229 'history/core/browser/top_sites_cache_unittest.cc',
230 'history/core/browser/top_sites_database_unittest.cc', 230 'history/core/browser/top_sites_database_unittest.cc',
231 'history/core/browser/url_database_unittest.cc', 231 'history/core/browser/url_database_unittest.cc',
232 'history/core/browser/url_utils_unittest.cc', 232 'history/core/browser/url_utils_unittest.cc',
233 'history/core/browser/visit_database_unittest.cc', 233 'history/core/browser/visit_database_unittest.cc',
234 'history/core/browser/visit_filter_unittest.cc', 234 'history/core/browser/visit_filter_unittest.cc',
235 'history/core/browser/visit_tracker_unittest.cc', 235 'history/core/browser/visit_tracker_unittest.cc',
236 'history/core/common/thumbnail_score_unittest.cc', 236 'history/core/common/thumbnail_score_unittest.cc',
237 ], 237 ],
238 'image_decoder_unittest_sources': [
239 'image_decoder/image_decoder_impl_unittest.cc',
240 ],
238 'instance_id_unittest_sources': [ 241 'instance_id_unittest_sources': [
239 'gcm_driver/instance_id/instance_id_driver_unittest.cc', 242 'gcm_driver/instance_id/instance_id_driver_unittest.cc',
240 ], 243 ],
241 'invalidation_unittest_sources': [ 244 'invalidation_unittest_sources': [
242 'invalidation/fake_invalidator_unittest.cc', 245 'invalidation/fake_invalidator_unittest.cc',
243 'invalidation/gcm_network_channel_unittest.cc', 246 'invalidation/gcm_network_channel_unittest.cc',
244 'invalidation/invalidation_logger_unittest.cc', 247 'invalidation/invalidation_logger_unittest.cc',
245 'invalidation/invalidation_notifier_unittest.cc', 248 'invalidation/invalidation_notifier_unittest.cc',
246 'invalidation/invalidator_registrar_unittest.cc', 249 'invalidation/invalidator_registrar_unittest.cc',
247 'invalidation/non_blocking_invalidator_unittest.cc', 250 'invalidation/non_blocking_invalidator_unittest.cc',
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
843 [ 'cld_version==0 or cld_version==2', { 846 [ 'cld_version==0 or cld_version==2', {
844 'dependencies': [ 847 'dependencies': [
845 # Unit tests should always use statically-linked CLD data. 848 # Unit tests should always use statically-linked CLD data.
846 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_static', ], 849 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_static', ],
847 }], 850 }],
848 ['OS != "ios"', { 851 ['OS != "ios"', {
849 'sources': [ 852 'sources': [
850 '<@(devtools_http_handler_unittest_sources)', 853 '<@(devtools_http_handler_unittest_sources)',
851 '<@(error_page_unittest_sources)', 854 '<@(error_page_unittest_sources)',
852 '<@(guest_view_unittest_sources)', 855 '<@(guest_view_unittest_sources)',
856 '<@(image_decoder_unittest_sources)',
853 '<@(navigation_interception_unittest_sources)', 857 '<@(navigation_interception_unittest_sources)',
854 '<@(network_hints_unittest_sources)', 858 '<@(network_hints_unittest_sources)',
855 '<@(power_unittest_sources)', 859 '<@(power_unittest_sources)',
856 '<@(scheduler_unittest_sources)', 860 '<@(scheduler_unittest_sources)',
857 '<@(storage_monitor_unittest_sources)', 861 '<@(storage_monitor_unittest_sources)',
858 '<@(ui_unittest_sources)', 862 '<@(ui_unittest_sources)',
859 '<@(visitedlink_unittest_sources)', 863 '<@(visitedlink_unittest_sources)',
860 '<@(web_cache_unittest_sources)', 864 '<@(web_cache_unittest_sources)',
861 '<@(webcrypto_unittest_sources)', 865 '<@(webcrypto_unittest_sources)',
862 '<@(web_modal_unittest_sources)', 866 '<@(web_modal_unittest_sources)',
863 ], 867 ],
864 'dependencies': [ 868 'dependencies': [
865 '../skia/skia.gyp:skia', 869 '../skia/skia.gyp:skia',
866 'components.gyp:autofill_content_browser', 870 'components.gyp:autofill_content_browser',
867 'components.gyp:autofill_content_renderer', 871 'components.gyp:autofill_content_renderer',
868 'components.gyp:autofill_content_test_support', 872 'components.gyp:autofill_content_test_support',
869 'components.gyp:data_reduction_proxy_content_browser', 873 'components.gyp:data_reduction_proxy_content_browser',
870 'components.gyp:devtools_http_handler', 874 'components.gyp:devtools_http_handler',
871 'components.gyp:dom_distiller_content', 875 'components.gyp:dom_distiller_content',
872 'components.gyp:error_page_renderer', 876 'components.gyp:error_page_renderer',
873 'components.gyp:favicon_content', 877 'components.gyp:favicon_content',
874 'components.gyp:history_content_browser', 878 'components.gyp:history_content_browser',
879 'components.gyp:image_decoder',
875 'components.gyp:keyed_service_content', 880 'components.gyp:keyed_service_content',
876 'components.gyp:navigation_interception', 881 'components.gyp:navigation_interception',
877 'components.gyp:network_hints_renderer', 882 'components.gyp:network_hints_renderer',
878 'components.gyp:password_manager_content_browser', 883 'components.gyp:password_manager_content_browser',
879 'components.gyp:password_manager_content_common', 884 'components.gyp:password_manager_content_common',
880 'components.gyp:power', 885 'components.gyp:power',
881 'components.gyp:precache_content', 886 'components.gyp:precache_content',
882 'components.gyp:sessions_content', 887 'components.gyp:sessions_content',
883 'components.gyp:storage_monitor', 888 'components.gyp:storage_monitor',
884 'components.gyp:storage_monitor_test_support', 889 'components.gyp:storage_monitor_test_support',
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
1449 ], 1454 ],
1450 'variables': { 1455 'variables': {
1451 'test_suite_name': 'components_unittests', 1456 'test_suite_name': 'components_unittests',
1452 }, 1457 },
1453 'includes': [ '../build/apk_test.gypi' ], 1458 'includes': [ '../build/apk_test.gypi' ],
1454 }, 1459 },
1455 ], 1460 ],
1456 }], 1461 }],
1457 ], 1462 ],
1458 } 1463 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698