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", |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 "//services/surfaces", | 53 "//services/surfaces", |
54 "//services/url_response_disk_cache", | 54 "//services/url_response_disk_cache", |
55 "//services/view_manager", | 55 "//services/view_manager", |
56 "//services/window_manager", | 56 "//services/window_manager", |
57 ] | 57 ] |
58 } | 58 } |
59 | 59 |
60 # 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 |
61 # 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 |
62 # hosts. | 62 # hosts. |
63 if (host_os == "linux") { | 63 # TODO(cstout): javascript/v8 build support for fnl/musl |
| 64 if (!is_fnl && host_os == "linux") { |
64 deps += [ "//services/js" ] | 65 deps += [ "//services/js" ] |
65 } | 66 } |
66 } | 67 } |
67 | 68 |
68 group("tests") { | 69 group("tests") { |
69 testonly = true | 70 testonly = true |
70 | 71 |
71 deps = [ | 72 deps = [ |
72 "//services/asset_bundle:apptests", | 73 "//services/asset_bundle:apptests", |
73 "//services/authenticating_url_loader_interceptor:apptests", | 74 "//services/authenticating_url_loader_interceptor:apptests", |
(...skipping 15 matching lines...) Expand all Loading... |
89 | 90 |
90 if (is_linux || is_android) { | 91 if (is_linux || is_android) { |
91 deps += [ | 92 deps += [ |
92 "//services/window_manager:window_manager_apptests", | 93 "//services/window_manager:window_manager_apptests", |
93 "//services/window_manager:window_manager_unittests", | 94 "//services/window_manager:window_manager_unittests", |
94 ] | 95 ] |
95 } | 96 } |
96 | 97 |
97 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc
e it | 98 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc
e it |
98 # needs a 32 bit toolchain and we don't have one configured for mac hosts. | 99 # needs a 32 bit toolchain and we don't have one configured for mac hosts. |
99 if (host_os == "linux") { | 100 # TODO(cstout): javascript/v8 build support for fnl/musl |
| 101 if (!is_fnl && host_os == "linux") { |
100 deps += [ "//services/js:tests" ] | 102 deps += [ "//services/js:tests" ] |
101 } | 103 } |
102 | 104 |
103 if (is_android || is_linux) { | 105 if (is_android || is_linux) { |
104 deps += [ | 106 deps += [ |
105 "//services/files:apptests", | 107 "//services/files:apptests", |
106 "//services/url_response_disk_cache:tests", | 108 "//services/url_response_disk_cache:tests", |
107 "//services/view_manager:mojo_view_manager_client_apptests", | 109 "//services/view_manager:mojo_view_manager_client_apptests", |
108 "//services/view_manager:view_manager_service_apptests", | 110 "//services/view_manager:view_manager_service_apptests", |
109 "//services/view_manager:view_manager_service_unittests", | 111 "//services/view_manager:view_manager_service_unittests", |
110 ] | 112 ] |
111 } | 113 } |
112 } | 114 } |
OLD | NEW |