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