| 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 deps = [ | 6 deps = [ |
| 7 "//services/asset_bundle", | 7 "//services/asset_bundle", |
| 8 "//services/authenticating_url_loader_interceptor", | 8 "//services/authenticating_url_loader_interceptor", |
| 9 "//services/authentication", | 9 "//services/authentication", |
| 10 "//services/clipboard", | 10 "//services/clipboard", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 deps += [ | 33 deps += [ |
| 34 "//services/android:java_handler", | 34 "//services/android:java_handler", |
| 35 "//services/camera_roll", | 35 "//services/camera_roll", |
| 36 "//services/location", | 36 "//services/location", |
| 37 "//services/notifications", | 37 "//services/notifications", |
| 38 "//services/sensors", | 38 "//services/sensors", |
| 39 "//services/speech_recognizer", | 39 "//services/speech_recognizer", |
| 40 ] | 40 ] |
| 41 } | 41 } |
| 42 | 42 |
| 43 if (defined(go_build_tool) && go_build_tool != "") { |
| 44 deps += [ "//services/vanadium/security:go_principal_service" ] |
| 45 } |
| 46 |
| 43 if (is_linux) { | 47 if (is_linux) { |
| 44 deps += [ "//services/python" ] | 48 deps += [ "//services/python" ] |
| 45 } | 49 } |
| 46 | 50 |
| 47 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc
e it | 51 # TODO(jamesr): We only support building V8 snapshot data on a linux host sinc
e it |
| 48 # needs a 32 bit toolchain and we don't have one configured for mac hosts. | 52 # needs a 32 bit toolchain and we don't have one configured for mac hosts. |
| 49 if (host_os == "linux") { | 53 if (host_os == "linux") { |
| 50 deps += [ "//services/js" ] | 54 deps += [ "//services/js" ] |
| 51 } | 55 } |
| 52 } | 56 } |
| OLD | NEW |