| 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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 "type": "console_test_launcher", | 370 "type": "console_test_launcher", |
| 371 }, | 371 }, |
| 372 "dbus_unittests": { | 372 "dbus_unittests": { |
| 373 "label": "//dbus:dbus_unittests", | 373 "label": "//dbus:dbus_unittests", |
| 374 "type": "windowed_test_launcher", | 374 "type": "windowed_test_launcher", |
| 375 }, | 375 }, |
| 376 "device_unittests": { | 376 "device_unittests": { |
| 377 "label": "//device:device_unittests", | 377 "label": "//device:device_unittests", |
| 378 "type": "console_test_launcher", | 378 "type": "console_test_launcher", |
| 379 }, | 379 }, |
| 380 "devtools_closure_compile": { |
| 381 "label": "//third_party/WebKit/Source/devtools:devtools_closure_compile", |
| 382 "type": "script", |
| 383 "script": "//testing/scripts/run_devtools_closure_compile.py", |
| 384 "args": [ |
| 385 "../../third_party/WebKit/Source/devtools/scripts/compile_frontend.py", |
| 386 ], |
| 387 }, |
| 380 "display_unittests": { | 388 "display_unittests": { |
| 381 "label": "//ui/display:display_unittests", | 389 "label": "//ui/display:display_unittests", |
| 382 "type": "console_test_launcher", | 390 "type": "console_test_launcher", |
| 383 }, | 391 }, |
| 384 "display_service_unittests": { | 392 "display_service_unittests": { |
| 385 "label": "//services/ui/display:display_service_unittests", | 393 "label": "//services/ui/display:display_service_unittests", |
| 386 "type": "console_test_launcher", | 394 "type": "console_test_launcher", |
| 387 }, | 395 }, |
| 388 "events_unittests": { | 396 "events_unittests": { |
| 389 "label": "//ui/events:events_unittests", | 397 "label": "//ui/events:events_unittests", |
| (...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 949 }, | 957 }, |
| 950 "wm_unittests": { | 958 "wm_unittests": { |
| 951 "label": "//ui/wm:wm_unittests", | 959 "label": "//ui/wm:wm_unittests", |
| 952 "type": "windowed_test_launcher", | 960 "type": "windowed_test_launcher", |
| 953 }, | 961 }, |
| 954 "wtf_unittests": { | 962 "wtf_unittests": { |
| 955 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 963 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 956 "type": "console_test_launcher", | 964 "type": "console_test_launcher", |
| 957 }, | 965 }, |
| 958 } | 966 } |
| OLD | NEW |