| 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 three targets that we are using to | 5 # This file defines three targets that we are using to |
| 6 # track the progress of the GYP->GN migration: | 6 # track the progress of the GYP->GN migration: |
| 7 # | 7 # |
| 8 # If you run 'ninja gn_build gyp_remaining gyp_groups', and then | 8 # If you run 'ninja gn_build gyp_remaining gyp_groups', and then |
| 9 # run 'ninja', the second ninja invocation should do nothing. This | 9 # run 'ninja', the second ninja invocation should do nothing. This |
| 10 # indicates that everything built by a ninja build is in fact | 10 # indicates that everything built by a ninja build is in fact |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 # This target should mirror the structure of //:gn_all | 32 # This target should mirror the structure of //:gn_all |
| 33 # as closely as possible, for ease of comparison. | 33 # as closely as possible, for ease of comparison. |
| 34 'target_name': 'gn_all', | 34 'target_name': 'gn_all', |
| 35 'type': 'none', | 35 'type': 'none', |
| 36 'dependencies': [ | 36 'dependencies': [ |
| 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 '../base/base.gyp:protect_file_posix', | |
| 43 '../cc/cc_tests.gyp:cc_perftests', | 42 '../cc/cc_tests.gyp:cc_perftests', |
| 44 '../cc/cc_tests.gyp:cc_unittests', | 43 '../cc/cc_tests.gyp:cc_unittests', |
| 45 '../cc/blink/cc_blink_tests.gyp:cc_blink_unittests', | 44 '../cc/blink/cc_blink_tests.gyp:cc_blink_unittests', |
| 46 '../chrome/chrome.gyp:chrome', | 45 '../chrome/chrome.gyp:chrome', |
| 47 '../chrome/chrome.gyp:browser_tests', | 46 '../chrome/chrome.gyp:browser_tests', |
| 48 '../chrome/chrome.gyp:chrome_app_unittests', | 47 '../chrome/chrome.gyp:chrome_app_unittests', |
| 49 '../chrome/chrome.gyp:chromedriver', | 48 '../chrome/chrome.gyp:chromedriver', |
| 50 '../chrome/chrome.gyp:chromedriver_tests', | 49 '../chrome/chrome.gyp:chromedriver_tests', |
| 51 '../chrome/chrome.gyp:chromedriver_unittests', | 50 '../chrome/chrome.gyp:chromedriver_unittests', |
| 52 '../chrome/chrome.gyp:interactive_ui_tests', | 51 '../chrome/chrome.gyp:interactive_ui_tests', |
| (...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 'chromium_builder_nacl_sdk', | 695 'chromium_builder_nacl_sdk', |
| 697 'chromium_builder_lkgr_drmemory_win', | 696 'chromium_builder_lkgr_drmemory_win', |
| 698 'chromium_builder_dbg_tsan_win', | 697 'chromium_builder_dbg_tsan_win', |
| 699 ], | 698 ], |
| 700 }], | 699 }], |
| 701 ], | 700 ], |
| 702 }, | 701 }, |
| 703 ] | 702 ] |
| 704 } | 703 } |
| 705 | 704 |
| OLD | NEW |