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 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 "label": "//dbus:dbus_unittests", | 378 "label": "//dbus:dbus_unittests", |
379 "type": "windowed_test_launcher", | 379 "type": "windowed_test_launcher", |
380 }, | 380 }, |
381 "device_unittests": { | 381 "device_unittests": { |
382 "label": "//device:device_unittests", | 382 "label": "//device:device_unittests", |
383 "type": "console_test_launcher", | 383 "type": "console_test_launcher", |
384 }, | 384 }, |
385 "devtools_closure_compile": { | 385 "devtools_closure_compile": { |
386 "label": "//third_party/WebKit/Source/devtools:devtools_closure_compile", | 386 "label": "//third_party/WebKit/Source/devtools:devtools_closure_compile", |
387 "type": "script", | 387 "type": "script", |
388 "script": "//testing/scripts/run_devtools_closure_compile.py", | 388 "script": "//testing/scripts/run_devtools_check.py", |
389 "args": [ | 389 "args": [ |
390 "../../third_party/WebKit/Source/devtools/scripts/compile_frontend.py", | 390 "../../third_party/WebKit/Source/devtools/scripts/compile_frontend.py", |
391 ], | 391 ], |
392 }, | 392 }, |
| 393 "devtools_eslint": { |
| 394 "label": "//third_party/WebKit/Source/devtools:devtools_eslint", |
| 395 "type": "script", |
| 396 "script": "//testing/scripts/run_devtools_check.py", |
| 397 "args": [ |
| 398 "../../third_party/WebKit/Source/devtools/scripts/buildbot/run_eslint.py
", |
| 399 ], |
| 400 }, |
393 "display_unittests": { | 401 "display_unittests": { |
394 "label": "//ui/display:display_unittests", | 402 "label": "//ui/display:display_unittests", |
395 "type": "console_test_launcher", | 403 "type": "console_test_launcher", |
396 }, | 404 }, |
397 "display_service_unittests": { | 405 "display_service_unittests": { |
398 "label": "//services/ui/display:display_service_unittests", | 406 "label": "//services/ui/display:display_service_unittests", |
399 "type": "console_test_launcher", | 407 "type": "console_test_launcher", |
400 }, | 408 }, |
401 "events_unittests": { | 409 "events_unittests": { |
402 "label": "//ui/events:events_unittests", | 410 "label": "//ui/events:events_unittests", |
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
986 }, | 994 }, |
987 "wm_unittests": { | 995 "wm_unittests": { |
988 "label": "//ui/wm:wm_unittests", | 996 "label": "//ui/wm:wm_unittests", |
989 "type": "windowed_test_launcher", | 997 "type": "windowed_test_launcher", |
990 }, | 998 }, |
991 "wtf_unittests": { | 999 "wtf_unittests": { |
992 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 1000 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
993 "type": "console_test_launcher", | 1001 "type": "console_test_launcher", |
994 }, | 1002 }, |
995 } | 1003 } |
OLD | NEW |