| OLD | NEW |
| 1 ## Copyright 2015 The Chromium Authors. All rights reserved. | 1 ## Copyright 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 # gn_isolate_map.pyl - A mapping of Ninja build target names to GN labels and | 5 # gn_isolate_map.pyl - A mapping of Ninja build target names to GN labels and |
| 6 # test type classifications for the tests that are run on the bots. | 6 # test type classifications for the tests that are run on the bots. |
| 7 # | 7 # |
| 8 # This mapping is used by MB so that we can uniformly refer to test binaries | 8 # This mapping is used by MB so that we can uniformly refer to test binaries |
| 9 # by their Ninja target names in the recipes and not need to worry about how | 9 # by their Ninja target names in the recipes and not need to worry about how |
| 10 # they are referred to in GN or GYP specifically (the GYP target name is pretty | 10 # they are referred to in GN or GYP specifically (the GYP target name is pretty |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 }, | 511 }, |
| 512 "install_static_unittests": { | 512 "install_static_unittests": { |
| 513 "label": "//chrome/install_static:install_static_unittests", | 513 "label": "//chrome/install_static:install_static_unittests", |
| 514 "type": "console_test_launcher", | 514 "type": "console_test_launcher", |
| 515 }, | 515 }, |
| 516 "interactive_ui_tests": { | 516 "interactive_ui_tests": { |
| 517 "label": "//chrome/test:interactive_ui_tests", | 517 "label": "//chrome/test:interactive_ui_tests", |
| 518 "type": "windowed_test_launcher", | 518 "type": "windowed_test_launcher", |
| 519 }, | 519 }, |
| 520 "ios_chrome_unittests": { | 520 "ios_chrome_unittests": { |
| 521 "label": "//ios/chrome:ios_chrome_unittests", | 521 "label": "//ios/chrome/test:ios_chrome_unittests", |
| 522 "type": "raw", | 522 "type": "raw", |
| 523 "args": [], | 523 "args": [], |
| 524 }, | 524 }, |
| 525 "ios_net_unittests": { | 525 "ios_net_unittests": { |
| 526 "label": "//ios/net:ios_net_unittests", | 526 "label": "//ios/net:ios_net_unittests", |
| 527 "type": "raw", | 527 "type": "raw", |
| 528 "args": [], | 528 "args": [], |
| 529 }, | 529 }, |
| 530 "ios_web_inttests": { | 530 "ios_web_inttests": { |
| 531 "label": "//ios/web:ios_web_inttests", | 531 "label": "//ios/web:ios_web_inttests", |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 997 }, | 997 }, |
| 998 "wm_unittests": { | 998 "wm_unittests": { |
| 999 "label": "//ui/wm:wm_unittests", | 999 "label": "//ui/wm:wm_unittests", |
| 1000 "type": "windowed_test_launcher", | 1000 "type": "windowed_test_launcher", |
| 1001 }, | 1001 }, |
| 1002 "wtf_unittests": { | 1002 "wtf_unittests": { |
| 1003 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 1003 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 1004 "type": "console_test_launcher", | 1004 "type": "console_test_launcher", |
| 1005 }, | 1005 }, |
| 1006 } | 1006 } |
| OLD | NEW |