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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 1068093002: Refactoring for InputMethodAuraLinux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add more tests and support verify event sequence. Created 5 years, 8 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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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 'variables': { 5 'variables': {
6 'chrome_unit_tests_sources': [ 6 'chrome_unit_tests_sources': [
7 '../components/autofill/content/renderer/test_password_autofill_agent.cc', 7 '../components/autofill/content/renderer/test_password_autofill_agent.cc',
8 '../components/autofill/content/renderer/test_password_autofill_agent.h', 8 '../components/autofill/content/renderer/test_password_autofill_agent.h',
9 '../components/autofill/content/renderer/test_password_generation_agent.cc ', 9 '../components/autofill/content/renderer/test_password_generation_agent.cc ',
10 '../components/autofill/content/renderer/test_password_generation_agent.h' , 10 '../components/autofill/content/renderer/test_password_generation_agent.h' ,
(...skipping 938 matching lines...) Expand 10 before | Expand all | Expand 10 after
949 'browser/ui/ash/multi_user/multi_user_context_menu_chromeos_unittest.cc', 949 'browser/ui/ash/multi_user/multi_user_context_menu_chromeos_unittest.cc',
950 'browser/ui/ash/multi_user/multi_user_notification_blocker_chromeos_unitte st.cc', 950 'browser/ui/ash/multi_user/multi_user_notification_blocker_chromeos_unitte st.cc',
951 'browser/ui/ash/multi_user/multi_user_window_manager_chromeos_unittest.cc' , 951 'browser/ui/ash/multi_user/multi_user_window_manager_chromeos_unittest.cc' ,
952 'browser/ui/ash/session_state_delegate_chromeos_unittest.cc', 952 'browser/ui/ash/session_state_delegate_chromeos_unittest.cc',
953 'browser/ui/ash/window_positioner_unittest.cc', 953 'browser/ui/ash/window_positioner_unittest.cc',
954 'browser/ui/window_sizer/window_sizer_ash_unittest.cc', 954 'browser/ui/window_sizer/window_sizer_ash_unittest.cc',
955 ], 955 ],
956 'chrome_unit_tests_task_manager_sources': [ 956 'chrome_unit_tests_task_manager_sources': [
957 # New Task Manager Tests Sources: 957 # New Task Manager Tests Sources:
958 'browser/task_management/providers/browser_process_task_unittest.cc', 958 'browser/task_management/providers/browser_process_task_unittest.cc',
959 959
960 # Old Task Manager Tests Sources: 960 # Old Task Manager Tests Sources:
961 'browser/task_manager/task_manager_unittest.cc', 961 'browser/task_manager/task_manager_unittest.cc',
962 'browser/task_manager/task_manager_util_unittest.cc', 962 'browser/task_manager/task_manager_util_unittest.cc',
963 ], 963 ],
964 'chrome_unit_tests_mdns_sources': [ 964 'chrome_unit_tests_mdns_sources': [
965 'browser/local_discovery/privet_device_lister_unittest.cc', 965 'browser/local_discovery/privet_device_lister_unittest.cc',
966 'browser/local_discovery/privet_local_printer_lister_unittest.cc', 966 'browser/local_discovery/privet_local_printer_lister_unittest.cc',
967 'browser/local_discovery/privet_notifications_unittest.cc', 967 'browser/local_discovery/privet_notifications_unittest.cc',
968 'common/local_discovery/local_domain_resolver_unittest.cc', 968 'common/local_discovery/local_domain_resolver_unittest.cc',
969 'common/local_discovery/service_discovery_client_unittest.cc', 969 'common/local_discovery/service_discovery_client_unittest.cc',
(...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after
2248 ], 2248 ],
2249 }], 2249 }],
2250 ['chromeos==0 and OS=="linux"', { 2250 ['chromeos==0 and OS=="linux"', {
2251 'sources': [ '<@(chrome_unit_tests_desktop_linux_sources)' ], 2251 'sources': [ '<@(chrome_unit_tests_desktop_linux_sources)' ],
2252 }], 2252 }],
2253 ['chromeos==0 and use_ozone==0 and OS=="linux"', { 2253 ['chromeos==0 and use_ozone==0 and OS=="linux"', {
2254 'dependencies': [ 2254 'dependencies': [
2255 'browser/ui/libgtk2ui/libgtk2ui.gyp:gtk2ui', 2255 'browser/ui/libgtk2ui/libgtk2ui.gyp:gtk2ui',
2256 '../build/linux/system.gyp:gio', 2256 '../build/linux/system.gyp:gio',
2257 ], 2257 ],
2258 'conditions': [
2259 ['component != "shared_library"', {
2260 # TODO(erg): This file does not compile in shared library mode
2261 # because it is reaching into the internals of libgtk2ui, which
2262 # shouldn't be linked with the rest of chrome. This should either
2263 # be fixed by creating a separate unit test target, or by deleting
2264 # the test.
2265 'sources': [
2266 'browser/ui/libgtk2ui/x11_input_method_context_impl_gtk2_unittes t.cc',
2267 ],
2268 }],
2269 ],
2270 }], 2258 }],
2271 ['use_aura==1 or toolkit_views==1', { 2259 ['use_aura==1 or toolkit_views==1', {
2272 'dependencies': [ 2260 'dependencies': [
2273 '../ui/events/events.gyp:events_test_support', 2261 '../ui/events/events.gyp:events_test_support',
2274 ], 2262 ],
2275 }], 2263 }],
2276 ['enable_task_manager==1', { 2264 ['enable_task_manager==1', {
2277 'sources': [ '<@(chrome_unit_tests_task_manager_sources)' ], 2265 'sources': [ '<@(chrome_unit_tests_task_manager_sources)' ],
2278 }], 2266 }],
2279 ['enable_mdns==1', { 2267 ['enable_mdns==1', {
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
2800 'dependencies': [ 2788 'dependencies': [
2801 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2789 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2802 ], 2790 ],
2803 }], 2791 }],
2804 ], 2792 ],
2805 }, 2793 },
2806 ], 2794 ],
2807 }], 2795 }],
2808 ], # 'conditions' 2796 ], # 'conditions'
2809 } 2797 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698