Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'pyautolib_sources': [ | 7 'pyautolib_sources': [ |
| 8 'app/chrome_command_ids.h', | 8 'app/chrome_command_ids.h', |
| 9 'app/chrome_dll_resource.h', | 9 'app/chrome_dll_resource.h', |
| 10 'common/automation_constants.h', | 10 'common/automation_constants.h', |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 133 'test/automation/browser_proxy.h', | 133 'test/automation/browser_proxy.h', |
| 134 'test/automation/dom_element_proxy.cc', | 134 'test/automation/dom_element_proxy.cc', |
| 135 'test/automation/dom_element_proxy.h', | 135 'test/automation/dom_element_proxy.h', |
| 136 'test/automation/extension_proxy.cc', | 136 'test/automation/extension_proxy.cc', |
| 137 'test/automation/extension_proxy.h', | 137 'test/automation/extension_proxy.h', |
| 138 'test/automation/javascript_execution_controller.cc', | 138 'test/automation/javascript_execution_controller.cc', |
| 139 'test/automation/javascript_execution_controller.h', | 139 'test/automation/javascript_execution_controller.h', |
| 140 'test/automation/javascript_message_utils.h', | 140 'test/automation/javascript_message_utils.h', |
| 141 'test/automation/tab_proxy.cc', | 141 'test/automation/tab_proxy.cc', |
| 142 'test/automation/tab_proxy.h', | 142 'test/automation/tab_proxy.h', |
| 143 'test/automation/value_conversion_traits.cc', | |
| 144 'test/automation/value_conversion_traits.h', | |
| 145 'test/automation/value_conversion_util.h', | |
| 143 'test/automation/window_proxy.cc', | 146 'test/automation/window_proxy.cc', |
| 144 'test/automation/window_proxy.h', | 147 'test/automation/window_proxy.h', |
| 145 'test/bookmark_load_observer.cc', | 148 'test/bookmark_load_observer.cc', |
| 146 'test/bookmark_load_observer.h', | 149 'test/bookmark_load_observer.h', |
| 147 'test/chrome_process_util.cc', | 150 'test/chrome_process_util.cc', |
| 148 'test/chrome_process_util.h', | 151 'test/chrome_process_util.h', |
| 149 'test/chrome_process_util_mac.cc', | 152 'test/chrome_process_util_mac.cc', |
| 150 'test/in_process_browser_test.cc', | 153 'test/in_process_browser_test.cc', |
| 151 'test/in_process_browser_test.h', | 154 'test/in_process_browser_test.h', |
| 152 'test/model_test_utils.cc', | 155 'test/model_test_utils.cc', |
| (...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 839 '../skia/skia.gyp:skia', | 842 '../skia/skia.gyp:skia', |
| 840 '../testing/gtest.gyp:gtest', | 843 '../testing/gtest.gyp:gtest', |
| 841 '../third_party/icu/icu.gyp:icui18n', | 844 '../third_party/icu/icu.gyp:icui18n', |
| 842 '../third_party/icu/icu.gyp:icuuc', | 845 '../third_party/icu/icu.gyp:icuuc', |
| 843 '../third_party/libxml/libxml.gyp:libxml', | 846 '../third_party/libxml/libxml.gyp:libxml', |
| 844 ], | 847 ], |
| 845 'include_dirs': [ | 848 'include_dirs': [ |
| 846 '..', | 849 '..', |
| 847 ], | 850 ], |
| 848 'sources': [ | 851 'sources': [ |
| 849 '../third_party/mongoose/mongoose.h', | 852 'test/webdriver/automation.cc', |
| 850 '../third_party/mongoose/mongoose.c', | |
| 851 '../third_party/webdriver/atoms.h', | |
| 852 'test/webdriver/automation.h', | 853 'test/webdriver/automation.h', |
| 853 'test/webdriver/automation.cc', | 854 'test/webdriver/commands/alert_commands.cc', |
| 855 'test/webdriver/commands/alert_commands.h', | |
| 856 'test/webdriver/commands/command.cc', | |
| 857 'test/webdriver/commands/command.h', | |
| 858 'test/webdriver/commands/cookie_commands.cc', | |
| 859 'test/webdriver/commands/cookie_commands.h', | |
| 860 'test/webdriver/commands/create_session.cc', | |
| 861 'test/webdriver/commands/create_session.h', | |
| 862 'test/webdriver/commands/execute_async_script_command.cc', | |
| 863 'test/webdriver/commands/execute_async_script_command.h', | |
| 864 'test/webdriver/commands/execute_command.cc', | |
| 865 'test/webdriver/commands/execute_command.h', | |
| 866 'test/webdriver/commands/find_element_commands.cc', | |
| 867 'test/webdriver/commands/find_element_commands.h', | |
| 868 'test/webdriver/commands/navigate_commands.cc', | |
| 869 'test/webdriver/commands/navigate_commands.h', | |
| 870 'test/webdriver/commands/mouse_commands.cc', | |
| 871 'test/webdriver/commands/mouse_commands.h', | |
| 872 'test/webdriver/commands/response.h', | |
| 873 'test/webdriver/commands/response.cc', | |
| 874 'test/webdriver/commands/screenshot_command.cc', | |
| 875 'test/webdriver/commands/screenshot_command.h', | |
| 876 'test/webdriver/commands/session_with_id.cc', | |
| 877 'test/webdriver/commands/session_with_id.h', | |
| 878 'test/webdriver/commands/set_timeout_commands.cc', | |
| 879 'test/webdriver/commands/set_timeout_commands.h', | |
| 880 'test/webdriver/commands/source_command.cc', | |
| 881 'test/webdriver/commands/source_command.h', | |
| 882 'test/webdriver/commands/target_locator_commands.cc', | |
| 883 'test/webdriver/commands/target_locator_commands.h', | |
| 884 'test/webdriver/commands/title_command.cc', | |
| 885 'test/webdriver/commands/title_command.h', | |
| 886 'test/webdriver/commands/url_command.cc', | |
| 887 'test/webdriver/commands/url_command.h', | |
| 888 'test/webdriver/commands/webdriver_command.cc', | |
| 889 'test/webdriver/commands/webdriver_command.h', | |
| 890 'test/webdriver/commands/webelement_commands.cc', | |
| 891 'test/webdriver/commands/webelement_commands.h', | |
| 892 'test/webdriver/dispatch.cc', | |
| 854 'test/webdriver/dispatch.h', | 893 'test/webdriver/dispatch.h', |
| 855 'test/webdriver/dispatch.cc', | 894 'test/webdriver/frame_path.cc', |
| 856 'test/webdriver/frame_path.h', | 895 'test/webdriver/frame_path.h', |
| 857 'test/webdriver/frame_path.cc', | 896 'test/webdriver/http_response.cc', |
| 858 'test/webdriver/http_response.h', | 897 'test/webdriver/http_response.h', |
| 859 'test/webdriver/http_response.cc', | |
| 860 'test/webdriver/keycode_text_conversion.h', | |
| 861 'test/webdriver/keycode_text_conversion_linux.cc', | 898 'test/webdriver/keycode_text_conversion_linux.cc', |
| 862 'test/webdriver/keycode_text_conversion_mac.mm', | 899 'test/webdriver/keycode_text_conversion_mac.mm', |
| 863 'test/webdriver/keycode_text_conversion_win.cc', | 900 'test/webdriver/keycode_text_conversion_win.cc', |
| 901 'test/webdriver/keycode_text_conversion.h', | |
| 902 'test/webdriver/keymap.cc', | |
| 864 'test/webdriver/keymap.h', | 903 'test/webdriver/keymap.h', |
| 865 'test/webdriver/keymap.cc', | 904 'test/webdriver/session.cc', |
| 866 'test/webdriver/session.h', | 905 'test/webdriver/session.h', |
| 867 'test/webdriver/session.cc', | 906 'test/webdriver/session_manager.cc', |
| 868 'test/webdriver/session_manager.h', | 907 'test/webdriver/session_manager.h', |
| 869 'test/webdriver/session_manager.cc', | 908 'test/webdriver/webdriver_basic_types.cc', |
| 870 'test/webdriver/utility_functions.h', | 909 'test/webdriver/webdriver_basic_types.h', |
| 871 'test/webdriver/utility_functions.cc', | 910 'test/webdriver/webdriver_error.cc', |
| 872 'test/webdriver/webdriver_error.h', | 911 'test/webdriver/webdriver_error.h', |
| 873 'test/webdriver/webdriver_error.cc', | 912 'test/webdriver/webdriver_key_converter.cc', |
| 913 'test/webdriver/webdriver_key_converter.h', | |
| 914 'test/webdriver/webdriver_logging.cc', | |
| 874 'test/webdriver/webdriver_logging.h', | 915 'test/webdriver/webdriver_logging.h', |
| 875 'test/webdriver/webdriver_logging.cc', | 916 'test/webdriver/webdriver_util.cc', |
| 876 'test/webdriver/webdriver_key_converter.h', | 917 'test/webdriver/webdriver_util.h', |
| 877 'test/webdriver/webdriver_key_converter.cc', | 918 'test/webdriver/web_element_id.cc', |
| 878 'test/webdriver/web_element_id.h', | 919 'test/webdriver/web_element_id.h', |
| 879 'test/webdriver/web_element_id.cc', | 920 '../third_party/mongoose/mongoose.c', |
|
Paweł Hajdan Jr.
2011/08/02 20:04:47
How about making a separate target for it? Should
kkania
2011/08/03 17:07:56
Done.
| |
| 880 'test/webdriver/commands/alert_commands.h', | 921 '../third_party/mongoose/mongoose.h', |
| 881 'test/webdriver/commands/alert_commands.cc', | 922 '../third_party/webdriver/atoms.h', |
| 882 'test/webdriver/commands/command.h', | |
| 883 'test/webdriver/commands/command.cc', | |
| 884 'test/webdriver/commands/cookie_commands.h', | |
| 885 'test/webdriver/commands/cookie_commands.cc', | |
| 886 'test/webdriver/commands/create_session.h', | |
| 887 'test/webdriver/commands/create_session.cc', | |
| 888 'test/webdriver/commands/execute_async_script_command.h', | |
| 889 'test/webdriver/commands/execute_async_script_command.cc', | |
| 890 'test/webdriver/commands/execute_command.h', | |
| 891 'test/webdriver/commands/execute_command.cc', | |
| 892 'test/webdriver/commands/find_element_commands.h', | |
| 893 'test/webdriver/commands/find_element_commands.cc', | |
| 894 'test/webdriver/commands/navigate_commands.h', | |
| 895 'test/webdriver/commands/navigate_commands.cc', | |
| 896 'test/webdriver/commands/mouse_commands.h', | |
| 897 'test/webdriver/commands/mouse_commands.cc', | |
| 898 'test/webdriver/commands/response.cc', | |
| 899 'test/webdriver/commands/response.h', | |
| 900 'test/webdriver/commands/screenshot_command.h', | |
| 901 'test/webdriver/commands/screenshot_command.cc', | |
| 902 'test/webdriver/commands/session_with_id.h', | |
| 903 'test/webdriver/commands/session_with_id.cc', | |
| 904 'test/webdriver/commands/set_timeout_commands.h', | |
| 905 'test/webdriver/commands/set_timeout_commands.cc', | |
| 906 'test/webdriver/commands/source_command.h', | |
| 907 'test/webdriver/commands/source_command.cc', | |
| 908 'test/webdriver/commands/target_locator_commands.h', | |
| 909 'test/webdriver/commands/target_locator_commands.cc', | |
| 910 'test/webdriver/commands/title_command.h', | |
| 911 'test/webdriver/commands/title_command.cc', | |
| 912 'test/webdriver/commands/url_command.h', | |
| 913 'test/webdriver/commands/url_command.cc', | |
| 914 'test/webdriver/commands/webdriver_command.h', | |
| 915 'test/webdriver/commands/webdriver_command.cc', | |
| 916 'test/webdriver/commands/webelement_commands.h', | |
| 917 'test/webdriver/commands/webelement_commands.cc', | |
| 918 ], | 923 ], |
| 919 'conditions': [ | 924 'conditions': [ |
| 920 ['toolkit_uses_gtk == 1', { | 925 ['toolkit_uses_gtk == 1', { |
| 921 'dependencies': [ | 926 'dependencies': [ |
| 922 '../build/linux/system.gyp:gtk', | 927 '../build/linux/system.gyp:gtk', |
| 923 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 928 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 924 ], | 929 ], |
| 925 }], | 930 }], |
| 926 ['OS=="linux" and toolkit_views==1', { | 931 ['OS=="linux" and toolkit_views==1', { |
| 927 'dependencies': [ | 932 'dependencies': [ |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 993 'include_dirs': [ | 998 'include_dirs': [ |
| 994 '..', | 999 '..', |
| 995 ], | 1000 ], |
| 996 'sources': [ | 1001 'sources': [ |
| 997 '../base/test/run_all_unittests.cc', | 1002 '../base/test/run_all_unittests.cc', |
| 998 'test/webdriver/commands/set_timeout_commands_unittest.cc', | 1003 'test/webdriver/commands/set_timeout_commands_unittest.cc', |
| 999 'test/webdriver/dispatch_unittest.cc', | 1004 'test/webdriver/dispatch_unittest.cc', |
| 1000 'test/webdriver/frame_path_unittest.cc', | 1005 'test/webdriver/frame_path_unittest.cc', |
| 1001 'test/webdriver/http_response_unittest.cc', | 1006 'test/webdriver/http_response_unittest.cc', |
| 1002 'test/webdriver/keycode_text_conversion_unittest.cc', | 1007 'test/webdriver/keycode_text_conversion_unittest.cc', |
| 1003 'test/webdriver/utility_functions_unittest.cc', | |
| 1004 'test/webdriver/webdriver_key_converter_unittest.cc', | 1008 'test/webdriver/webdriver_key_converter_unittest.cc', |
| 1005 'test/webdriver/webdriver_test_util.cc', | 1009 'test/webdriver/webdriver_test_util.cc', |
| 1006 'test/webdriver/webdriver_test_util.h', | 1010 'test/webdriver/webdriver_test_util.h', |
| 1011 'test/webdriver/webdriver_util_unittest.cc', | |
| 1007 ], | 1012 ], |
| 1008 'conditions': [ | 1013 'conditions': [ |
| 1009 ['OS=="win"', { | 1014 ['OS=="win"', { |
| 1010 'conditions': [ | 1015 'conditions': [ |
| 1011 ['win_use_allocator_shim==1', { | 1016 ['win_use_allocator_shim==1', { |
| 1012 'dependencies': [ | 1017 'dependencies': [ |
| 1013 '<(allocator_target)', | 1018 '<(allocator_target)', |
| 1014 ], | 1019 ], |
| 1015 }], | 1020 }], |
| 1016 ], | 1021 ], |
| (...skipping 3342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 4359 # Use outputs of this action as inputs for the main target build. | 4364 # Use outputs of this action as inputs for the main target build. |
| 4360 # Seems as a misnomer but makes this happy on Linux (scons). | 4365 # Seems as a misnomer but makes this happy on Linux (scons). |
| 4361 'process_outputs_as_sources': 1, | 4366 'process_outputs_as_sources': 1, |
| 4362 }, | 4367 }, |
| 4363 ], # 'actions' | 4368 ], # 'actions' |
| 4364 }, | 4369 }, |
| 4365 ] | 4370 ] |
| 4366 }], # 'coverage!=0' | 4371 }], # 'coverage!=0' |
| 4367 ], # 'conditions' | 4372 ], # 'conditions' |
| 4368 } | 4373 } |
| OLD | NEW |