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 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
658 ['use_ash==1', { | 658 ['use_ash==1', { |
659 'dependencies': [ | 659 'dependencies': [ |
660 '../ash/ash.gyp:ash_unittests_run', | 660 '../ash/ash.gyp:ash_unittests_run', |
661 ], | 661 ], |
662 }], | 662 }], |
663 ['enable_app_list==1', { | 663 ['enable_app_list==1', { |
664 'dependencies': [ | 664 'dependencies': [ |
665 '../ui/app_list/app_list.gyp:app_list_unittests_run', | 665 '../ui/app_list/app_list.gyp:app_list_unittests_run', |
666 ], | 666 ], |
667 }], | 667 }], |
668 ['enable_app_list==1 and use_aura==1', { | 668 ['use_aura==1', { |
669 'dependencies': [ | 669 'dependencies': [ |
670 '../ui/app_list/presenter/app_list_presenter.gyp:app_list_presen
ter_unittests_run', | 670 '../ui/app_list/presenter/app_list_presenter.gyp:app_list_presen
ter_unittests_run', |
671 ], | 671 ], |
672 }], | 672 }], |
673 ['use_aura==1', { | 673 ['use_aura==1', { |
674 'dependencies': [ | 674 'dependencies': [ |
675 '../ui/aura/aura.gyp:aura_unittests_run', | 675 '../ui/aura/aura.gyp:aura_unittests_run', |
676 '../ui/wm/wm.gyp:wm_unittests_run', | 676 '../ui/wm/wm.gyp:wm_unittests_run', |
677 ], | 677 ], |
678 }], | 678 }], |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
787 }], | 787 }], |
788 ['OS=="android" and target_arch != "x64"', { | 788 ['OS=="android" and target_arch != "x64"', { |
789 'dependencies': [ | 789 'dependencies': [ |
790 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' | 790 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' |
791 ], | 791 ], |
792 }], | 792 }], |
793 ], | 793 ], |
794 }, | 794 }, |
795 ] | 795 ] |
796 } | 796 } |
OLD | NEW |