| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 if (is_linux || is_android) { | 88 if (is_linux || is_android) { |
| 89 deps += [ | 89 deps += [ |
| 90 "//services/window_manager:window_manager_apptests", | 90 "//services/window_manager:window_manager_apptests", |
| 91 "//services/window_manager:window_manager_unittests", | 91 "//services/window_manager:window_manager_unittests", |
| 92 ] | 92 ] |
| 93 } | 93 } |
| 94 | 94 |
| 95 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc
e it | 95 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc
e it |
| 96 # needs a 32 bit toolchain and we don't have one configured for mac hosts. | 96 # needs a 32 bit toolchain and we don't have one configured for mac hosts. |
| 97 if (host_os == "linux") { | 97 if (host_os == "linux") { |
| 98 deps += [ | 98 deps += [ "//services/js:tests" ] |
| 99 "//services/js:js_apptests", | |
| 100 "//services/js:js_services_unittests", | |
| 101 ] | |
| 102 } | 99 } |
| 103 | 100 |
| 104 if (is_android || is_linux) { | 101 if (is_android || is_linux) { |
| 105 deps += [ | 102 deps += [ |
| 106 "//services/files:apptests", | 103 "//services/files:apptests", |
| 107 "//services/url_response_disk_cache:tests", | 104 "//services/url_response_disk_cache:tests", |
| 108 "//services/view_manager:mojo_view_manager_client_apptests", | 105 "//services/view_manager:mojo_view_manager_client_apptests", |
| 109 "//services/view_manager:view_manager_service_apptests", | 106 "//services/view_manager:view_manager_service_apptests", |
| 110 "//services/view_manager:view_manager_service_unittests", | 107 "//services/view_manager:view_manager_service_unittests", |
| 111 ] | 108 ] |
| 112 } | 109 } |
| 113 } | 110 } |
| OLD | NEW |