| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 { | 63 { |
| 64 "accessibility_unittests": { | 64 "accessibility_unittests": { |
| 65 "label": "//ui/accessibility:accessibility_unittests", | 65 "label": "//ui/accessibility:accessibility_unittests", |
| 66 "type": "raw", | 66 "type": "raw", |
| 67 "args": [], | 67 "args": [], |
| 68 }, | 68 }, |
| 69 "android_webview_unittests": { | 69 "android_webview_unittests": { |
| 70 "label": "//android_webview/test:android_webview_unittests", | 70 "label": "//android_webview/test:android_webview_unittests", |
| 71 "type": "console_test_launcher", | 71 "type": "console_test_launcher", |
| 72 }, | 72 }, |
| 73 "angle_deqp_egl_tests": { |
| 74 "label": "//third_party/angle/src/tests:angle_deqp_egl_tests", |
| 75 "type": "raw", |
| 76 "args": [], |
| 77 }, |
| 73 "angle_deqp_gles2_tests": { | 78 "angle_deqp_gles2_tests": { |
| 74 "label": "//third_party/angle/src/tests:angle_deqp_gles2_tests", | 79 "label": "//third_party/angle/src/tests:angle_deqp_gles2_tests", |
| 75 "type": "raw", | 80 "type": "raw", |
| 76 "args": [], | 81 "args": [], |
| 77 }, | 82 }, |
| 78 "angle_deqp_gles3_tests": { | 83 "angle_deqp_gles3_tests": { |
| 79 "label": "//third_party/angle/src/tests:angle_deqp_gles3_tests", | 84 "label": "//third_party/angle/src/tests:angle_deqp_gles3_tests", |
| 80 "type": "raw", | 85 "type": "raw", |
| 81 "args": [], | 86 "args": [], |
| 82 }, | 87 }, |
| (...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 549 }, | 554 }, |
| 550 "wm_unittests": { | 555 "wm_unittests": { |
| 551 "label": "//ui/wm:wm_unittests", | 556 "label": "//ui/wm:wm_unittests", |
| 552 "type": "windowed_test_launcher", | 557 "type": "windowed_test_launcher", |
| 553 }, | 558 }, |
| 554 "wtf_unittests": { | 559 "wtf_unittests": { |
| 555 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 560 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 556 "type": "console_test_launcher", | 561 "type": "console_test_launcher", |
| 557 }, | 562 }, |
| 558 } | 563 } |
| OLD | NEW |