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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 deps = [ | 75 deps = [ |
76 "//services/asset_bundle:apptests", | 76 "//services/asset_bundle:apptests", |
77 "//services/authenticating_url_loader_interceptor:apptests", | 77 "//services/authenticating_url_loader_interceptor:apptests", |
78 "//services/clipboard:apptests", | 78 "//services/clipboard:apptests", |
79 "//services/gfx/compositor:apptests", | 79 "//services/gfx/compositor:apptests", |
80 "//services/http_server:apptests", | 80 "//services/http_server:apptests", |
81 "//services/native_support:apptests", | 81 "//services/native_support:apptests", |
82 "//services/prediction:apptests", | 82 "//services/prediction:apptests", |
83 ] | 83 ] |
84 | 84 |
| 85 if (!is_android) { |
| 86 deps += [ "//services/authentication:apptests" ] |
| 87 } |
| 88 |
85 if (is_linux && !is_fnl) { | 89 if (is_linux && !is_fnl) { |
86 deps += [ "//services/python:python_apptests" ] | 90 deps += [ "//services/python:python_apptests" ] |
87 } | 91 } |
88 | 92 |
89 if (is_android) { | 93 if (is_android) { |
90 deps += [ "//services/contacts:apptests" ] | 94 deps += [ "//services/contacts:apptests" ] |
91 deps += [ "//services/notifications:apptests" ] | 95 deps += [ "//services/notifications:apptests" ] |
92 } | 96 } |
93 | 97 |
94 # 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 |
95 # 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. |
96 # TODO(cstout): javascript/v8 build support for fnl/musl | 100 # TODO(cstout): javascript/v8 build support for fnl/musl |
97 if (!is_fnl && host_os == "linux") { | 101 if (!is_fnl && host_os == "linux") { |
98 deps += [ "//services/js:tests" ] | 102 deps += [ "//services/js:tests" ] |
99 } | 103 } |
100 | 104 |
101 if (is_android || is_linux) { | 105 if (is_android || is_linux) { |
102 deps += [ | 106 deps += [ |
103 "//services/files:apptests", | 107 "//services/files:apptests", |
104 "//services/log:apptests", | 108 "//services/log:apptests", |
105 "//services/url_response_disk_cache:tests", | 109 "//services/url_response_disk_cache:tests", |
106 ] | 110 ] |
107 } | 111 } |
108 } | 112 } |
OLD | NEW |