| 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 deps = [ | 6 deps = [ |
| 7 "//services/clipboard", | 7 "//services/clipboard", |
| 8 "//services/console", | 8 "//services/console", |
| 9 "//services/dart", | 9 "//services/dart", |
| 10 "//services/device_info", | 10 "//services/device_info", |
| 11 "//services/fake_surfaces", | 11 "//services/fake_surfaces", |
| 12 "//services/files", | 12 "//services/files", |
| 13 "//services/gles2:lib", | 13 "//services/gles2:lib", |
| 14 "//services/http_server", | 14 "//services/http_server", |
| 15 "//services/icu_data", | 15 "//services/icu_data", |
| 16 "//services/js", | 16 "//services/js", |
| 17 "//services/kiosk_wm", | 17 "//services/kiosk_wm", |
| 18 "//services/native_viewport", | 18 "//services/native_viewport", |
| 19 "//services/reaper", | 19 "//services/reaper", |
| 20 "//services/service_cache", |
| 20 "//services/surfaces", | 21 "//services/surfaces", |
| 21 "//services/test_service:bindings", | 22 "//services/test_service:bindings", |
| 22 "//services/tracing", | 23 "//services/tracing", |
| 23 "//services/view_manager", | 24 "//services/view_manager", |
| 24 "//services/window_manager", | 25 "//services/window_manager", |
| 25 ] | 26 ] |
| 26 | 27 |
| 27 if (is_android) { | 28 if (is_android) { |
| 28 deps += [ | 29 deps += [ |
| 29 "//services/android:java_handler", | 30 "//services/android:java_handler", |
| 30 "//services/authentication", | 31 "//services/authentication", |
| 31 "//services/location", | 32 "//services/location", |
| 32 "//services/sensors", | 33 "//services/sensors", |
| 33 ] | 34 ] |
| 34 } | 35 } |
| 35 | 36 |
| 36 if (is_linux) { | 37 if (is_linux) { |
| 37 deps += [ "//services/python" ] | 38 deps += [ "//services/python" ] |
| 38 } | 39 } |
| 39 } | 40 } |
| OLD | NEW |