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/fake_surfaces", | |
16 "//services/gles2:lib", | 15 "//services/gles2:lib", |
17 "//services/http_server", | 16 "//services/http_server", |
18 "//services/icu_data", | 17 "//services/icu_data", |
19 "//services/media", | 18 "//services/media", |
20 "//services/native_support", | 19 "//services/native_support", |
21 "//services/prediction", | 20 "//services/prediction", |
22 "//services/test_service:bindings", | 21 "//services/test_service:bindings", |
23 "//services/tracing", | 22 "//services/tracing", |
24 ] | 23 ] |
25 | 24 |
(...skipping 21 matching lines...) Expand all Loading... |
47 if (is_linux && !is_fnl) { | 46 if (is_linux && !is_fnl) { |
48 deps += [ "//services/python" ] | 47 deps += [ "//services/python" ] |
49 } | 48 } |
50 | 49 |
51 if (is_android || is_linux) { | 50 if (is_android || is_linux) { |
52 deps += [ | 51 deps += [ |
53 "//services/device_info", | 52 "//services/device_info", |
54 "//services/files", | 53 "//services/files", |
55 "//services/ui", | 54 "//services/ui", |
56 "//services/native_viewport", | 55 "//services/native_viewport", |
57 "//services/surfaces", | |
58 "//services/url_response_disk_cache", | 56 "//services/url_response_disk_cache", |
59 ] | 57 ] |
60 } | 58 } |
61 | 59 |
62 # TODO(jamesr): We only support building V8 snapshot data on a linux host | 60 # TODO(jamesr): We only support building V8 snapshot data on a linux host |
63 # since it needs a 32 bit toolchain and we don't have one configured for mac | 61 # since it needs a 32 bit toolchain and we don't have one configured for mac |
64 # hosts. | 62 # hosts. |
65 # TODO(cstout): javascript/v8 build support for fnl/musl | 63 # TODO(cstout): javascript/v8 build support for fnl/musl |
66 if (!is_fnl && host_os == "linux") { | 64 if (!is_fnl && host_os == "linux") { |
67 deps += [ "//services/js" ] | 65 deps += [ "//services/js" ] |
(...skipping 29 matching lines...) Expand all Loading... |
97 deps += [ "//services/js:tests" ] | 95 deps += [ "//services/js:tests" ] |
98 } | 96 } |
99 | 97 |
100 if (is_android || is_linux) { | 98 if (is_android || is_linux) { |
101 deps += [ | 99 deps += [ |
102 "//services/files:apptests", | 100 "//services/files:apptests", |
103 "//services/url_response_disk_cache:tests", | 101 "//services/url_response_disk_cache:tests", |
104 ] | 102 ] |
105 } | 103 } |
106 } | 104 } |
OLD | NEW |