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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'All', | 8 'target_name': 'All', |
9 'type': 'none', | 9 'type': 'none', |
10 'xcode_create_dependents_test_runner': 1, | 10 'xcode_create_dependents_test_runner': 1, |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 '../webkit/tools/test_shell/test_shell.gyp:npapi_layout_test_plugin'
, | 180 '../webkit/tools/test_shell/test_shell.gyp:npapi_layout_test_plugin'
, |
181 # TODO(nsylvain) ui_tests.exe depends on test_shell_common. | 181 # TODO(nsylvain) ui_tests.exe depends on test_shell_common. |
182 # This should: | 182 # This should: |
183 # 1) not be the case. OR. | 183 # 1) not be the case. OR. |
184 # 2) be expressed in the ui tests dependencies. | 184 # 2) be expressed in the ui tests dependencies. |
185 '../webkit/tools/test_shell/test_shell.gyp:test_shell_common', | 185 '../webkit/tools/test_shell/test_shell.gyp:test_shell_common', |
186 'temp_gyp/googleurl.gyp:googleurl_unittests', | 186 'temp_gyp/googleurl.gyp:googleurl_unittests', |
187 ], | 187 ], |
188 }, | 188 }, |
189 { | 189 { |
| 190 'target_name': 'chrome_frame_builder', |
| 191 'type': 'none', |
| 192 'dependencies': [ |
| 193 '../chrome/installer/installer.gyp:installer_util_unittests', |
| 194 '../chrome/installer/installer.gyp:mini_installer_test', |
| 195 # mini_installer_tests depends on mini_installer. This should be |
| 196 # defined in installer.gyp. |
| 197 '../chrome/installer/mini_installer.gyp:mini_installer', |
| 198 '../courgette/courgette.gyp:courgette_unittests', |
| 199 '../chrome.gyp:chrome', |
| 200 '../chrome_frame/chrome_frame.gyp:npchrome_tab', |
| 201 '../chrome_frame/chrome_frame.gyp:chrome_frame_tests', |
| 202 '../chrome_frame/chrome_frame.gyp:chrome_frame_unittests', |
| 203 '../chrome_frame/chrome_frame.gyp:chrome_frame_net_tests', |
| 204 '../chrome_frame/chrome_frame.gyp:chrome_frame_perftests', |
| 205 ], |
| 206 }, |
| 207 { |
190 'target_name': 'purify_builder_ui', | 208 'target_name': 'purify_builder_ui', |
191 'type': 'none', | 209 'type': 'none', |
192 'dependencies': [ | 210 'dependencies': [ |
193 '../chrome/chrome.gyp:ui_tests', | 211 '../chrome/chrome.gyp:ui_tests', |
194 ], | 212 ], |
195 }, | 213 }, |
196 { | 214 { |
197 'target_name': 'purify_builder_unit', | 215 'target_name': 'purify_builder_unit', |
198 'type': 'none', | 216 'type': 'none', |
199 'dependencies': [ | 217 'dependencies': [ |
(...skipping 11 matching lines...) Expand all Loading... |
211 ], # targets | 229 ], # targets |
212 }], # OS="win" | 230 }], # OS="win" |
213 ], # conditions | 231 ], # conditions |
214 } | 232 } |
215 | 233 |
216 # Local Variables: | 234 # Local Variables: |
217 # tab-width:2 | 235 # tab-width:2 |
218 # indent-tabs-mode:nil | 236 # indent-tabs-mode:nil |
219 # End: | 237 # End: |
220 # vim: set expandtab tabstop=2 shiftwidth=2: | 238 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |