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", |
11 "//services/authenticating_url_loader_interceptor", | 11 "//services/authenticating_url_loader_interceptor", |
12 "//services/authentication", | 12 "//services/authentication", |
13 "//services/clipboard", | 13 "//services/clipboard", |
14 "//services/dart", | 14 "//services/dart", |
15 "//services/debugger", | 15 "//services/debugger", |
16 "//services/fake_surfaces", | 16 "//services/fake_surfaces", |
17 "//services/gles2:lib", | 17 "//services/gles2:lib", |
18 "//services/http_server", | 18 "//services/http_server", |
19 "//services/icu_data", | 19 "//services/icu_data", |
20 "//services/keyboard_native", | 20 "//services/keyboard_native", |
21 "//services/media", | 21 "//services/media", |
22 "//services/native_support", | 22 "//services/native_support", |
23 "//services/prediction", | 23 "//services/prediction", |
24 "//services/test_service:bindings", | 24 "//services/test_service:bindings", |
25 "//services/tracing", | 25 "//services/tracing", |
26 ] | 26 ] |
27 | 27 |
28 if (is_android) { | 28 if (is_android) { |
29 deps += [ | 29 deps += [ |
30 "//services/android:java_handler", | |
31 "//services/camera", | 30 "//services/camera", |
32 "//services/camera:camera_roll", | 31 "//services/camera:camera_roll", |
33 "//services/contacts", | 32 "//services/contacts", |
| 33 "//services/java_handler", |
34 "//services/location", | 34 "//services/location", |
35 "//services/notifications", | 35 "//services/notifications", |
36 "//services/sensors", | 36 "//services/sensors", |
| 37 "//services/sharing:android_sharing", |
37 "//services/speech_recognizer", | 38 "//services/speech_recognizer", |
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) { | 45 if (is_linux) { |
46 deps += [ "//services/keyboard" ] | 46 deps += [ "//services/keyboard" ] |
47 } | 47 } |
48 | 48 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 if (is_android || is_linux) { | 112 if (is_android || is_linux) { |
113 deps += [ | 113 deps += [ |
114 "//services/files:apptests", | 114 "//services/files:apptests", |
115 "//services/url_response_disk_cache:tests", | 115 "//services/url_response_disk_cache:tests", |
116 "//services/view_manager:mojo_view_manager_client_apptests", | 116 "//services/view_manager:mojo_view_manager_client_apptests", |
117 "//services/view_manager:view_manager_service_apptests", | 117 "//services/view_manager:view_manager_service_apptests", |
118 "//services/view_manager:view_manager_service_unittests", | 118 "//services/view_manager:view_manager_service_unittests", |
119 ] | 119 ] |
120 } | 120 } |
121 } | 121 } |
OLD | NEW |