| 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//mojo/public/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
| 7 | 7 |
| 8 group("services") { | 8 group("services") { |
| 9 deps = [ | 9 deps = [ |
| 10 "//services/clipboard", | 10 "//services/clipboard", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "//services/test_service:bindings", | 24 "//services/test_service:bindings", |
| 25 "//services/tracing", | 25 "//services/tracing", |
| 26 "//services/view_manager", | 26 "//services/view_manager", |
| 27 "//services/window_manager", | 27 "//services/window_manager", |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 if (is_android) { | 30 if (is_android) { |
| 31 deps += [ | 31 deps += [ |
| 32 "//services/android:java_handler", | 32 "//services/android:java_handler", |
| 33 "//services/location", | 33 "//services/location", |
| 34 "//services/sensors", |
| 34 ] | 35 ] |
| 35 } | 36 } |
| 36 | 37 |
| 37 if (is_linux) { | 38 if (is_linux) { |
| 38 deps += [ "//services/python" ] | 39 deps += [ "//services/python" ] |
| 39 } | 40 } |
| 40 } | 41 } |
| OLD | NEW |