| 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 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 ], | 566 ], |
| 567 }, | 567 }, |
| 568 ], # targets | 568 ], # targets |
| 569 }], # "chromeos_gtk==1" | 569 }], # "chromeos_gtk==1" |
| 570 ['use_aura==1', { | 570 ['use_aura==1', { |
| 571 'targets': [ | 571 'targets': [ |
| 572 { | 572 { |
| 573 'target_name': 'aura_builder', | 573 'target_name': 'aura_builder', |
| 574 'type': 'none', | 574 'type': 'none', |
| 575 'dependencies': [ | 575 'dependencies': [ |
| 576 '../ash/ash.gyp:ash_shell', | |
| 577 '../ash/ash.gyp:aura_shell_unittests', | |
| 578 '../chrome/chrome.gyp:chrome', | 576 '../chrome/chrome.gyp:chrome', |
| 579 '../chrome/chrome.gyp:unit_tests', | 577 '../chrome/chrome.gyp:unit_tests', |
| 580 '../chrome/chrome.gyp:ui_tests', | 578 '../chrome/chrome.gyp:ui_tests', |
| 581 '../ui/aura/aura.gyp:*', | 579 '../ui/aura/aura.gyp:*', |
| 582 '../ui/gfx/compositor/compositor.gyp:*', | 580 '../ui/gfx/compositor/compositor.gyp:*', |
| 583 '../ui/views/views.gyp:views', | 581 '../ui/views/views.gyp:views', |
| 584 '../ui/views/views.gyp:views_unittests', | 582 '../ui/views/views.gyp:views_unittests', |
| 585 '../webkit/webkit.gyp:pull_in_webkit_unit_tests', | 583 '../webkit/webkit.gyp:pull_in_webkit_unit_tests', |
| 586 ], | 584 ], |
| 587 'conditions': [ | 585 'conditions': [ |
| 588 ['OS=="win"', { | 586 ['OS=="win"', { |
| 589 # Remove this when we have the real compositor. | 587 # Remove this when we have the real compositor. |
| 590 'copies': [ | 588 'copies': [ |
| 591 { | 589 { |
| 592 'destination': '<(PRODUCT_DIR)', | 590 'destination': '<(PRODUCT_DIR)', |
| 593 'files': ['../third_party/directxsdk/files/dlls/D3DX10d_43.dll
'] | 591 'files': ['../third_party/directxsdk/files/dlls/D3DX10d_43.dll
'] |
| 594 }, | 592 }, |
| 595 ], | 593 ], |
| 596 'dependencies': [ | 594 'dependencies': [ |
| 597 '../chrome/chrome.gyp:crash_service', | 595 '../chrome/chrome.gyp:crash_service', |
| 598 '../chrome/chrome.gyp:crash_service_win64', | 596 '../chrome/chrome.gyp:crash_service_win64', |
| 599 ], | 597 ], |
| 600 }], | 598 }], |
| 599 ['use_ash==1', { |
| 600 'dependencies': [ |
| 601 '../ash/ash.gyp:ash_shell', |
| 602 '../ash/ash.gyp:aura_shell_unittests', |
| 603 ], |
| 604 }], |
| 601 ['OS=="linux"', { | 605 ['OS=="linux"', { |
| 602 # Tests that currently only work on Linux. | 606 # Tests that currently only work on Linux. |
| 603 'dependencies': [ | 607 'dependencies': [ |
| 604 '../base/base.gyp:base_unittests', | 608 '../base/base.gyp:base_unittests', |
| 605 '../chrome/chrome.gyp:sync_unit_tests', | 609 '../chrome/chrome.gyp:sync_unit_tests', |
| 606 '../content/content.gyp:content_unittests', | 610 '../content/content.gyp:content_unittests', |
| 607 '../ipc/ipc.gyp:ipc_tests', | 611 '../ipc/ipc.gyp:ipc_tests', |
| 608 '../sql/sql.gyp:sql_unittests', | 612 '../sql/sql.gyp:sql_unittests', |
| 609 '../ui/ui.gyp:gfx_unittests', | 613 '../ui/ui.gyp:gfx_unittests', |
| 610 ], | 614 ], |
| 611 }], | 615 }], |
| 612 ['OS=="mac"', { | 616 ['OS=="mac"', { |
| 613 # Exclude dependencies that are not currently implemented. | 617 # Exclude dependencies that are not currently implemented. |
| 614 'dependencies!': [ | 618 'dependencies!': [ |
| 615 '../chrome/chrome.gyp:chrome', | 619 '../chrome/chrome.gyp:chrome', |
| 616 '../chrome/chrome.gyp:unit_tests', | 620 '../chrome/chrome.gyp:unit_tests', |
| 617 '../chrome/chrome.gyp:ui_tests', | 621 '../chrome/chrome.gyp:ui_tests', |
| 618 '../ui/views/views.gyp:views_unittests', | 622 '../ui/views/views.gyp:views_unittests', |
| 619 ], | 623 ], |
| 620 }], | 624 }], |
| 621 ], | 625 ], |
| 622 }, | 626 }, |
| 623 ], # targets | 627 ], # targets |
| 624 }], # "use_aura==1" | 628 }], # "use_aura==1" |
| 625 ], # conditions | 629 ], # conditions |
| 626 } | 630 } |
| OLD | NEW |