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

Side by Side Diff: components/components_tests.gyp

Issue 1415953004: Move content/renderer input handling for web input events to ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Component rename. Created 5 years, 1 month 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 763 matching lines...) Expand 10 before | Expand all | Expand 10 after
774 ], 774 ],
775 'visitedlink_unittest_sources': [ 775 'visitedlink_unittest_sources': [
776 'visitedlink/test/visitedlink_unittest.cc', 776 'visitedlink/test/visitedlink_unittest.cc',
777 ], 777 ],
778 'wallpaper_unittest_sources': [ 778 'wallpaper_unittest_sources': [
779 'wallpaper/wallpaper_resizer_unittest.cc', 779 'wallpaper/wallpaper_resizer_unittest.cc',
780 ], 780 ],
781 'web_cache_unittest_sources': [ 781 'web_cache_unittest_sources': [
782 'web_cache/browser/web_cache_manager_unittest.cc', 782 'web_cache/browser/web_cache_manager_unittest.cc',
783 ], 783 ],
784 'web_input_unittest_sources': [
785 'web_input/input_handler_proxy_unittest.cc',
786 'web_input/input_scroll_elasticity_controller_unittest.cc',
787 ],
784 'web_modal_unittest_sources': [ 788 'web_modal_unittest_sources': [
785 'web_modal/web_contents_modal_dialog_manager_unittest.cc', 789 'web_modal/web_contents_modal_dialog_manager_unittest.cc',
786 ], 790 ],
787 'web_resource_unittest_sources': [ 791 'web_resource_unittest_sources': [
788 'web_resource/eula_accepted_notifier_unittest.cc', 792 'web_resource/eula_accepted_notifier_unittest.cc',
789 'web_resource/promo_resource_service_mobile_ntp_unittest.cc', 793 'web_resource/promo_resource_service_mobile_ntp_unittest.cc',
790 'web_resource/promo_resource_service_unittest.cc', 794 'web_resource/promo_resource_service_unittest.cc',
791 'web_resource/resource_request_allowed_notifier_unittest.cc', 795 'web_resource/resource_request_allowed_notifier_unittest.cc',
792 ], 796 ],
793 'webcrypto_unittest_sources': [ 797 'webcrypto_unittest_sources': [
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
1117 '<@(safe_browsing_db_unittest_sources)', 1121 '<@(safe_browsing_db_unittest_sources)',
1118 '<@(safe_json_unittest_sources)', 1122 '<@(safe_json_unittest_sources)',
1119 '<@(scheduler_unittest_sources)', 1123 '<@(scheduler_unittest_sources)',
1120 '<@(storage_monitor_unittest_sources)', 1124 '<@(storage_monitor_unittest_sources)',
1121 '<@(tracing_unittest_sources)', 1125 '<@(tracing_unittest_sources)',
1122 '<@(ui_unittest_sources)', 1126 '<@(ui_unittest_sources)',
1123 '<@(visitedlink_unittest_sources)', 1127 '<@(visitedlink_unittest_sources)',
1124 '<@(wallpaper_unittest_sources)', 1128 '<@(wallpaper_unittest_sources)',
1125 '<@(web_cache_unittest_sources)', 1129 '<@(web_cache_unittest_sources)',
1126 '<@(webcrypto_unittest_sources)', 1130 '<@(webcrypto_unittest_sources)',
1131 '<@(web_input_unittest_sources)',
1127 '<@(web_modal_unittest_sources)', 1132 '<@(web_modal_unittest_sources)',
1128 ], 1133 ],
1129 'dependencies': [ 1134 'dependencies': [
1130 '../content/content_shell_and_tests.gyp:test_support_content', 1135 '../content/content_shell_and_tests.gyp:test_support_content',
1131 '../skia/skia.gyp:skia', 1136 '../skia/skia.gyp:skia',
1132 'components.gyp:autofill_content_browser', 1137 'components.gyp:autofill_content_browser',
1133 'components.gyp:autofill_content_renderer', 1138 'components.gyp:autofill_content_renderer',
1134 'components.gyp:autofill_content_test_support', 1139 'components.gyp:autofill_content_test_support',
1135 'components.gyp:certificate_transparency', 1140 'components.gyp:certificate_transparency',
1136 'components.gyp:crash_test_support', 1141 'components.gyp:crash_test_support',
(...skipping 23 matching lines...) Expand all
1160 'components.gyp:safe_json', 1165 'components.gyp:safe_json',
1161 'components.gyp:safe_json_test_support', 1166 'components.gyp:safe_json_test_support',
1162 'components.gyp:sessions_content', 1167 'components.gyp:sessions_content',
1163 'components.gyp:storage_monitor', 1168 'components.gyp:storage_monitor',
1164 'components.gyp:storage_monitor_test_support', 1169 'components.gyp:storage_monitor_test_support',
1165 'components.gyp:url_matcher', 1170 'components.gyp:url_matcher',
1166 'components.gyp:visitedlink_browser', 1171 'components.gyp:visitedlink_browser',
1167 'components.gyp:visitedlink_renderer', 1172 'components.gyp:visitedlink_renderer',
1168 'components.gyp:wallpaper', 1173 'components.gyp:wallpaper',
1169 'components.gyp:web_cache_browser', 1174 'components.gyp:web_cache_browser',
1175 'components.gyp:web_input',
1170 'components.gyp:web_modal', 1176 'components.gyp:web_modal',
1171 'components.gyp:web_modal_test_support', 1177 'components.gyp:web_modal_test_support',
1172 'scheduler/scheduler.gyp:scheduler', 1178 'scheduler/scheduler.gyp:scheduler',
1173 'test_runner/test_runner.gyp:test_runner', 1179 'test_runner/test_runner.gyp:test_runner',
1174 'tracing.gyp:tracing', 1180 'tracing.gyp:tracing',
1175 'webcrypto/webcrypto.gyp:webcrypto', 1181 'webcrypto/webcrypto.gyp:webcrypto',
1176 '../third_party/re2/re2.gyp:re2', 1182 '../third_party/re2/re2.gyp:re2',
1177 ], 1183 ],
1178 'conditions': [ 1184 'conditions': [
1179 ['OS=="android"', { 1185 ['OS=="android"', {
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after
1819 'dependencies': [ 1825 'dependencies': [
1820 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1826 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1821 ], 1827 ],
1822 }], 1828 }],
1823 ], 1829 ],
1824 }, 1830 },
1825 ], 1831 ],
1826 }], 1832 }],
1827 ], 1833 ],
1828 } 1834 }
OLDNEW
« no previous file with comments | « components/components.gyp ('k') | components/web_input.gypi » ('j') | components/web_input/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698