OLD | NEW |
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2015 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 # This file defines five targets that we are using to track the progress of the | 5 # This file defines five targets that we are using to track the progress of the |
6 # GYP->GN migration: | 6 # GYP->GN migration: |
7 # | 7 # |
8 # 'both_gn_and_gyp' lists what GN is currently capable of building and should | 8 # 'both_gn_and_gyp' lists what GN is currently capable of building and should |
9 # match the 'both_gn_and_gyp' target in //BUILD.gn. | 9 # match the 'both_gn_and_gyp' target in //BUILD.gn. |
10 # | 10 # |
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
635 ], | 635 ], |
636 }], | 636 }], |
637 ['OS!="android"', { | 637 ['OS!="android"', { |
638 'dependencies': [ | 638 'dependencies': [ |
639 '../ipc/ipc.gyp:ipc_tests_run', | 639 '../ipc/ipc.gyp:ipc_tests_run', |
640 '../ui/base/ui_base_tests.gyp:ui_base_unittests_run', | 640 '../ui/base/ui_base_tests.gyp:ui_base_unittests_run', |
641 '../ui/gl/gl_tests.gyp:gl_unittests_run', | 641 '../ui/gl/gl_tests.gyp:gl_unittests_run', |
642 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection
_unittests_run', | 642 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection
_unittests_run', |
643 ], | 643 ], |
644 }], | 644 }], |
| 645 ['OS!="android" and OS!="ios" and chromecast==0', { |
| 646 'dependencies': [ |
| 647 '../ipc/mojo/ipc_mojo.gyp:ipc_mojo_unittests_run', |
| 648 '../mojo/mojo_edk_tests.gyp:mojo_js_unittests_run', |
| 649 '../mojo/mojo_edk_tests.gyp:mojo_js_integration_tests_run', |
| 650 '../mojo/mojo_edk_tests.gyp:mojo_system_unittests_run', |
| 651 '../services/shell/shell.gyp:mojo_shell_unittests_run', |
| 652 ], |
| 653 }], |
645 ['use_ash==1', { | 654 ['use_ash==1', { |
646 'dependencies': [ | 655 'dependencies': [ |
647 '../ash/ash.gyp:ash_unittests_run', | 656 '../ash/ash.gyp:ash_unittests_run', |
648 ], | 657 ], |
649 }], | 658 }], |
650 ['use_aura==1', { | 659 ['use_aura==1', { |
651 'dependencies': [ | 660 'dependencies': [ |
652 '../ui/app_list/presenter/app_list_presenter.gyp:app_list_presen
ter_unittests_run', | 661 '../ui/app_list/presenter/app_list_presenter.gyp:app_list_presen
ter_unittests_run', |
653 '../ui/aura/aura.gyp:aura_unittests_run', | 662 '../ui/aura/aura.gyp:aura_unittests_run', |
654 '../ui/wm/wm.gyp:wm_unittests_run', | 663 '../ui/wm/wm.gyp:wm_unittests_run', |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
765 }], | 774 }], |
766 ['OS=="android" and target_arch != "x64"', { | 775 ['OS=="android" and target_arch != "x64"', { |
767 'dependencies': [ | 776 'dependencies': [ |
768 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' | 777 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' |
769 ], | 778 ], |
770 }], | 779 }], |
771 ], | 780 ], |
772 }, | 781 }, |
773 ] | 782 ] |
774 } | 783 } |
OLD | NEW |