| 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 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 #"//net:net_unittests", # TODO(GYP) | 515 #"//net:net_unittests", # TODO(GYP) |
| 516 #"//third_party/usrsctp", # TODO(GYP) | 516 #"//third_party/usrsctp", # TODO(GYP) |
| 517 #"//ui/app_list:app_list_unittests", # TODO(GYP) | 517 #"//ui/app_list:app_list_unittests", # TODO(GYP) |
| 518 #"//ui/gfx:gfx_unittests", # TODO(GYP) | 518 #"//ui/gfx:gfx_unittests", # TODO(GYP) |
| 519 ], | 519 ], |
| 520 }], | 520 }], |
| 521 ['OS=="win"', { | 521 ['OS=="win"', { |
| 522 'dependencies': [ | 522 'dependencies': [ |
| 523 '../base/base.gyp:pe_image_test', | 523 '../base/base.gyp:pe_image_test', |
| 524 '../chrome/chrome.gyp:installer_util_unittests', | 524 '../chrome/chrome.gyp:installer_util_unittests', |
| 525 '../chrome/chrome.gyp:install_static_unittests', |
| 525 '../chrome/chrome.gyp:setup', | 526 '../chrome/chrome.gyp:setup', |
| 526 '../chrome/chrome.gyp:setup_unittests', | 527 '../chrome/chrome.gyp:setup_unittests', |
| 527 '../chrome/installer/mini_installer.gyp:mini_installer', | 528 '../chrome/installer/mini_installer.gyp:mini_installer', |
| 528 '../chrome_elf/chrome_elf.gyp:chrome_elf_unittests', | 529 '../chrome_elf/chrome_elf.gyp:chrome_elf_unittests', |
| 529 '../chrome_elf/chrome_elf.gyp:dll_hash_main', | 530 '../chrome_elf/chrome_elf.gyp:dll_hash_main', |
| 530 '../components/components.gyp:wifi_test', | 531 '../components/components.gyp:wifi_test', |
| 531 '../net/net.gyp:quic_client', | 532 '../net/net.gyp:quic_client', |
| 532 '../net/net.gyp:quic_server', | 533 '../net/net.gyp:quic_server', |
| 533 '../rlz/rlz.gyp:rlz', | 534 '../rlz/rlz.gyp:rlz', |
| 534 '../sandbox/sandbox.gyp:pocdll', | 535 '../sandbox/sandbox.gyp:pocdll', |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 787 }], | 788 }], |
| 788 ['OS=="android" and target_arch != "x64"', { | 789 ['OS=="android" and target_arch != "x64"', { |
| 789 'dependencies': [ | 790 'dependencies': [ |
| 790 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' | 791 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' |
| 791 ], | 792 ], |
| 792 }], | 793 }], |
| 793 ], | 794 ], |
| 794 }, | 795 }, |
| 795 ] | 796 ] |
| 796 } | 797 } |
| OLD | NEW |