| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 group("services") { | 5 group("services") { |
| 6 testonly = true | 6 testonly = true |
| 7 | 7 |
| 8 deps = [ | 8 deps = [ |
| 9 ":tests", | 9 ":tests", |
| 10 "//services/asset_bundle", | 10 "//services/asset_bundle", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 78 |
| 79 deps = [ | 79 deps = [ |
| 80 "//services/asset_bundle:apptests", | 80 "//services/asset_bundle:apptests", |
| 81 "//services/authenticating_url_loader_interceptor:apptests", | 81 "//services/authenticating_url_loader_interceptor:apptests", |
| 82 "//services/clipboard:apptests", | 82 "//services/clipboard:apptests", |
| 83 "//services/http_server:apptests", | 83 "//services/http_server:apptests", |
| 84 "//services/native_support:apptests", | 84 "//services/native_support:apptests", |
| 85 "//services/prediction:apptests", | 85 "//services/prediction:apptests", |
| 86 ] | 86 ] |
| 87 | 87 |
| 88 if (!is_android) { |
| 89 deps += [ "//services/authentication:apptests" ] |
| 90 } |
| 91 |
| 88 if (is_linux && !is_fnl) { | 92 if (is_linux && !is_fnl) { |
| 89 deps += [ "//services/python:python_apptests" ] | 93 deps += [ "//services/python:python_apptests" ] |
| 90 } | 94 } |
| 91 | 95 |
| 92 if (is_android) { | 96 if (is_android) { |
| 93 deps += [ "//services/contacts:apptests" ] | 97 deps += [ "//services/contacts:apptests" ] |
| 94 deps += [ "//services/notifications:apptests" ] | 98 deps += [ "//services/notifications:apptests" ] |
| 95 } | 99 } |
| 96 | 100 |
| 97 if (is_linux || is_android) { | 101 if (is_linux || is_android) { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 112 deps += [ | 116 deps += [ |
| 113 "//services/files:apptests", | 117 "//services/files:apptests", |
| 114 "//services/log:apptests", | 118 "//services/log:apptests", |
| 115 "//services/url_response_disk_cache:tests", | 119 "//services/url_response_disk_cache:tests", |
| 116 "//services/view_manager:mojo_view_manager_client_apptests", | 120 "//services/view_manager:mojo_view_manager_client_apptests", |
| 117 "//services/view_manager:view_manager_service_apptests", | 121 "//services/view_manager:view_manager_service_apptests", |
| 118 "//services/view_manager:view_manager_service_unittests", | 122 "//services/view_manager:view_manager_service_unittests", |
| 119 ] | 123 ] |
| 120 } | 124 } |
| 121 } | 125 } |
| OLD | NEW |