| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'pyautolib_sources': [ | 6 'pyautolib_sources': [ |
| 7 'app/chrome_command_ids.h', | 7 'app/chrome_command_ids.h', |
| 8 'app/chrome_dll_resource.h', | 8 'app/chrome_dll_resource.h', |
| 9 'common/automation_constants.h', | 9 'common/automation_constants.h', |
| 10 'common/pref_names.cc', | 10 'common/pref_names.cc', |
| (...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 824 'test/chromedriver/zip_reader.cc', | 824 'test/chromedriver/zip_reader.cc', |
| 825 'test/chromedriver/zip_reader.h', | 825 'test/chromedriver/zip_reader.h', |
| 826 ], | 826 ], |
| 827 'actions': [ | 827 'actions': [ |
| 828 { | 828 { |
| 829 'action_name': 'embed_js_in_cpp', | 829 'action_name': 'embed_js_in_cpp', |
| 830 'inputs': [ | 830 'inputs': [ |
| 831 'test/chromedriver/embed_js_in_cpp.py', | 831 'test/chromedriver/embed_js_in_cpp.py', |
| 832 'test/chromedriver/js/add_cookie.js', | 832 'test/chromedriver/js/add_cookie.js', |
| 833 'test/chromedriver/js/call_function.js', | 833 'test/chromedriver/js/call_function.js', |
| 834 'test/chromedriver/js/execute_async_script.js', |
| 834 'test/chromedriver/js/focus.js', | 835 'test/chromedriver/js/focus.js', |
| 835 'test/chromedriver/js/get_element_region.js', | 836 'test/chromedriver/js/get_element_region.js', |
| 836 'test/chromedriver/js/is_option_element_toggleable.js', | 837 'test/chromedriver/js/is_option_element_toggleable.js', |
| 837 ], | 838 ], |
| 838 'outputs': [ | 839 'outputs': [ |
| 839 '<(INTERMEDIATE_DIR)/chrome/test/chromedriver/js.cc', | 840 '<(INTERMEDIATE_DIR)/chrome/test/chromedriver/js.cc', |
| 840 '<(INTERMEDIATE_DIR)/chrome/test/chromedriver/js.h', | 841 '<(INTERMEDIATE_DIR)/chrome/test/chromedriver/js.h', |
| 841 ], | 842 ], |
| 842 'action': [ 'python', | 843 'action': [ 'python', |
| 843 'test/chromedriver/embed_js_in_cpp.py', | 844 'test/chromedriver/embed_js_in_cpp.py', |
| 844 '--directory', | 845 '--directory', |
| 845 '<(INTERMEDIATE_DIR)/chrome/test/chromedriver', | 846 '<(INTERMEDIATE_DIR)/chrome/test/chromedriver', |
| 846 'test/chromedriver/js/add_cookie.js', | 847 'test/chromedriver/js/add_cookie.js', |
| 847 'test/chromedriver/js/call_function.js', | 848 'test/chromedriver/js/call_function.js', |
| 849 'test/chromedriver/js/execute_async_script.js', |
| 848 'test/chromedriver/js/focus.js', | 850 'test/chromedriver/js/focus.js', |
| 849 'test/chromedriver/js/get_element_region.js', | 851 'test/chromedriver/js/get_element_region.js', |
| 850 'test/chromedriver/js/is_option_element_toggleable.js', | 852 'test/chromedriver/js/is_option_element_toggleable.js', |
| 851 ], | 853 ], |
| 852 'message': 'Generating sources for embedding js in chromedriver', | 854 'message': 'Generating sources for embedding js in chromedriver', |
| 853 }, | 855 }, |
| 854 ], | 856 ], |
| 855 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 857 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 856 'msvs_disabled_warnings': [ 4267, ], | 858 'msvs_disabled_warnings': [ 4267, ], |
| 857 }, | 859 }, |
| (...skipping 2321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3179 # more details. | 3181 # more details. |
| 3180 'DebugInformationFormat': '3', | 3182 'DebugInformationFormat': '3', |
| 3181 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/browser_tests.exe.pdb', | 3183 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/browser_tests.exe.pdb', |
| 3182 }, | 3184 }, |
| 3183 }, | 3185 }, |
| 3184 }, | 3186 }, |
| 3185 ], | 3187 ], |
| 3186 }], | 3188 }], |
| 3187 ], # 'conditions' | 3189 ], # 'conditions' |
| 3188 } | 3190 } |
| OLD | NEW |