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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "type": "unknown", | 61 "type": "unknown", |
62 }, | 62 }, |
63 "aura_unittests": { | 63 "aura_unittests": { |
64 "label": "//ui/aura:aura_unittests", | 64 "label": "//ui/aura:aura_unittests", |
65 "type": "windowed_test_launcher", | 65 "type": "windowed_test_launcher", |
66 }, | 66 }, |
67 "base_unittests": { | 67 "base_unittests": { |
68 "label": "//base:base_unittests", | 68 "label": "//base:base_unittests", |
69 "type": "console_test_launcher", | 69 "type": "console_test_launcher", |
70 }, | 70 }, |
| 71 "blimp_common_unit_tests": { |
| 72 "label": "//blimp/common:blimp_common_unit_tests", |
| 73 "type": "console_test_launcher", |
| 74 }, |
71 "blink_heap_unittests": { | 75 "blink_heap_unittests": { |
72 "label": "//third_party/WebKit/public:blink_heap_unittests", | 76 "label": "//third_party/WebKit/public:blink_heap_unittests", |
73 "type": "unknown", | 77 "type": "unknown", |
74 }, | 78 }, |
75 "blink_platform_unittests": { | 79 "blink_platform_unittests": { |
76 "label": "//third_party/WebKit/public:blink_platform_unittests", | 80 "label": "//third_party/WebKit/public:blink_platform_unittests", |
77 "type": "unknown", | 81 "type": "unknown", |
78 }, | 82 }, |
79 "browser_tests": { | 83 "browser_tests": { |
80 "label": "//chrome/test:browser_tests", | 84 "label": "//chrome/test:browser_tests", |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 }, | 418 }, |
415 "wm_unittests": { | 419 "wm_unittests": { |
416 "label": "//ui/wm:wm_unittests", | 420 "label": "//ui/wm:wm_unittests", |
417 "type": "windowed_test_launcher", | 421 "type": "windowed_test_launcher", |
418 }, | 422 }, |
419 "wtf_unittests": { | 423 "wtf_unittests": { |
420 "label": "//third_party/WebKit/public:wtf_unittests", | 424 "label": "//third_party/WebKit/public:wtf_unittests", |
421 "type": "unknown", | 425 "type": "unknown", |
422 }, | 426 }, |
423 } | 427 } |
OLD | NEW |