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 29 matching lines...) Expand all Loading... |
40 "//services/notifications", | 40 "//services/notifications", |
41 "//services/sensors", | 41 "//services/sensors", |
42 "//services/speech_recognizer", | 42 "//services/speech_recognizer", |
43 "//services/sharing:android_sharing", | 43 "//services/sharing:android_sharing", |
44 ] | 44 ] |
45 if (defined(go_build_tool) && go_build_tool != "") { | 45 if (defined(go_build_tool) && go_build_tool != "") { |
46 deps += [ "//services/vanadium/security:principal_service" ] | 46 deps += [ "//services/vanadium/security:principal_service" ] |
47 } | 47 } |
48 } | 48 } |
49 | 49 |
50 if (is_linux) { | 50 if (is_linux && !is_fnl) { |
51 deps += [ "//services/python" ] | 51 deps += [ "//services/python" ] |
52 } | 52 } |
53 | 53 |
54 # TODO(jamesr): We only support building V8 snapshot data on a linux host | 54 # TODO(jamesr): We only support building V8 snapshot data on a linux host |
55 # since it needs a 32 bit toolchain and we don't have one configured for mac | 55 # since it needs a 32 bit toolchain and we don't have one configured for mac |
56 # hosts. | 56 # hosts. |
57 if (host_os == "linux") { | 57 if (host_os == "linux") { |
58 deps += [ "//services/js" ] | 58 deps += [ "//services/js" ] |
59 } | 59 } |
60 } | 60 } |
(...skipping 11 matching lines...) Expand all Loading... |
72 "//services/prediction:apptests", | 72 "//services/prediction:apptests", |
73 "//services/reaper:tests", | 73 "//services/reaper:tests", |
74 "//services/url_response_disk_cache:tests", | 74 "//services/url_response_disk_cache:tests", |
75 "//services/view_manager:mojo_view_manager_client_apptests", | 75 "//services/view_manager:mojo_view_manager_client_apptests", |
76 "//services/view_manager:view_manager_service_apptests", | 76 "//services/view_manager:view_manager_service_apptests", |
77 "//services/view_manager:view_manager_service_unittests", | 77 "//services/view_manager:view_manager_service_unittests", |
78 "//services/window_manager:window_manager_apptests", | 78 "//services/window_manager:window_manager_apptests", |
79 "//services/window_manager:window_manager_unittests", | 79 "//services/window_manager:window_manager_unittests", |
80 ] | 80 ] |
81 | 81 |
82 if (is_linux) { | 82 if (is_linux && !is_fnl) { |
83 deps += [ "//services/python:python_apptests" ] | 83 deps += [ "//services/python:python_apptests" ] |
84 } | 84 } |
85 | 85 |
86 if (is_android) { | 86 if (is_android) { |
87 deps += [ "//services/notifications:apptests" ] | 87 deps += [ "//services/notifications:apptests" ] |
88 } | 88 } |
89 | 89 |
90 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc
e it | 90 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc
e it |
91 # needs a 32 bit toolchain and we don't have one configured for mac hosts. | 91 # needs a 32 bit toolchain and we don't have one configured for mac hosts. |
92 if (host_os == "linux") { | 92 if (host_os == "linux") { |
93 deps += [ | 93 deps += [ |
94 "//services/js:js_apptests", | 94 "//services/js:js_apptests", |
95 "//services/js:js_services_unittests", | 95 "//services/js:js_services_unittests", |
96 ] | 96 ] |
97 } | 97 } |
98 } | 98 } |
OLD | NEW |