| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 if (is_linux && !is_fnl) { | 43 if (is_linux && !is_fnl) { |
| 44 deps += [ "//services/python" ] | 44 deps += [ "//services/python" ] |
| 45 } | 45 } |
| 46 | 46 |
| 47 if (is_android || is_linux) { | 47 if (is_android || is_linux) { |
| 48 deps += [ | 48 deps += [ |
| 49 "//services/device_info", | 49 "//services/device_info", |
| 50 "//services/files", | 50 "//services/files", |
| 51 "//services/kiosk_wm", | 51 "//services/kiosk_wm", |
| 52 "//services/ui", |
| 52 "//services/native_viewport", | 53 "//services/native_viewport", |
| 53 "//services/surfaces", | 54 "//services/surfaces", |
| 54 "//services/url_response_disk_cache", | 55 "//services/url_response_disk_cache", |
| 55 "//services/view_manager", | 56 "//services/view_manager", |
| 56 "//services/window_manager", | 57 "//services/window_manager", |
| 57 ] | 58 ] |
| 58 } | 59 } |
| 59 | 60 |
| 60 # TODO(jamesr): We only support building V8 snapshot data on a linux host | 61 # TODO(jamesr): We only support building V8 snapshot data on a linux host |
| 61 # since it needs a 32 bit toolchain and we don't have one configured for mac | 62 # since it needs a 32 bit toolchain and we don't have one configured for mac |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 if (is_android || is_linux) { | 106 if (is_android || is_linux) { |
| 106 deps += [ | 107 deps += [ |
| 107 "//services/files:apptests", | 108 "//services/files:apptests", |
| 108 "//services/url_response_disk_cache:tests", | 109 "//services/url_response_disk_cache:tests", |
| 109 "//services/view_manager:mojo_view_manager_client_apptests", | 110 "//services/view_manager:mojo_view_manager_client_apptests", |
| 110 "//services/view_manager:view_manager_service_apptests", | 111 "//services/view_manager:view_manager_service_apptests", |
| 111 "//services/view_manager:view_manager_service_unittests", | 112 "//services/view_manager:view_manager_service_unittests", |
| 112 ] | 113 ] |
| 113 } | 114 } |
| 114 } | 115 } |
| OLD | NEW |