| 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 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 }], | 603 }], |
| 604 ['OS=="mac"', { | 604 ['OS=="mac"', { |
| 605 'dependencies': [ | 605 'dependencies': [ |
| 606 '../sandbox/sandbox.gyp:sandbox_mac_unittests_run', | 606 '../sandbox/sandbox.gyp:sandbox_mac_unittests_run', |
| 607 ], | 607 ], |
| 608 }], | 608 }], |
| 609 ['OS=="win"', { | 609 ['OS=="win"', { |
| 610 'dependencies': [ | 610 'dependencies': [ |
| 611 '../chrome/chrome.gyp:installer_util_unittests_run', | 611 '../chrome/chrome.gyp:installer_util_unittests_run', |
| 612 '../chrome/chrome.gyp:setup_unittests_run', | 612 '../chrome/chrome.gyp:setup_unittests_run', |
| 613 '../chrome_elf/chrome_elf.gyp:chrome_elf_unittests_run', |
| 613 '../sandbox/sandbox.gyp:sbox_integration_tests_run', | 614 '../sandbox/sandbox.gyp:sbox_integration_tests_run', |
| 614 '../sandbox/sandbox.gyp:sbox_unittests_run', | 615 '../sandbox/sandbox.gyp:sbox_unittests_run', |
| 615 '../sandbox/sandbox.gyp:sbox_validation_tests_run', | 616 '../sandbox/sandbox.gyp:sbox_validation_tests_run', |
| 616 ], | 617 ], |
| 617 }], | 618 }], |
| 618 ['OS!="android"', { | 619 ['OS!="android"', { |
| 619 'dependencies': [ | 620 'dependencies': [ |
| 620 '../ipc/ipc.gyp:ipc_tests_run', | 621 '../ipc/ipc.gyp:ipc_tests_run', |
| 621 '../ui/base/ui_base_tests.gyp:ui_base_unittests_run', | 622 '../ui/base/ui_base_tests.gyp:ui_base_unittests_run', |
| 622 '../ui/gl/gl_tests.gyp:gl_unittests_run', | 623 '../ui/gl/gl_tests.gyp:gl_unittests_run', |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 }], | 783 }], |
| 783 ['OS=="android" and target_arch != "x64"', { | 784 ['OS=="android" and target_arch != "x64"', { |
| 784 'dependencies': [ | 785 'dependencies': [ |
| 785 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' | 786 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' |
| 786 ], | 787 ], |
| 787 }], | 788 }], |
| 788 ], | 789 ], |
| 789 }, | 790 }, |
| 790 ] | 791 ] |
| 791 } | 792 } |
| OLD | NEW |