| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "args": [], | 66 "args": [], |
| 67 }, | 67 }, |
| 68 "aura_unittests": { | 68 "aura_unittests": { |
| 69 "label": "//ui/aura:aura_unittests", | 69 "label": "//ui/aura:aura_unittests", |
| 70 "type": "windowed_test_launcher", | 70 "type": "windowed_test_launcher", |
| 71 }, | 71 }, |
| 72 "base_unittests": { | 72 "base_unittests": { |
| 73 "label": "//base:base_unittests", | 73 "label": "//base:base_unittests", |
| 74 "type": "console_test_launcher", | 74 "type": "console_test_launcher", |
| 75 }, | 75 }, |
| 76 "battor_agent_unittests": { |
| 77 "label": "//tools/battor_agent:battor_agent_unittests", |
| 78 "type": "console_test_launcher", |
| 79 }, |
| 76 "blimp_unittests": { | 80 "blimp_unittests": { |
| 77 "label": "//blimp:blimp_unittests", | 81 "label": "//blimp:blimp_unittests", |
| 78 "type": "console_test_launcher", | 82 "type": "console_test_launcher", |
| 79 }, | 83 }, |
| 80 "blink_heap_unittests": { | 84 "blink_heap_unittests": { |
| 81 "label": "//third_party/WebKit/Source/platform:blink_heap_unittests", | 85 "label": "//third_party/WebKit/Source/platform:blink_heap_unittests", |
| 82 "type": "console_test_launcher", | 86 "type": "console_test_launcher", |
| 83 }, | 87 }, |
| 84 "blink_platform_unittests": { | 88 "blink_platform_unittests": { |
| 85 "label": "//third_party/WebKit/Source/platform:blink_platform_unittests", | 89 "label": "//third_party/WebKit/Source/platform:blink_platform_unittests", |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 }, | 485 }, |
| 482 "wm_unittests": { | 486 "wm_unittests": { |
| 483 "label": "//ui/wm:wm_unittests", | 487 "label": "//ui/wm:wm_unittests", |
| 484 "type": "windowed_test_launcher", | 488 "type": "windowed_test_launcher", |
| 485 }, | 489 }, |
| 486 "wtf_unittests": { | 490 "wtf_unittests": { |
| 487 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 491 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 488 "type": "console_test_launcher", | 492 "type": "console_test_launcher", |
| 489 }, | 493 }, |
| 490 } | 494 } |
| OLD | NEW |