| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 | 7 |
| 8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
| 9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
| 10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
| (...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 853 '-f', '<(branding_path)', | 853 '-f', '<(branding_path)', |
| 854 '-f', '<(lastchange_path)', | 854 '-f', '<(lastchange_path)', |
| 855 'version.h.in', | 855 'version.h.in', |
| 856 '<@(_outputs)', | 856 '<@(_outputs)', |
| 857 ], | 857 ], |
| 858 'message': 'Generating version header file: <@(_outputs)', | 858 'message': 'Generating version header file: <@(_outputs)', |
| 859 }, | 859 }, |
| 860 ], | 860 ], |
| 861 }, | 861 }, |
| 862 { | 862 { |
| 863 'target_name': 'automation', | |
| 864 'type': 'static_library', | |
| 865 'dependencies': [ | |
| 866 'chrome_resources.gyp:theme_resources', | |
| 867 '../ui/accessibility/accessibility.gyp:ax_gen', | |
| 868 '../skia/skia.gyp:skia', | |
| 869 ], | |
| 870 'include_dirs': [ | |
| 871 '..', | |
| 872 ], | |
| 873 'sources': [ | |
| 874 'test/automation/automation_handle_tracker.cc', | |
| 875 'test/automation/automation_handle_tracker.h', | |
| 876 'test/automation/automation_proxy.cc', | |
| 877 'test/automation/automation_proxy.h', | |
| 878 'test/automation/browser_proxy.cc', | |
| 879 'test/automation/browser_proxy.h', | |
| 880 'test/automation/tab_proxy.cc', | |
| 881 'test/automation/tab_proxy.h', | |
| 882 'test/automation/window_proxy.cc', | |
| 883 'test/automation/window_proxy.h', | |
| 884 ], | |
| 885 }, | |
| 886 { | |
| 887 'target_name': 'crash_service', | 863 'target_name': 'crash_service', |
| 888 'type': 'executable', | 864 'type': 'executable', |
| 889 'dependencies': [ | 865 'dependencies': [ |
| 890 'installer_util', | 866 'installer_util', |
| 891 '../base/base.gyp:base', | 867 '../base/base.gyp:base', |
| 892 '../chrome/common_constants.gyp:common_constants', | 868 '../chrome/common_constants.gyp:common_constants', |
| 893 '../components/components.gyp:breakpad_crash_service', | 869 '../components/components.gyp:breakpad_crash_service', |
| 894 ], | 870 ], |
| 895 'include_dirs': [ | 871 'include_dirs': [ |
| 896 '..', | 872 '..', |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1114 'sources': [ | 1090 'sources': [ |
| 1115 'service/cloud_print/print_system_dummy.cc', | 1091 'service/cloud_print/print_system_dummy.cc', |
| 1116 ], | 1092 ], |
| 1117 }], | 1093 }], |
| 1118 ], | 1094 ], |
| 1119 }, | 1095 }, |
| 1120 ], | 1096 ], |
| 1121 }], | 1097 }], |
| 1122 ], # 'conditions' | 1098 ], # 'conditions' |
| 1123 } | 1099 } |
| OLD | NEW |