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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 "type": "console_test_launcher", | 308 "type": "console_test_launcher", |
309 }, | 309 }, |
310 "jingle_unittests": { | 310 "jingle_unittests": { |
311 "label": "//jingle:jingle_unittests", | 311 "label": "//jingle:jingle_unittests", |
312 "type": "console_test_launcher", | 312 "type": "console_test_launcher", |
313 }, | 313 }, |
314 "keyboard_unittests": { | 314 "keyboard_unittests": { |
315 "label": "//ui/keyboard:keyboard_unittests", | 315 "label": "//ui/keyboard:keyboard_unittests", |
316 "type": "unknown", | 316 "type": "unknown", |
317 }, | 317 }, |
318 # See http://crbug.com/585151 | 318 "libaddressinput_unittests": { |
319 #"libaddressinput_unittests": { | 319 "label": "//third_party/libaddressinput:libaddressinput_unittests", |
320 #"label": "//third_party/libaddressinput:libaddressinput_unittests", | 320 "type": "console_test_launcher", |
321 #"type": "console_test_launcher", | 321 }, |
322 #}, | |
323 # See http://crbug.com/585151 | 322 # See http://crbug.com/585151 |
324 #"libphonenumber_unittests": { | 323 #"libphonenumber_unittests": { |
325 #"label": "//third_party/libphonenumber:libphonenumber_unittests", | 324 #"label": "//third_party/libphonenumber:libphonenumber_unittests", |
326 #"type": "console_test_launcher", | 325 #"type": "console_test_launcher", |
327 #}, | 326 #}, |
328 "media_unittests": { | 327 "media_unittests": { |
329 "label": "//media:media_unittests", | 328 "label": "//media:media_unittests", |
330 "type": "windowed_test_launcher", | 329 "type": "windowed_test_launcher", |
331 }, | 330 }, |
332 "media_blink_unittests": { | 331 "media_blink_unittests": { |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 }, | 548 }, |
550 "wm_unittests": { | 549 "wm_unittests": { |
551 "label": "//ui/wm:wm_unittests", | 550 "label": "//ui/wm:wm_unittests", |
552 "type": "windowed_test_launcher", | 551 "type": "windowed_test_launcher", |
553 }, | 552 }, |
554 "wtf_unittests": { | 553 "wtf_unittests": { |
555 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 554 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
556 "type": "console_test_launcher", | 555 "type": "console_test_launcher", |
557 }, | 556 }, |
558 } | 557 } |
OLD | NEW |