OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'chromium_code': 1, | 7 'chromium_code': 1, |
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 3163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3174 ], | 3174 ], |
3175 'sources!': [ | 3175 'sources!': [ |
3176 'app/chrome_exe_main.cc', | 3176 'app/chrome_exe_main.cc', |
3177 'app/client_util.cc', | 3177 'app/client_util.cc', |
3178 'app/google_update_client.cc', | 3178 'app/google_update_client.cc', |
3179 ] | 3179 ] |
3180 }], | 3180 }], |
3181 ], | 3181 ], |
3182 }, | 3182 }, |
3183 { | 3183 { |
3184 'target_name': 'image_diff', | |
3185 'type': 'executable', | |
3186 'msvs_guid': '50B079C7-CD01-42D3-B8C4-9F8D9322E822', | |
3187 'dependencies': [ | |
3188 '../base/base.gyp:base', | |
3189 '../base/base.gyp:base_gfx', | |
3190 ], | |
3191 'sources': [ | |
3192 'tools/test/image_diff/image_diff.cc', | |
3193 ], | |
3194 }, | |
3195 { | |
3196 # This target contains mocks and test utilities that don't belong in | 3184 # This target contains mocks and test utilities that don't belong in |
3197 # production libraries but are used by more than one test executable. | 3185 # production libraries but are used by more than one test executable. |
3198 'target_name': 'test_support_common', | 3186 'target_name': 'test_support_common', |
3199 'type': '<(library)', | 3187 'type': '<(library)', |
3200 'dependencies': [ | 3188 'dependencies': [ |
3201 'browser', | 3189 'browser', |
3202 'common', | 3190 'common', |
3203 'renderer', | 3191 'renderer', |
3204 'chrome_resources', | 3192 'chrome_resources', |
3205 'chrome_strings', | 3193 'chrome_strings', |
(...skipping 1836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5042 # Use outputs of this action as inputs for the main target build. | 5030 # Use outputs of this action as inputs for the main target build. |
5043 # Seems as a misnomer but makes this happy on Linux (scons). | 5031 # Seems as a misnomer but makes this happy on Linux (scons). |
5044 'process_outputs_as_sources': 1, | 5032 'process_outputs_as_sources': 1, |
5045 }, | 5033 }, |
5046 ], # 'actions' | 5034 ], # 'actions' |
5047 }, | 5035 }, |
5048 ] | 5036 ] |
5049 }], | 5037 }], |
5050 ], # 'conditions' | 5038 ], # 'conditions' |
5051 } | 5039 } |
OLD | NEW |