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

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

Issue 2017853002: Add functionality to the install_static library to tokenize strings and compare versions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add install_static_unittests to other windows bots Created 4 years, 6 months 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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 "type": "console_test_launcher", 331 "type": "console_test_launcher",
332 }, 332 },
333 "headless_unittests": { 333 "headless_unittests": {
334 "label": "//headless:headless_unittests", 334 "label": "//headless:headless_unittests",
335 "type": "console_test_launcher", 335 "type": "console_test_launcher",
336 }, 336 },
337 "installer_util_unittests": { 337 "installer_util_unittests": {
338 "label": "//chrome/installer/util:installer_util_unittests", 338 "label": "//chrome/installer/util:installer_util_unittests",
339 "type": "console_test_launcher", 339 "type": "console_test_launcher",
340 }, 340 },
341 "install_static_unittests": {
342 "label": "//chrome/install_static:install_static_unittests",
343 "type": "console_test_launcher",
344 },
341 "interactive_ui_tests": { 345 "interactive_ui_tests": {
342 "label": "//chrome/test:interactive_ui_tests", 346 "label": "//chrome/test:interactive_ui_tests",
343 "type": "windowed_test_launcher", 347 "type": "windowed_test_launcher",
344 }, 348 },
345 "ipc_mojo_unittests": { 349 "ipc_mojo_unittests": {
346 "label": "//ipc/mojo:ipc_mojo_unittests", 350 "label": "//ipc/mojo:ipc_mojo_unittests",
347 "type": "console_test_launcher", 351 "type": "console_test_launcher",
348 }, 352 },
349 "ipc_tests": { 353 "ipc_tests": {
350 "label": "//ipc:ipc_tests", 354 "label": "//ipc:ipc_tests",
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 }, 617 },
614 "wm_unittests": { 618 "wm_unittests": {
615 "label": "//ui/wm:wm_unittests", 619 "label": "//ui/wm:wm_unittests",
616 "type": "windowed_test_launcher", 620 "type": "windowed_test_launcher",
617 }, 621 },
618 "wtf_unittests": { 622 "wtf_unittests": {
619 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", 623 "label": "//third_party/WebKit/Source/wtf:wtf_unittests",
620 "type": "console_test_launcher", 624 "type": "console_test_launcher",
621 }, 625 },
622 } 626 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698