| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 "blink_heap_unittests": { | 63 "blink_heap_unittests": { |
| 64 "label": "//third_party/WebKit/public:blink_heap_unittests", | 64 "label": "//third_party/WebKit/public:blink_heap_unittests", |
| 65 "type": "unknown", | 65 "type": "unknown", |
| 66 }, | 66 }, |
| 67 "blink_platform_unittests": { | 67 "blink_platform_unittests": { |
| 68 "label": "//third_party/WebKit/public:blink_platform_unittests", | 68 "label": "//third_party/WebKit/public:blink_platform_unittests", |
| 69 "type": "unknown", | 69 "type": "unknown", |
| 70 }, | 70 }, |
| 71 "browser_tests": { | 71 "browser_tests": { |
| 72 "label": "//chrome/test:browser_tests", | 72 "label": "//chrome/test:browser_tests", |
| 73 "type": "unknown", | 73 "type": "windowed_test_launcher", |
| 74 }, | 74 }, |
| 75 "cacheinvalidation_unittests": { | 75 "cacheinvalidation_unittests": { |
| 76 "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests", | 76 "label": "//third_party/cacheinvalidation:cacheinvalidation_unittests", |
| 77 "type": "raw", | 77 "type": "raw", |
| 78 "args": [ | 78 "args": [ |
| 79 "--test-launcher-bot-mode", | 79 "--test-launcher-bot-mode", |
| 80 ], | 80 ], |
| 81 }, | 81 }, |
| 82 "cast_base_unittests": { | 82 "cast_base_unittests": { |
| 83 "label": "//cast:cast_base_unittests", | 83 "label": "//cast:cast_base_unittests", |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 }, | 378 }, |
| 379 "wm_unittests": { | 379 "wm_unittests": { |
| 380 "label": "//ui/wm:wm_unittests", | 380 "label": "//ui/wm:wm_unittests", |
| 381 "type": "windowed_test_launcher", | 381 "type": "windowed_test_launcher", |
| 382 }, | 382 }, |
| 383 "wtf_unittests": { | 383 "wtf_unittests": { |
| 384 "label": "//third_party/WebKit/public:wtf_unittests", | 384 "label": "//third_party/WebKit/public:wtf_unittests", |
| 385 "type": "unknown", | 385 "type": "unknown", |
| 386 }, | 386 }, |
| 387 } | 387 } |
| OLD | NEW |