| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 } | 47 } |
| 48 | 48 |
| 49 if (is_linux && !is_fnl) { | 49 if (is_linux && !is_fnl) { |
| 50 deps += [ "//services/python" ] | 50 deps += [ "//services/python" ] |
| 51 } | 51 } |
| 52 | 52 |
| 53 if (is_android || is_linux) { | 53 if (is_android || is_linux) { |
| 54 deps += [ | 54 deps += [ |
| 55 "//services/device_info", | 55 "//services/device_info", |
| 56 "//services/files", | 56 "//services/files", |
| 57 "//services/kiosk_wm", | |
| 58 "//services/ui", | |
| 59 "//services/native_viewport", | 57 "//services/native_viewport", |
| 60 "//services/surfaces", | 58 "//services/surfaces", |
| 59 "//services/ui", |
| 61 "//services/url_response_disk_cache", | 60 "//services/url_response_disk_cache", |
| 62 "//services/view_manager", | |
| 63 "//services/window_manager", | |
| 64 ] | 61 ] |
| 65 } | 62 } |
| 66 | 63 |
| 67 # TODO(jamesr): We only support building V8 snapshot data on a linux host | 64 # TODO(jamesr): We only support building V8 snapshot data on a linux host |
| 68 # since it needs a 32 bit toolchain and we don't have one configured for mac | 65 # since it needs a 32 bit toolchain and we don't have one configured for mac |
| 69 # hosts. | 66 # hosts. |
| 70 # TODO(cstout): javascript/v8 build support for fnl/musl | 67 # TODO(cstout): javascript/v8 build support for fnl/musl |
| 71 if (!is_fnl && host_os == "linux") { | 68 if (!is_fnl && host_os == "linux") { |
| 72 deps += [ "//services/js" ] | 69 deps += [ "//services/js" ] |
| 73 } | 70 } |
| (...skipping 13 matching lines...) Expand all Loading... |
| 87 | 84 |
| 88 if (is_linux && !is_fnl) { | 85 if (is_linux && !is_fnl) { |
| 89 deps += [ "//services/python:python_apptests" ] | 86 deps += [ "//services/python:python_apptests" ] |
| 90 } | 87 } |
| 91 | 88 |
| 92 if (is_android) { | 89 if (is_android) { |
| 93 deps += [ "//services/contacts:apptests" ] | 90 deps += [ "//services/contacts:apptests" ] |
| 94 deps += [ "//services/notifications:apptests" ] | 91 deps += [ "//services/notifications:apptests" ] |
| 95 } | 92 } |
| 96 | 93 |
| 97 if (is_linux || is_android) { | |
| 98 deps += [ | |
| 99 "//services/window_manager:window_manager_apptests", | |
| 100 "//services/window_manager:window_manager_unittests", | |
| 101 ] | |
| 102 } | |
| 103 | |
| 104 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc
e it | 94 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc
e it |
| 105 # needs a 32 bit toolchain and we don't have one configured for mac hosts. | 95 # needs a 32 bit toolchain and we don't have one configured for mac hosts. |
| 106 # TODO(cstout): javascript/v8 build support for fnl/musl | 96 # TODO(cstout): javascript/v8 build support for fnl/musl |
| 107 if (!is_fnl && host_os == "linux") { | 97 if (!is_fnl && host_os == "linux") { |
| 108 deps += [ "//services/js:tests" ] | 98 deps += [ "//services/js:tests" ] |
| 109 } | 99 } |
| 110 | 100 |
| 111 if (is_android || is_linux) { | 101 if (is_android || is_linux) { |
| 112 deps += [ | 102 deps += [ |
| 113 "//services/files:apptests", | 103 "//services/files:apptests", |
| 114 "//services/log:apptests", | 104 "//services/log:apptests", |
| 115 "//services/url_response_disk_cache:tests", | 105 "//services/url_response_disk_cache:tests", |
| 116 "//services/view_manager:mojo_view_manager_client_apptests", | |
| 117 "//services/view_manager:view_manager_service_apptests", | |
| 118 "//services/view_manager:view_manager_service_unittests", | |
| 119 ] | 106 ] |
| 120 } | 107 } |
| 121 } | 108 } |
| OLD | NEW |