| 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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 ['test_isolation_mode!="noop"', { | 547 ['test_isolation_mode!="noop"', { |
| 548 'dependencies': [ | 548 'dependencies': [ |
| 549 '../base/base.gyp:base_unittests_run', | 549 '../base/base.gyp:base_unittests_run', |
| 550 '../cc/cc_tests.gyp:cc_unittests_run', | 550 '../cc/cc_tests.gyp:cc_unittests_run', |
| 551 '../chrome/chrome.gyp:browser_tests_run', | 551 '../chrome/chrome.gyp:browser_tests_run', |
| 552 '../chrome/chrome.gyp:chrome_app_unittests_run', | 552 '../chrome/chrome.gyp:chrome_app_unittests_run', |
| 553 '../chrome/chrome.gyp:chrome_run', | 553 '../chrome/chrome.gyp:chrome_run', |
| 554 '../chrome/chrome.gyp:interactive_ui_tests_run', | 554 '../chrome/chrome.gyp:interactive_ui_tests_run', |
| 555 '../chrome/chrome.gyp:sync_integration_tests_run', | 555 '../chrome/chrome.gyp:sync_integration_tests_run', |
| 556 '../chrome/chrome.gyp:unit_tests_run', | 556 '../chrome/chrome.gyp:unit_tests_run', |
| 557 '../device/device_tests.gyp:device_unittests_run', |
| 557 '../components/components_tests.gyp:components_browsertests_run', | 558 '../components/components_tests.gyp:components_browsertests_run', |
| 558 '../components/components_tests.gyp:components_unittests_run', | 559 '../components/components_tests.gyp:components_unittests_run', |
| 559 '../content/content_shell_and_tests.gyp:content_browsertests_run', | 560 '../content/content_shell_and_tests.gyp:content_browsertests_run', |
| 560 '../content/content_shell_and_tests.gyp:content_unittests_run', | 561 '../content/content_shell_and_tests.gyp:content_unittests_run', |
| 561 '../courgette/courgette.gyp:courgette_unittests_run', | 562 '../courgette/courgette.gyp:courgette_unittests_run', |
| 562 '../crypto/crypto.gyp:crypto_unittests_run', | 563 '../crypto/crypto.gyp:crypto_unittests_run', |
| 563 '../extensions/extensions_tests.gyp:extensions_browsertests_run', | 564 '../extensions/extensions_tests.gyp:extensions_browsertests_run', |
| 564 '../extensions/extensions_tests.gyp:extensions_unittests_run', | 565 '../extensions/extensions_tests.gyp:extensions_unittests_run', |
| 565 '../google_apis/gcm/gcm.gyp:gcm_unit_tests_run', | 566 '../google_apis/gcm/gcm.gyp:gcm_unit_tests_run', |
| 566 '../google_apis/google_apis.gyp:google_apis_unittests_run', | 567 '../google_apis/google_apis.gyp:google_apis_unittests_run', |
| (...skipping 215 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 |