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