| 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 26 matching lines...) Expand all Loading... |
| 37 '../base/base.gyp:base_i18n_perftests', | 37 '../base/base.gyp:base_i18n_perftests', |
| 38 '../base/base.gyp:base_perftests', | 38 '../base/base.gyp:base_perftests', |
| 39 '../base/base.gyp:base_unittests', | 39 '../base/base.gyp:base_unittests', |
| 40 '../base/base.gyp:build_utf8_validator_tables#host', | 40 '../base/base.gyp:build_utf8_validator_tables#host', |
| 41 '../base/base.gyp:check_example', | 41 '../base/base.gyp:check_example', |
| 42 '../cc/cc_tests.gyp:cc_perftests', | 42 '../cc/cc_tests.gyp:cc_perftests', |
| 43 '../cc/cc_tests.gyp:cc_unittests', | 43 '../cc/cc_tests.gyp:cc_unittests', |
| 44 '../cc/blink/cc_blink_tests.gyp:cc_blink_unittests', | 44 '../cc/blink/cc_blink_tests.gyp:cc_blink_unittests', |
| 45 '../chrome/chrome.gyp:chrome', | 45 '../chrome/chrome.gyp:chrome', |
| 46 '../chrome/chrome.gyp:browser_tests', | 46 '../chrome/chrome.gyp:browser_tests', |
| 47 '../chrome/chrome.gyp:chrome_app_unittests', | |
| 48 '../chrome/chrome.gyp:chromedriver', | 47 '../chrome/chrome.gyp:chromedriver', |
| 49 '../chrome/chrome.gyp:chromedriver_tests', | 48 '../chrome/chrome.gyp:chromedriver_tests', |
| 50 '../chrome/chrome.gyp:chromedriver_unittests', | 49 '../chrome/chrome.gyp:chromedriver_unittests', |
| 51 '../chrome/chrome.gyp:interactive_ui_tests', | 50 '../chrome/chrome.gyp:interactive_ui_tests', |
| 52 '../chrome/chrome.gyp:load_library_perf_tests', | 51 '../chrome/chrome.gyp:load_library_perf_tests', |
| 53 '../chrome/chrome.gyp:performance_browser_tests', | 52 '../chrome/chrome.gyp:performance_browser_tests', |
| 54 '../chrome/chrome.gyp:sync_integration_tests', | 53 '../chrome/chrome.gyp:sync_integration_tests', |
| 55 '../chrome/chrome.gyp:sync_performance_tests', | 54 '../chrome/chrome.gyp:sync_performance_tests', |
| 56 '../chrome/chrome.gyp:unit_tests', | 55 '../chrome/chrome.gyp:unit_tests', |
| 57 '../chrome/tools/profile_reset/jtl_compiler.gyp:jtl_compiler', | 56 '../chrome/tools/profile_reset/jtl_compiler.gyp:jtl_compiler', |
| (...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 697 'dependencies': [ | 696 'dependencies': [ |
| 698 # TODO(GYP): All of these targets need to be ported over. | 697 # TODO(GYP): All of these targets need to be ported over. |
| 699 '../components/components.gyp:policy_win64', | 698 '../components/components.gyp:policy_win64', |
| 700 ] | 699 ] |
| 701 }], | 700 }], |
| 702 ], | 701 ], |
| 703 }, | 702 }, |
| 704 ] | 703 ] |
| 705 } | 704 } |
| 706 | 705 |
| OLD | NEW |