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 "type": "windowed_test_launcher", | 244 "type": "windowed_test_launcher", |
245 }, | 245 }, |
246 "extensions_browsertests": { | 246 "extensions_browsertests": { |
247 "label": "//extensions:extensions_browsertests", | 247 "label": "//extensions:extensions_browsertests", |
248 "type": "windowed_test_launcher", | 248 "type": "windowed_test_launcher", |
249 }, | 249 }, |
250 "extensions_unittests": { | 250 "extensions_unittests": { |
251 "label": "//extensions:extensions_unittests", | 251 "label": "//extensions:extensions_unittests", |
252 "type": "windowed_test_launcher", | 252 "type": "windowed_test_launcher", |
253 }, | 253 }, |
| 254 "filesystem_service_unittests": { |
| 255 "label": "//components/filesystem:unittests", |
| 256 "type": "console_test_launcher", |
| 257 }, |
254 "gcm_unit_tests": { | 258 "gcm_unit_tests": { |
255 "label": "//google_apis/gcm:gcm_unit_tests", | 259 "label": "//google_apis/gcm:gcm_unit_tests", |
256 "type": "console_test_launcher", | 260 "type": "console_test_launcher", |
257 }, | 261 }, |
258 "gfx_unittests": { | 262 "gfx_unittests": { |
259 "label": "//ui/gfx:gfx_unittests", | 263 "label": "//ui/gfx:gfx_unittests", |
260 "type": "raw", | 264 "type": "raw", |
261 "args": [], | 265 "args": [], |
262 }, | 266 }, |
263 "gin_unittests": { | 267 "gin_unittests": { |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
554 }, | 558 }, |
555 "wm_unittests": { | 559 "wm_unittests": { |
556 "label": "//ui/wm:wm_unittests", | 560 "label": "//ui/wm:wm_unittests", |
557 "type": "windowed_test_launcher", | 561 "type": "windowed_test_launcher", |
558 }, | 562 }, |
559 "wtf_unittests": { | 563 "wtf_unittests": { |
560 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", | 564 "label": "//third_party/WebKit/Source/wtf:wtf_unittests", |
561 "type": "console_test_launcher", | 565 "type": "console_test_launcher", |
562 }, | 566 }, |
563 } | 567 } |
OLD | NEW |