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 { | 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 }, # target_name: chromium_builder_perf | 300 }, # target_name: chromium_builder_perf |
301 { | 301 { |
302 'target_name': 'chromium_gpu_builder', | 302 'target_name': 'chromium_gpu_builder', |
303 'type': 'none', | 303 'type': 'none', |
304 'dependencies': [ | 304 'dependencies': [ |
305 '../chrome/chrome.gyp:gpu_tests', | 305 '../chrome/chrome.gyp:gpu_tests', |
306 '../chrome/chrome.gyp:performance_browser_tests', | 306 '../chrome/chrome.gyp:performance_browser_tests', |
307 '../chrome/chrome.gyp:performance_ui_tests', | 307 '../chrome/chrome.gyp:performance_ui_tests', |
308 '../gpu/gpu.gyp:gl_tests', | 308 '../gpu/gpu.gyp:gl_tests', |
309 ], | 309 ], |
| 310 'conditions': [ |
| 311 ['internal_gles2_conform_tests', { |
| 312 'dependencies': [ |
| 313 '../gpu/gles2_conform_test/gles2_conform_test.gyp:gles2_conform_
test_windowless', |
| 314 ], |
| 315 }], # internal_gles2_conform |
| 316 ], |
310 }, # target_name: chromium_gpu_builder | 317 }, # target_name: chromium_gpu_builder |
311 { | 318 { |
312 'target_name': 'chromium_gpu_debug_builder', | 319 'target_name': 'chromium_gpu_debug_builder', |
313 'type': 'none', | 320 'type': 'none', |
314 'dependencies': [ | 321 'dependencies': [ |
315 '../chrome/chrome.gyp:gpu_tests', | 322 '../chrome/chrome.gyp:gpu_tests', |
316 '../gpu/gpu.gyp:gl_tests', | 323 '../gpu/gpu.gyp:gl_tests', |
317 ], | 324 ], |
| 325 'conditions': [ |
| 326 ['internal_gles2_conform_tests', { |
| 327 'dependencies': [ |
| 328 '../gpu/gles2_conform_test/gles2_conform_test.gyp:gles2_conform_
test_windowless', |
| 329 ], |
| 330 }], # internal_gles2_conform |
| 331 ], |
318 }, # target_name: chromium_gpu_debug_builder | 332 }, # target_name: chromium_gpu_debug_builder |
319 { | 333 { |
320 'target_name': 'chromium_builder_qa', | 334 'target_name': 'chromium_builder_qa', |
321 'type': 'none', | 335 'type': 'none', |
322 'dependencies': [ | 336 'dependencies': [ |
323 '../chrome/chrome.gyp:chromedriver', | 337 '../chrome/chrome.gyp:chromedriver', |
324 # Dependencies of pyauto_functional tests. | 338 # Dependencies of pyauto_functional tests. |
325 '../remoting/remoting.gyp:remoting_webapp', | 339 '../remoting/remoting.gyp:remoting_webapp', |
326 ], | 340 ], |
327 'conditions': [ | 341 'conditions': [ |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
673 'dependencies': [ | 687 'dependencies': [ |
674 '../chromeos/chromeos.gyp:chromeos_unittests', | 688 '../chromeos/chromeos.gyp:chromeos_unittests', |
675 ], | 689 ], |
676 }], | 690 }], |
677 ], | 691 ], |
678 }, | 692 }, |
679 ], # targets | 693 ], # targets |
680 }], # "use_aura==1" | 694 }], # "use_aura==1" |
681 ], # conditions | 695 ], # conditions |
682 } | 696 } |
OLD | NEW |