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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
233 'targets': [ | 233 'targets': [ |
234 { | 234 { |
235 'target_name': 'chromeos_builder', | 235 'target_name': 'chromeos_builder', |
236 'type': 'none', | 236 'type': 'none', |
237 'sources': [ | 237 'sources': [ |
238 # TODO(bradnelson): This is here to work around gyp issue 137. | 238 # TODO(bradnelson): This is here to work around gyp issue 137. |
239 # Remove this sources list when that issue has been fixed. | 239 # Remove this sources list when that issue has been fixed. |
240 'all.gyp', | 240 'all.gyp', |
241 ], | 241 ], |
242 'dependencies': [ | 242 'dependencies': [ |
243 '../app/app.gyp:app_unittests', | |
244 '../base/base.gyp:base_unittests', | |
245 '../chrome/chrome.gyp:browser_tests', | |
243 '../chrome/chrome.gyp:chrome', | 246 '../chrome/chrome.gyp:chrome', |
247 '../chrome/chrome.gyp:memory_test', | |
248 '../chrome/chrome.gyp:page_cycler_tests', | |
249 '../chrome/chrome.gyp:startup_tests', | |
250 '../chrome/chrome.gyp:tab_switching_test', | |
251 '../chrome/chrome.gyp:ui_tests', | |
252 '../chrome/chrome.gyp:unit_tests', | |
253 '../chrome/chrome.gyp:url_fetch_test', | |
254 '../ipc/ipc.gyp:ipc_tests', | |
255 '../media/media.gyp:ffmpeg_tests', | |
256 '../media/media.gyp:media_unittests', | |
244 '../media/media.gyp:omx_test', | 257 '../media/media.gyp:omx_test', |
245 '../media/media.gyp:ffmpeg_tests', | 258 '../net/net.gyp:net_unittests', |
259 '../printing/printing.gyp:printing_unittests', | |
260 'temp_gyp/googleurl.gyp:googleurl_unittests', | |
jiesun
2010/03/01 16:37:53
the question are
1. Were these targets built in th
| |
246 # TODO(jiesun): should we put candidate_window/session here? | 261 # TODO(jiesun): should we put candidate_window/session here? |
247 ], | 262 ], |
248 }, | 263 }, |
249 ], # targets | 264 ], # targets |
250 }], # "chromeos==1" | 265 }], # "chromeos==1" |
251 ], # conditions | 266 ], # conditions |
252 } | 267 } |
253 | 268 |
254 # Local Variables: | 269 # Local Variables: |
255 # tab-width:2 | 270 # tab-width:2 |
256 # indent-tabs-mode:nil | 271 # indent-tabs-mode:nil |
257 # End: | 272 # End: |
258 # vim: set expandtab tabstop=2 shiftwidth=2: | 273 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |