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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 "type": "console_test_launcher", | 312 "type": "console_test_launcher", |
313 }, | 313 }, |
314 "jingle_unittests": { | 314 "jingle_unittests": { |
315 "label": "//jingle:jingle_unittests", | 315 "label": "//jingle:jingle_unittests", |
316 "type": "console_test_launcher", | 316 "type": "console_test_launcher", |
317 }, | 317 }, |
318 "keyboard_unittests": { | 318 "keyboard_unittests": { |
319 "label": "//ui/keyboard:keyboard_unittests", | 319 "label": "//ui/keyboard:keyboard_unittests", |
320 "type": "unknown", | 320 "type": "unknown", |
321 }, | 321 }, |
| 322 "leveldb_service_unittests": { |
| 323 "label": "//components/leveldb:leveldb_service_unittests", |
| 324 "type": "console_test_launcher", |
| 325 }, |
322 # See http://crbug.com/585151 | 326 # See http://crbug.com/585151 |
323 #"libaddressinput_unittests": { | 327 #"libaddressinput_unittests": { |
324 #"label": "//third_party/libaddressinput:libaddressinput_unittests", | 328 #"label": "//third_party/libaddressinput:libaddressinput_unittests", |
325 #"type": "console_test_launcher", | 329 #"type": "console_test_launcher", |
326 #}, | 330 #}, |
327 # See http://crbug.com/585151 | 331 # See http://crbug.com/585151 |
328 #"libphonenumber_unittests": { | 332 #"libphonenumber_unittests": { |
329 #"label": "//third_party/libphonenumber:libphonenumber_unittests", | 333 #"label": "//third_party/libphonenumber:libphonenumber_unittests", |
330 #"type": "console_test_launcher", | 334 #"type": "console_test_launcher", |
331 #}, | 335 #}, |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
558 }, | 562 }, |
559 "wm_unittests": { | 563 "wm_unittests": { |
560 "label": "//ui/wm:wm_unittests", | 564 "label": "//ui/wm:wm_unittests", |
561 "type": "windowed_test_launcher", | 565 "type": "windowed_test_launcher", |
562 }, | 566 }, |
563 "wtf_unittests": { | 567 "wtf_unittests": { |
564 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 568 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
565 "type": "console_test_launcher", | 569 "type": "console_test_launcher", |
566 }, | 570 }, |
567 } | 571 } |
OLD | NEW |