| 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 24 matching lines...) Expand all Loading... |
| 35 "//services/notifications", | 35 "//services/notifications", |
| 36 "//services/sensors", | 36 "//services/sensors", |
| 37 "//services/speech_recognizer", | 37 "//services/speech_recognizer", |
| 38 "//services/sharing:android_sharing", | 38 "//services/sharing:android_sharing", |
| 39 ] | 39 ] |
| 40 if (defined(go_build_tool) && go_build_tool != "") { | 40 if (defined(go_build_tool) && go_build_tool != "") { |
| 41 deps += [ "//services/vanadium/security:principal_service" ] | 41 deps += [ "//services/vanadium/security:principal_service" ] |
| 42 } | 42 } |
| 43 } | 43 } |
| 44 | 44 |
| 45 if (is_linux) { |
| 46 deps += [ "//services/keyboard" ] |
| 47 } |
| 48 |
| 45 if (is_linux && !is_fnl) { | 49 if (is_linux && !is_fnl) { |
| 46 deps += [ "//services/python" ] | 50 deps += [ "//services/python" ] |
| 47 } | 51 } |
| 48 | 52 |
| 49 if (is_android || is_linux) { | 53 if (is_android || is_linux) { |
| 50 deps += [ | 54 deps += [ |
| 51 "//services/device_info", | 55 "//services/device_info", |
| 52 "//services/files", | 56 "//services/files", |
| 53 "//services/kiosk_wm", | 57 "//services/kiosk_wm", |
| 54 "//services/ui", | 58 "//services/ui", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 if (is_android || is_linux) { | 112 if (is_android || is_linux) { |
| 109 deps += [ | 113 deps += [ |
| 110 "//services/files:apptests", | 114 "//services/files:apptests", |
| 111 "//services/url_response_disk_cache:tests", | 115 "//services/url_response_disk_cache:tests", |
| 112 "//services/view_manager:mojo_view_manager_client_apptests", | 116 "//services/view_manager:mojo_view_manager_client_apptests", |
| 113 "//services/view_manager:view_manager_service_apptests", | 117 "//services/view_manager:view_manager_service_apptests", |
| 114 "//services/view_manager:view_manager_service_unittests", | 118 "//services/view_manager:view_manager_service_unittests", |
| 115 ] | 119 ] |
| 116 } | 120 } |
| 117 } | 121 } |
| OLD | NEW |