| 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 }, | 244 }, |
| 245 "extensions_browsertests": { | 245 "extensions_browsertests": { |
| 246 "label": "//extensions:extensions_browsertests", | 246 "label": "//extensions:extensions_browsertests", |
| 247 "type": "windowed_test_launcher", | 247 "type": "windowed_test_launcher", |
| 248 }, | 248 }, |
| 249 "extensions_unittests": { | 249 "extensions_unittests": { |
| 250 "label": "//extensions:extensions_unittests", | 250 "label": "//extensions:extensions_unittests", |
| 251 "type": "windowed_test_launcher", | 251 "type": "windowed_test_launcher", |
| 252 }, | 252 }, |
| 253 "filesystem_service_unittests": { | 253 "filesystem_service_unittests": { |
| 254 "label": "//components/filesystem:unittests", | 254 "label": "//components/filesystem:filesystem_service_unittests", |
| 255 "type": "console_test_launcher", | 255 "type": "console_test_launcher", |
| 256 }, | 256 }, |
| 257 "gcm_unit_tests": { | 257 "gcm_unit_tests": { |
| 258 "label": "//google_apis/gcm:gcm_unit_tests", | 258 "label": "//google_apis/gcm:gcm_unit_tests", |
| 259 "type": "console_test_launcher", | 259 "type": "console_test_launcher", |
| 260 }, | 260 }, |
| 261 "gfx_unittests": { | 261 "gfx_unittests": { |
| 262 "label": "//ui/gfx:gfx_unittests", | 262 "label": "//ui/gfx:gfx_unittests", |
| 263 "type": "raw", | 263 "type": "raw", |
| 264 "args": [], | 264 "args": [], |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 }, | 565 }, |
| 566 "wm_unittests": { | 566 "wm_unittests": { |
| 567 "label": "//ui/wm:wm_unittests", | 567 "label": "//ui/wm:wm_unittests", |
| 568 "type": "windowed_test_launcher", | 568 "type": "windowed_test_launcher", |
| 569 }, | 569 }, |
| 570 "wtf_unittests": { | 570 "wtf_unittests": { |
| 571 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 571 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
| 572 "type": "console_test_launcher", | 572 "type": "console_test_launcher", |
| 573 }, | 573 }, |
| 574 } | 574 } |
| OLD | NEW |