| 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 # ninja_to_gn - A mapping of Ninja build target names to GN labels for | 5 # ninja_to_gn - A mapping of Ninja build target names to GN labels for |
| 6 # the tests run on the bots. | 6 # the tests 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "ozone_unittests": "//ui/ozone:ozone_unittests", | 77 "ozone_unittests": "//ui/ozone:ozone_unittests", |
| 78 "ppapi_unittests": "//ppapi:ppapi_unittests", | 78 "ppapi_unittests": "//ppapi:ppapi_unittests", |
| 79 "printing_unittests": "//printing:printing_unittests", | 79 "printing_unittests": "//printing:printing_unittests", |
| 80 "remoting_unittests": "//remoting:remoting_unittests", | 80 "remoting_unittests": "//remoting:remoting_unittests", |
| 81 "resource_provider_unittests": "//components/resource_provider:resource_
provider_unittests", | 81 "resource_provider_unittests": "//components/resource_provider:resource_
provider_unittests", |
| 82 "sandbox_linux_unittests": "//sandbox/linux:sandbox_linux_unittests"
, | 82 "sandbox_linux_unittests": "//sandbox/linux:sandbox_linux_unittests"
, |
| 83 "sandbox_mac_unittests": "//sandbox/mac:sandbox_mac_unittests", | 83 "sandbox_mac_unittests": "//sandbox/mac:sandbox_mac_unittests", |
| 84 "sbox_integration_tests": "//sandbox/win:sbox_integration_tests", | 84 "sbox_integration_tests": "//sandbox/win:sbox_integration_tests", |
| 85 "sbox_unittests": "//sandbox/win:sbox_unittests", | 85 "sbox_unittests": "//sandbox/win:sbox_unittests", |
| 86 "sbox_validation_tests": "//sandbox/win:sbox_validation_tests", | 86 "sbox_validation_tests": "//sandbox/win:sbox_validation_tests", |
| 87 "setup_unittests": "//chrome/installer/setup:setup_unittests
", | |
| 88 "skia_unittests": "//skia:skia_unittests", | 87 "skia_unittests": "//skia:skia_unittests", |
| 89 "sql_unittests": "//sql:sql_unittests", | 88 "sql_unittests": "//sql:sql_unittests", |
| 90 "sync_integration_tests": "//sync:sync_integration_tests", | 89 "sync_integration_tests": "//sync:sync_integration_tests", |
| 91 "sync_unit_tests": "//sync:sync_unit_tests", | 90 "sync_unit_tests": "//sync:sync_unit_tests", |
| 92 "ui_base_unittests": "//ui/base:ui_base_unittests", | 91 "ui_base_unittests": "//ui/base:ui_base_unittests", |
| 93 "ui_chromeos_unittests": "//ui/chromeos:ui_chromeos_unittests", | 92 "ui_chromeos_unittests": "//ui/chromeos:ui_chromeos_unittests", |
| 94 "ui_touch_selection_unittests": "//ui/touch_selection:ui_touch_selection_
unittests", | 93 "ui_touch_selection_unittests": "//ui/touch_selection:ui_touch_selection_
unittests", |
| 95 "unit_tests": "//chrome/test:unit_tests", | 94 "unit_tests": "//chrome/test:unit_tests", |
| 96 "url_unittests": "//url:url_unittests", | 95 "url_unittests": "//url:url_unittests", |
| 97 "view_manager_unittests": "//components/view_manager:view_manager_u
nittests", | 96 "view_manager_unittests": "//components/view_manager:view_manager_u
nittests", |
| 98 "views_unittests": "//ui/views:views_unittests", | 97 "views_unittests": "//ui/views:views_unittests", |
| 99 "webkit_unit_tests": "//third_party/WebKit/public:webkit_unit_
tests", | 98 "webkit_unit_tests": "//third_party/WebKit/public:webkit_unit_
tests", |
| 100 "wm_unittests": "//ui/wm:wm_unittests", | 99 "wm_unittests": "//ui/wm:wm_unittests", |
| 101 "wtf_unittests": "//third_party/WebKit/public:wtf_unittest
s", | 100 "wtf_unittests": "//third_party/WebKit/public:wtf_unittest
s", |
| 102 } | 101 } |
| OLD | NEW |