| 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 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 700 # TODO(GYP): All of these targets still need to be converted. | 700 # TODO(GYP): All of these targets still need to be converted. |
| 701 '../chrome/chrome.gyp:gcapi_dll', | 701 '../chrome/chrome.gyp:gcapi_dll', |
| 702 '../chrome/chrome.gyp:gcapi_test', | 702 '../chrome/chrome.gyp:gcapi_test', |
| 703 '../chrome/chrome.gyp:pack_policy_templates', | 703 '../chrome/chrome.gyp:pack_policy_templates', |
| 704 | 704 |
| 705 # This is a safe browsing utility only necessary for developers. | 705 # This is a safe browsing utility only necessary for developers. |
| 706 # For now, we can skip this and anybody that needs this can add it | 706 # For now, we can skip this and anybody that needs this can add it |
| 707 # to the GN build. | 707 # to the GN build. |
| 708 '../chrome/chrome.gyp:sb_sigutil', | 708 '../chrome/chrome.gyp:sb_sigutil', |
| 709 | 709 |
| 710 # This project is up in the air. Don't need to convert it unless |
| 711 # we decide we need for something. Owner: scottmg. |
| 712 '../chrome/tools/crash_service/caps/caps.gyp:caps', |
| 713 |
| 710 '../components/test_runner/test_runner.gyp:layout_test_helper', | 714 '../components/test_runner/test_runner.gyp:layout_test_helper', |
| 711 '../content/content_shell_and_tests.gyp:content_shell_crash_service'
, | 715 '../content/content_shell_and_tests.gyp:content_shell_crash_service'
, |
| 712 '../gpu/gpu.gyp:angle_end2end_tests', | 716 '../gpu/gpu.gyp:angle_end2end_tests', |
| 713 '../gpu/gpu.gyp:angle_perftests', | 717 '../gpu/gpu.gyp:angle_perftests', |
| 714 '../ppapi/ppapi_internal.gyp:ppapi_perftests', | 718 '../ppapi/ppapi_internal.gyp:ppapi_perftests', |
| 715 '../remoting/remoting.gyp:ar_sample_test_driver', | 719 '../remoting/remoting.gyp:ar_sample_test_driver', |
| 716 '../remoting/remoting.gyp:remoting_breakpad_tester', | 720 '../remoting/remoting.gyp:remoting_breakpad_tester', |
| 717 '../remoting/remoting.gyp:remoting_console', | 721 '../remoting/remoting.gyp:remoting_console', |
| 718 '../remoting/remoting.gyp:remoting_desktop', | 722 '../remoting/remoting.gyp:remoting_desktop', |
| 719 '../tools/win/static_initializers/static_initializers.gyp:static_ini
tializers', | 723 '../tools/win/static_initializers/static_initializers.gyp:static_ini
tializers', |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 760 }], | 764 }], |
| 761 ['OS=="android" and target_arch != "x64"', { | 765 ['OS=="android" and target_arch != "x64"', { |
| 762 'dependencies': [ | 766 'dependencies': [ |
| 763 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' | 767 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' |
| 764 ], | 768 ], |
| 765 }], | 769 }], |
| 766 ], | 770 ], |
| 767 }, | 771 }, |
| 768 ] | 772 ] |
| 769 } | 773 } |
| OLD | NEW |