Chromium Code Reviews| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 145 '../ash/ash.gyp:ash_unittests', | 145 '../ash/ash.gyp:ash_unittests', |
| 146 ], | 146 ], |
| 147 }], | 147 }], |
| 148 ['use_ash==1 or chromeos== 1', { | 148 ['use_ash==1 or chromeos== 1', { |
| 149 'dependencies': [ | 149 'dependencies': [ |
| 150 '../components/components.gyp:session_manager_component', | 150 '../components/components.gyp:session_manager_component', |
| 151 ] | 151 ] |
| 152 }], | 152 }], |
| 153 ['use_aura==1', { | 153 ['use_aura==1', { |
| 154 'dependencies': [ | 154 'dependencies': [ |
| 155 '../ui/app_list/shower/app_list_shower.gyp:app_list_shower_unittests ', | 155 '../ui/app_list/shower/app_list_shower.gyp:app_list_shower_unittests _run', |
| 156 '../ui/aura/aura.gyp:aura_demo', | 156 '../ui/aura/aura.gyp:aura_demo', |
| 157 '../ui/aura/aura.gyp:aura_unittests', | 157 '../ui/aura/aura.gyp:aura_unittests', |
| 158 '../ui/keyboard/keyboard.gyp:keyboard_unittests', | 158 '../ui/keyboard/keyboard.gyp:keyboard_unittests', |
| 159 '../ui/wm/wm.gyp:wm_unittests', | 159 '../ui/wm/wm.gyp:wm_unittests', |
| 160 ], | 160 ], |
| 161 }], | 161 }], |
| 162 ['use_ozone==1', { | 162 ['use_ozone==1', { |
| 163 'dependencies': [ | 163 'dependencies': [ |
| 164 '../ui/ozone/ozone.gyp:ozone', | 164 '../ui/ozone/ozone.gyp:ozone', |
| 165 ], | 165 ], |
| (...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 615 ], | 615 ], |
| 616 }], | 616 }], |
| 617 ['use_ash==1', { | 617 ['use_ash==1', { |
| 618 'dependencies': [ | 618 'dependencies': [ |
| 619 '../ash/ash.gyp:ash_unittests_run', | 619 '../ash/ash.gyp:ash_unittests_run', |
| 620 ], | 620 ], |
| 621 }], | 621 }], |
| 622 ['use_aura==1', { | 622 ['use_aura==1', { |
| 623 'dependencies': [ | 623 'dependencies': [ |
| 624 '../ui/aura/aura.gyp:aura_unittests_run', | 624 '../ui/aura/aura.gyp:aura_unittests_run', |
| 625 '../ui/wm/wm.gyp:wm_unittests_run', | 625 '../ui/wm/wm.gyp:wm_unittests_run', |
|
Nico
2016/04/11 18:47:37
the _run targets all live down here -- can you mov
pcc1
2016/04/11 18:55:09
Done.
| |
| 626 ], | 626 ], |
| 627 }], | 627 }], |
| 628 ['enable_webrtc==1 or OS!="android"', { | 628 ['enable_webrtc==1 or OS!="android"', { |
| 629 'dependencies': [ | 629 'dependencies': [ |
| 630 '../jingle/jingle.gyp:jingle_unittests_run', | 630 '../jingle/jingle.gyp:jingle_unittests_run', |
| 631 ], | 631 ], |
| 632 }], | 632 }], |
| 633 ['disable_nacl==0 and disable_nacl_untrusted==0', { | 633 ['disable_nacl==0 and disable_nacl_untrusted==0', { |
| 634 'dependencies': [ | 634 'dependencies': [ |
| 635 '../components/nacl.gyp:nacl_loader_unittests_run', | 635 '../components/nacl.gyp:nacl_loader_unittests_run', |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 773 }], | 773 }], |
| 774 ['OS=="android" and target_arch != "x64"', { | 774 ['OS=="android" and target_arch != "x64"', { |
| 775 'dependencies': [ | 775 'dependencies': [ |
| 776 '../third_party/android_platform/relocation_packer.gyp:android_reloc ation_packer_unittests#host' | 776 '../third_party/android_platform/relocation_packer.gyp:android_reloc ation_packer_unittests#host' |
| 777 ], | 777 ], |
| 778 }], | 778 }], |
| 779 ], | 779 ], |
| 780 }, | 780 }, |
| 781 ] | 781 ] |
| 782 } | 782 } |
| OLD | NEW |