| 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 "type": "junit_test", | 156 "type": "junit_test", |
| 157 }, | 157 }, |
| 158 "base_unittests": { | 158 "base_unittests": { |
| 159 "label": "//base:base_unittests", | 159 "label": "//base:base_unittests", |
| 160 "type": "console_test_launcher", | 160 "type": "console_test_launcher", |
| 161 }, | 161 }, |
| 162 "battor_agent_unittests": { | 162 "battor_agent_unittests": { |
| 163 "label": "//tools/battor_agent:battor_agent_unittests", | 163 "label": "//tools/battor_agent:battor_agent_unittests", |
| 164 "type": "console_test_launcher", | 164 "type": "console_test_launcher", |
| 165 }, | 165 }, |
| 166 "blimp_browsertests": { | |
| 167 "label": "//blimp:blimp_browsertests", | |
| 168 "type": "console_test_launcher", | |
| 169 }, | |
| 170 "blimp_test_apk": { | 166 "blimp_test_apk": { |
| 171 "label": "//blimp/client/app:blimp_test_apk", | 167 "label": "//blimp/client/app:blimp_test_apk", |
| 172 "type": "console_test_launcher", | 168 "type": "console_test_launcher", |
| 173 }, | 169 }, |
| 174 "blimp_unittests": { | 170 "blimp_unittests": { |
| 175 "label": "//blimp:blimp_unittests", | 171 "label": "//blimp:blimp_unittests", |
| 176 "type": "console_test_launcher", | 172 "type": "console_test_launcher", |
| 177 }, | 173 }, |
| 178 "blink_heap_unittests": { | 174 "blink_heap_unittests": { |
| 179 "label": "//third_party/WebKit/Source/platform/heap:blink_heap_unittests", | 175 "label": "//third_party/WebKit/Source/platform/heap:blink_heap_unittests", |
| (...skipping 819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 999 }, | 995 }, |
| 1000 "wm_unittests": { | 996 "wm_unittests": { |
| 1001 "label": "//ui/wm:wm_unittests", | 997 "label": "//ui/wm:wm_unittests", |
| 1002 "type": "windowed_test_launcher", | 998 "type": "windowed_test_launcher", |
| 1003 }, | 999 }, |
| 1004 "wtf_unittests": { | 1000 "wtf_unittests": { |
| 1005 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 1001 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 1006 "type": "console_test_launcher", | 1002 "type": "console_test_launcher", |
| 1007 }, | 1003 }, |
| 1008 } | 1004 } |
| OLD | NEW |