| 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 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 612 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection
_unittests_run', | 612 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection
_unittests_run', |
| 613 ], | 613 ], |
| 614 }], | 614 }], |
| 615 ['use_ash==1', { | 615 ['use_ash==1', { |
| 616 'dependencies': [ | 616 'dependencies': [ |
| 617 '../ash/ash.gyp:ash_unittests_run', | 617 '../ash/ash.gyp:ash_unittests_run', |
| 618 ], | 618 ], |
| 619 }], | 619 }], |
| 620 ['use_aura==1', { | 620 ['use_aura==1', { |
| 621 'dependencies': [ | 621 'dependencies': [ |
| 622 '../ui/app_list/shower/app_list_shower.gyp:app_list_shower_unitt
ests_run', | 622 '../ui/app_list/presenter/app_list_presenter.gyp:app_list_presen
ter_unittests_run', |
| 623 '../ui/aura/aura.gyp:aura_unittests_run', | 623 '../ui/aura/aura.gyp:aura_unittests_run', |
| 624 '../ui/wm/wm.gyp:wm_unittests_run', | 624 '../ui/wm/wm.gyp:wm_unittests_run', |
| 625 ], | 625 ], |
| 626 }], | 626 }], |
| 627 ['enable_webrtc==1 or OS!="android"', { | 627 ['enable_webrtc==1 or OS!="android"', { |
| 628 'dependencies': [ | 628 'dependencies': [ |
| 629 '../jingle/jingle.gyp:jingle_unittests_run', | 629 '../jingle/jingle.gyp:jingle_unittests_run', |
| 630 ], | 630 ], |
| 631 }], | 631 }], |
| 632 ['disable_nacl==0 and disable_nacl_untrusted==0', { | 632 ['disable_nacl==0 and disable_nacl_untrusted==0', { |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 }], | 772 }], |
| 773 ['OS=="android" and target_arch != "x64"', { | 773 ['OS=="android" and target_arch != "x64"', { |
| 774 'dependencies': [ | 774 'dependencies': [ |
| 775 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' | 775 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' |
| 776 ], | 776 ], |
| 777 }], | 777 }], |
| 778 ], | 778 ], |
| 779 }, | 779 }, |
| 780 ] | 780 ] |
| 781 } | 781 } |
| OLD | NEW |