| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 "type": "windowed_test_launcher", | 266 "type": "windowed_test_launcher", |
| 267 }, | 267 }, |
| 268 "midi_unittests": { | 268 "midi_unittests": { |
| 269 "label": "//media/midi:midi_unittests", | 269 "label": "//media/midi:midi_unittests", |
| 270 "type": "windowed_test_launcher", | 270 "type": "windowed_test_launcher", |
| 271 }, | 271 }, |
| 272 "mojo_common_unittests": { | 272 "mojo_common_unittests": { |
| 273 "label": "//mojo/common:mojo_common_unittests", | 273 "label": "//mojo/common:mojo_common_unittests", |
| 274 "type": "console_test_launcher", | 274 "type": "console_test_launcher", |
| 275 }, | 275 }, |
| 276 "mojo_js_integration_tests": { |
| 277 "label": "//mojo/edk/js/test:js_integration_tests", |
| 278 "type": "console_test_launcher", |
| 279 }, |
| 280 "mojo_js_unittests": { |
| 281 "label": "//mojo/edk/js/test:js_unittests", |
| 282 "type": "console_test_launcher", |
| 283 }, |
| 276 "mojo_public_application_unittests": { | 284 "mojo_public_application_unittests": { |
| 277 "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_applicaiton_unitt
ests", | 285 "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_applicaiton_unitt
ests", |
| 278 "type": "unknown", | 286 "type": "unknown", |
| 279 }, | 287 }, |
| 280 "mojo_public_bindings_unittests": { | 288 "mojo_public_bindings_unittests": { |
| 281 "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittest
s", | 289 "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_bindings_unittest
s", |
| 282 "type": "console_test_launcher", | 290 "type": "console_test_launcher", |
| 283 }, | 291 }, |
| 284 "mojo_public_environment_unittests": { | 292 "mojo_public_environment_unittests": { |
| 285 "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unitt
ests", | 293 "label": "//third_party/mojo/src/mojo/edk/test:mojo_public_environment_unitt
ests", |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 }, | 481 }, |
| 474 "wm_unittests": { | 482 "wm_unittests": { |
| 475 "label": "//ui/wm:wm_unittests", | 483 "label": "//ui/wm:wm_unittests", |
| 476 "type": "windowed_test_launcher", | 484 "type": "windowed_test_launcher", |
| 477 }, | 485 }, |
| 478 "wtf_unittests": { | 486 "wtf_unittests": { |
| 479 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 487 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 480 "type": "console_test_launcher", | 488 "type": "console_test_launcher", |
| 481 }, | 489 }, |
| 482 } | 490 } |
| OLD | NEW |