| 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 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 '../chrome/chrome.gyp:installer_util_unittests_run', | 605 '../chrome/chrome.gyp:installer_util_unittests_run', |
| 606 '../chrome/chrome.gyp:setup_unittests_run', | 606 '../chrome/chrome.gyp:setup_unittests_run', |
| 607 '../sandbox/sandbox.gyp:sbox_integration_tests', | 607 '../sandbox/sandbox.gyp:sbox_integration_tests', |
| 608 '../sandbox/sandbox.gyp:sbox_unittests', | 608 '../sandbox/sandbox.gyp:sbox_unittests', |
| 609 '../sandbox/sandbox.gyp:sbox_validation_tests', | 609 '../sandbox/sandbox.gyp:sbox_validation_tests', |
| 610 ], | 610 ], |
| 611 }], | 611 }], |
| 612 ['OS!="android"', { | 612 ['OS!="android"', { |
| 613 'dependencies': [ | 613 'dependencies': [ |
| 614 '../ipc/ipc.gyp:ipc_tests_run', | 614 '../ipc/ipc.gyp:ipc_tests_run', |
| 615 '../ui/base/ui_base_tests.gyp:ui_base_unittests_run', |
| 615 '../ui/gl/gl_tests.gyp:gl_unittests_run', | 616 '../ui/gl/gl_tests.gyp:gl_unittests_run', |
| 616 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection
_unittests_run', | 617 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection
_unittests_run', |
| 617 ], | 618 ], |
| 618 }], | 619 }], |
| 619 ['use_ash==1', { | 620 ['use_ash==1', { |
| 620 'dependencies': [ | 621 'dependencies': [ |
| 621 '../ash/ash.gyp:ash_unittests_run', | 622 '../ash/ash.gyp:ash_unittests_run', |
| 622 ], | 623 ], |
| 623 }], | 624 }], |
| 624 ['use_aura==1', { | 625 ['use_aura==1', { |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 }], | 776 }], |
| 776 ['OS=="android" and target_arch != "x64"', { | 777 ['OS=="android" and target_arch != "x64"', { |
| 777 'dependencies': [ | 778 'dependencies': [ |
| 778 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' | 779 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' |
| 779 ], | 780 ], |
| 780 }], | 781 }], |
| 781 ], | 782 ], |
| 782 }, | 783 }, |
| 783 ] | 784 ] |
| 784 } | 785 } |
| OLD | NEW |