| 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 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 ], | 562 ], |
| 563 }], | 563 }], |
| 564 ['OS=="mac"', { | 564 ['OS=="mac"', { |
| 565 'dependencies': [ | 565 'dependencies': [ |
| 566 '../sandbox/sandbox.gyp:sandbox_mac_unittests_run', | 566 '../sandbox/sandbox.gyp:sandbox_mac_unittests_run', |
| 567 ], | 567 ], |
| 568 }], | 568 }], |
| 569 ['OS=="win"', { | 569 ['OS=="win"', { |
| 570 'dependencies': [ | 570 'dependencies': [ |
| 571 '../chrome/chrome.gyp:installer_util_unittests_run', | 571 '../chrome/chrome.gyp:installer_util_unittests_run', |
| 572 '../chrome/chrome.gyp:setup_unittests_run', |
| 572 '../sandbox/sandbox.gyp:sbox_integration_tests', | 573 '../sandbox/sandbox.gyp:sbox_integration_tests', |
| 573 '../sandbox/sandbox.gyp:sbox_unittests', | 574 '../sandbox/sandbox.gyp:sbox_unittests', |
| 574 '../sandbox/sandbox.gyp:sbox_validation_tests', | 575 '../sandbox/sandbox.gyp:sbox_validation_tests', |
| 575 ], | 576 ], |
| 576 }], | 577 }], |
| 577 ['use_ash==1', { | 578 ['use_ash==1', { |
| 578 'dependencies': [ | 579 'dependencies': [ |
| 579 '../ash/ash.gyp:ash_unittests_run', | 580 '../ash/ash.gyp:ash_unittests_run', |
| 580 ], | 581 ], |
| 581 }], | 582 }], |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 'dependencies': [ | 716 'dependencies': [ |
| 716 # TODO(GYP): All of these targets need to be ported over. | 717 # TODO(GYP): All of these targets need to be ported over. |
| 717 '../components/components.gyp:policy_win64', | 718 '../components/components.gyp:policy_win64', |
| 718 ] | 719 ] |
| 719 }], | 720 }], |
| 720 ], | 721 ], |
| 721 }, | 722 }, |
| 722 ] | 723 ] |
| 723 } | 724 } |
| 724 | 725 |
| OLD | NEW |