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 910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
921 'test/webdriver/http_response.cc', | 921 'test/webdriver/http_response.cc', |
922 'test/webdriver/http_response.h', | 922 'test/webdriver/http_response.h', |
923 'test/webdriver/keycode_text_conversion.h', | 923 'test/webdriver/keycode_text_conversion.h', |
924 'test/webdriver/keycode_text_conversion_linux.cc', | 924 'test/webdriver/keycode_text_conversion_linux.cc', |
925 'test/webdriver/keycode_text_conversion_mac.mm', | 925 'test/webdriver/keycode_text_conversion_mac.mm', |
926 'test/webdriver/keycode_text_conversion_win.cc', | 926 'test/webdriver/keycode_text_conversion_win.cc', |
927 'test/webdriver/webdriver_automation.cc', | 927 'test/webdriver/webdriver_automation.cc', |
928 'test/webdriver/webdriver_automation.h', | 928 'test/webdriver/webdriver_automation.h', |
929 'test/webdriver/webdriver_basic_types.cc', | 929 'test/webdriver/webdriver_basic_types.cc', |
930 'test/webdriver/webdriver_basic_types.h', | 930 'test/webdriver/webdriver_basic_types.h', |
| 931 'test/webdriver/webdriver_capabilities_parser.cc', |
| 932 'test/webdriver/webdriver_capabilities_parser.h', |
931 'test/webdriver/webdriver_dispatch.cc', | 933 'test/webdriver/webdriver_dispatch.cc', |
932 'test/webdriver/webdriver_dispatch.h', | 934 'test/webdriver/webdriver_dispatch.h', |
933 'test/webdriver/webdriver_element_id.cc', | 935 'test/webdriver/webdriver_element_id.cc', |
934 'test/webdriver/webdriver_element_id.h', | 936 'test/webdriver/webdriver_element_id.h', |
935 'test/webdriver/webdriver_error.cc', | 937 'test/webdriver/webdriver_error.cc', |
936 'test/webdriver/webdriver_error.h', | 938 'test/webdriver/webdriver_error.h', |
937 'test/webdriver/webdriver_key_converter.cc', | 939 'test/webdriver/webdriver_key_converter.cc', |
938 'test/webdriver/webdriver_key_converter.h', | 940 'test/webdriver/webdriver_key_converter.h', |
939 'test/webdriver/webdriver_logging.cc', | 941 'test/webdriver/webdriver_logging.cc', |
940 'test/webdriver/webdriver_logging.h', | 942 'test/webdriver/webdriver_logging.h', |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1022 ], | 1024 ], |
1023 'include_dirs': [ | 1025 'include_dirs': [ |
1024 '..', | 1026 '..', |
1025 ], | 1027 ], |
1026 'sources': [ | 1028 'sources': [ |
1027 '../base/test/run_all_unittests.cc', | 1029 '../base/test/run_all_unittests.cc', |
1028 'test/webdriver/commands/set_timeout_commands_unittest.cc', | 1030 'test/webdriver/commands/set_timeout_commands_unittest.cc', |
1029 'test/webdriver/frame_path_unittest.cc', | 1031 'test/webdriver/frame_path_unittest.cc', |
1030 'test/webdriver/http_response_unittest.cc', | 1032 'test/webdriver/http_response_unittest.cc', |
1031 'test/webdriver/keycode_text_conversion_unittest.cc', | 1033 'test/webdriver/keycode_text_conversion_unittest.cc', |
| 1034 'test/webdriver/webdriver_capabilities_parser_unittest.cc', |
1032 'test/webdriver/webdriver_dispatch_unittest.cc', | 1035 'test/webdriver/webdriver_dispatch_unittest.cc', |
1033 'test/webdriver/webdriver_key_converter_unittest.cc', | 1036 'test/webdriver/webdriver_key_converter_unittest.cc', |
1034 'test/webdriver/webdriver_test_util.cc', | 1037 'test/webdriver/webdriver_test_util.cc', |
1035 'test/webdriver/webdriver_test_util.h', | 1038 'test/webdriver/webdriver_test_util.h', |
1036 'test/webdriver/webdriver_util_unittest.cc', | 1039 'test/webdriver/webdriver_util_unittest.cc', |
1037 ], | 1040 ], |
1038 'conditions': [ | 1041 'conditions': [ |
1039 ['OS=="win"', { | 1042 ['OS=="win"', { |
1040 'conditions': [ | 1043 'conditions': [ |
1041 ['win_use_allocator_shim==1', { | 1044 ['win_use_allocator_shim==1', { |
(...skipping 3058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4100 # Use outputs of this action as inputs for the main target build. | 4103 # Use outputs of this action as inputs for the main target build. |
4101 # Seems as a misnomer but makes this happy on Linux (scons). | 4104 # Seems as a misnomer but makes this happy on Linux (scons). |
4102 'process_outputs_as_sources': 1, | 4105 'process_outputs_as_sources': 1, |
4103 }, | 4106 }, |
4104 ], # 'actions' | 4107 ], # 'actions' |
4105 }, | 4108 }, |
4106 ] | 4109 ] |
4107 }], # 'coverage!=0' | 4110 }], # 'coverage!=0' |
4108 ], # 'conditions' | 4111 ], # 'conditions' |
4109 } | 4112 } |
OLD | NEW |