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 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
560 ], | 560 ], |
561 }], | 561 }], |
562 ['OS=="mac"', { | 562 ['OS=="mac"', { |
563 'dependencies': [ | 563 'dependencies': [ |
564 '../sandbox/sandbox.gyp:sandbox_mac_unittests_run', | 564 '../sandbox/sandbox.gyp:sandbox_mac_unittests_run', |
565 ], | 565 ], |
566 }], | 566 }], |
567 ['OS=="win"', { | 567 ['OS=="win"', { |
568 'dependencies': [ | 568 'dependencies': [ |
569 '../sandbox/sandbox.gyp:sbox_integration_tests', | 569 '../sandbox/sandbox.gyp:sbox_integration_tests', |
| 570 '../sandbox/sandbox.gyp:sbox_unittests', |
570 ], | 571 ], |
571 }], | 572 }], |
572 ['use_ash==1', { | 573 ['use_ash==1', { |
573 'dependencies': [ | 574 'dependencies': [ |
574 '../ash/ash.gyp:ash_unittests_run', | 575 '../ash/ash.gyp:ash_unittests_run', |
575 ], | 576 ], |
576 }], | 577 }], |
577 ['use_aura==1', { | 578 ['use_aura==1', { |
578 'dependencies': [ | 579 'dependencies': [ |
579 '../ui/aura/aura.gyp:aura_unittests_run', | 580 '../ui/aura/aura.gyp:aura_unittests_run', |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 'dependencies': [ | 711 'dependencies': [ |
711 # TODO(GYP): All of these targets need to be ported over. | 712 # TODO(GYP): All of these targets need to be ported over. |
712 '../components/components.gyp:policy_win64', | 713 '../components/components.gyp:policy_win64', |
713 ] | 714 ] |
714 }], | 715 }], |
715 ], | 716 ], |
716 }, | 717 }, |
717 ] | 718 ] |
718 } | 719 } |
719 | 720 |
OLD | NEW |