Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(514)

Side by Side Diff: testing/buildbot/gn_isolate_map.pyl

Issue 2486903002: DevTools: Add support for installing node and running eslint over devtools. (Closed)
Patch Set: fix Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_closure_compile.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_eslint.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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
973 }, 981 },
974 "wm_unittests": { 982 "wm_unittests": {
975 "label": "//ui/wm:wm_unittests", 983 "label": "//ui/wm:wm_unittests",
976 "type": "windowed_test_launcher", 984 "type": "windowed_test_launcher",
977 }, 985 },
978 "wtf_unittests": { 986 "wtf_unittests": {
979 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", 987 "label": "//third_party/WebKit/Source/wtf:wtf_unittests",
980 "type": "console_test_launcher", 988 "type": "console_test_launcher",
981 }, 989 },
982 } 990 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698