| 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 }, | 186 }, |
| 187 "gcm_unit_tests": { | 187 "gcm_unit_tests": { |
| 188 "label": "//google_apis/gcm:gcm_unit_tests", | 188 "label": "//google_apis/gcm:gcm_unit_tests", |
| 189 "type": "console_test_launcher", | 189 "type": "console_test_launcher", |
| 190 }, | 190 }, |
| 191 "gfx_unittests": { | 191 "gfx_unittests": { |
| 192 "label": "//ui/gfx:gfx_unittests", | 192 "label": "//ui/gfx:gfx_unittests", |
| 193 "type": "raw", | 193 "type": "raw", |
| 194 "args": [], | 194 "args": [], |
| 195 }, | 195 }, |
| 196 "gin_unittests": { |
| 197 "label": "//gin:gin_unittests", |
| 198 "type": "console_test_launcher", |
| 199 }, |
| 196 "gles2_conform_test": { | 200 "gles2_conform_test": { |
| 197 "label": "//gpu/gles2_conform_support:gles2_conform_test", | 201 "label": "//gpu/gles2_conform_support:gles2_conform_test", |
| 198 "type": "console_test_launcher", | 202 "type": "console_test_launcher", |
| 199 }, | 203 }, |
| 200 "gl_tests": { | 204 "gl_tests": { |
| 201 "label": "//gpu:gl_tests", | 205 "label": "//gpu:gl_tests", |
| 202 "type": "raw", | 206 "type": "raw", |
| 203 "args": [], | 207 "args": [], |
| 204 }, | 208 }, |
| 205 "gl_unittests": { | 209 "gl_unittests": { |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 }, | 473 }, |
| 470 "wm_unittests": { | 474 "wm_unittests": { |
| 471 "label": "//ui/wm:wm_unittests", | 475 "label": "//ui/wm:wm_unittests", |
| 472 "type": "windowed_test_launcher", | 476 "type": "windowed_test_launcher", |
| 473 }, | 477 }, |
| 474 "wtf_unittests": { | 478 "wtf_unittests": { |
| 475 "label": "//third_party/WebKit/public:wtf_unittests", | 479 "label": "//third_party/WebKit/public:wtf_unittests", |
| 476 "type": "unknown", | 480 "type": "unknown", |
| 477 }, | 481 }, |
| 478 } | 482 } |
| OLD | NEW |