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