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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 ['OS!="ios" and OS!="win"', { | 420 ['OS!="ios" and OS!="win"', { |
421 'dependencies': [ | 421 'dependencies': [ |
422 '../breakpad/breakpad.gyp:minidump_stackwalk', | 422 '../breakpad/breakpad.gyp:minidump_stackwalk', |
423 ], | 423 ], |
424 }], | 424 }], |
425 ['OS=="linux"', { | 425 ['OS=="linux"', { |
426 'dependencies': [ | 426 'dependencies': [ |
427 '../chrome/chrome.gyp:linux_symbols' | 427 '../chrome/chrome.gyp:linux_symbols' |
428 ], | 428 ], |
429 }], | 429 }], |
| 430 ['OS=="win"', { |
| 431 'dependencies': [ |
| 432 '../chrome/chrome.gyp:crash_service', |
| 433 ], |
| 434 }], |
| 435 ['OS=="win" and target_arch=="ia32"', { |
| 436 'dependencies': [ |
| 437 '../chrome/chrome.gyp:crash_service_win64', |
| 438 ], |
| 439 }], |
430 ], | 440 ], |
431 }, # target_name: chromium_gpu_builder | 441 }, # target_name: chromium_gpu_builder |
432 { | 442 { |
433 'target_name': 'chromium_gpu_debug_builder', | 443 'target_name': 'chromium_gpu_debug_builder', |
434 'type': 'none', | 444 'type': 'none', |
435 'dependencies': [ | 445 'dependencies': [ |
436 '../chrome/chrome.gyp:chrome', | 446 '../chrome/chrome.gyp:chrome', |
437 '../content/content_shell_and_tests.gyp:content_browsertests', | 447 '../content/content_shell_and_tests.gyp:content_browsertests', |
438 '../content/content_shell_and_tests.gyp:content_gl_tests', | 448 '../content/content_shell_and_tests.gyp:content_gl_tests', |
439 '../gpu/gpu.gyp:gl_tests', | 449 '../gpu/gpu.gyp:gl_tests', |
440 ], | 450 ], |
441 'conditions': [ | 451 'conditions': [ |
442 ['internal_gles2_conform_tests', { | 452 ['internal_gles2_conform_tests', { |
443 'dependencies': [ | 453 'dependencies': [ |
444 '../gpu/gles2_conform_test/gles2_conform_test.gyp:gles2_conform_
test', | 454 '../gpu/gles2_conform_test/gles2_conform_test.gyp:gles2_conform_
test', |
445 ], | 455 ], |
446 }], # internal_gles2_conform | 456 }], # internal_gles2_conform |
447 ['OS!="ios" and OS!="win"', { | 457 ['OS!="ios" and OS!="win"', { |
448 'dependencies': [ | 458 'dependencies': [ |
449 '../breakpad/breakpad.gyp:minidump_stackwalk', | 459 '../breakpad/breakpad.gyp:minidump_stackwalk', |
450 ], | 460 ], |
451 }], | 461 }], |
452 ['OS=="linux"', { | 462 ['OS=="linux"', { |
453 'dependencies': [ | 463 'dependencies': [ |
454 '../chrome/chrome.gyp:linux_symbols' | 464 '../chrome/chrome.gyp:linux_symbols' |
455 ], | 465 ], |
456 }], | 466 }], |
| 467 ['OS=="win"', { |
| 468 'dependencies': [ |
| 469 '../chrome/chrome.gyp:crash_service', |
| 470 ], |
| 471 }], |
| 472 ['OS=="win" and target_arch=="ia32"', { |
| 473 'dependencies': [ |
| 474 '../chrome/chrome.gyp:crash_service_win64', |
| 475 ], |
| 476 }], |
457 ], | 477 ], |
458 }, # target_name: chromium_gpu_debug_builder | 478 }, # target_name: chromium_gpu_debug_builder |
459 { | 479 { |
460 'target_name': 'chromium_builder_qa', | 480 'target_name': 'chromium_builder_qa', |
461 'type': 'none', | 481 'type': 'none', |
462 'dependencies': [ | 482 'dependencies': [ |
463 '../chrome/chrome.gyp:chrome', | 483 '../chrome/chrome.gyp:chrome', |
464 # Dependencies of pyauto_functional tests. | 484 # Dependencies of pyauto_functional tests. |
465 '../remoting/remoting.gyp:remoting_webapp', | 485 '../remoting/remoting.gyp:remoting_webapp', |
466 '../chrome/chrome.gyp:pyautolib', | 486 '../chrome/chrome.gyp:pyautolib', |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
984 '../chrome/chrome.gyp:interactive_ui_tests_run', | 1004 '../chrome/chrome.gyp:interactive_ui_tests_run', |
985 '../chrome/chrome.gyp:sync_integration_tests_run', | 1005 '../chrome/chrome.gyp:sync_integration_tests_run', |
986 '../chrome/chrome.gyp:unit_tests_run', | 1006 '../chrome/chrome.gyp:unit_tests_run', |
987 '../net/net.gyp:net_unittests_run', | 1007 '../net/net.gyp:net_unittests_run', |
988 ], | 1008 ], |
989 }, # target_name: chromium_swarm_tests | 1009 }, # target_name: chromium_swarm_tests |
990 ], | 1010 ], |
991 }], | 1011 }], |
992 ], # conditions | 1012 ], # conditions |
993 } | 1013 } |
OLD | NEW |