| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/util/version.gni") | 7 import("//build/util/version.gni") |
| 8 import("//remoting/remoting_version.gni") | 8 import("//remoting/remoting_version.gni") |
| 9 import("//remoting/remoting_enable.gni") | 9 import("//remoting/remoting_enable.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 deps += [ | 50 deps += [ |
| 51 "//remoting/android:remoting_apk", | 51 "//remoting/android:remoting_apk", |
| 52 "//remoting/android:remoting_test_apk", | 52 "//remoting/android:remoting_test_apk", |
| 53 ] | 53 ] |
| 54 } | 54 } |
| 55 | 55 |
| 56 if (enable_remoting_host) { | 56 if (enable_remoting_host) { |
| 57 deps += [ | 57 deps += [ |
| 58 "//remoting:remoting_perftests", | 58 "//remoting:remoting_perftests", |
| 59 "//remoting/host", | 59 "//remoting/host", |
| 60 "//remoting/host:remoting_native_messaging_manifests", | |
| 61 ] | 60 ] |
| 62 | 61 |
| 63 if (!is_chromeos) { | 62 if (!is_android) { |
| 63 deps += [ "//remoting/host:remoting_native_messaging_manifests" ] |
| 64 } |
| 65 |
| 66 if (!is_chromeos && !is_android) { |
| 64 deps += [ | 67 deps += [ |
| 65 "//remoting/host:remoting_start_host", | 68 "//remoting/host:remoting_start_host", |
| 66 "//remoting/host/it2me:remote_assistance_host", | 69 "//remoting/host/it2me:remote_assistance_host", |
| 67 ] | 70 ] |
| 68 } | 71 } |
| 69 } | 72 } |
| 70 | 73 |
| 71 if (enable_me2me_host) { | 74 if (enable_me2me_host) { |
| 72 deps += [ "//remoting/host:remoting_me2me_host" ] | 75 deps += [ "//remoting/host:remoting_me2me_host" ] |
| 73 if (is_chrome_branded) { | 76 if (is_chrome_branded) { |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 | 217 |
| 215 if (enable_webrtc) { | 218 if (enable_webrtc) { |
| 216 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 219 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
| 217 } | 220 } |
| 218 } | 221 } |
| 219 } | 222 } |
| 220 } else { | 223 } else { |
| 221 group("remoting_unittests") { | 224 group("remoting_unittests") { |
| 222 } | 225 } |
| 223 } | 226 } |
| OLD | NEW |