| 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 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 if (is_win) { | 35 if (is_win) { |
| 36 deps += [ | 36 deps += [ |
| 37 #"//remoting:remoting_breakpad_tester", | 37 #"//remoting:remoting_breakpad_tester", |
| 38 #"//remoting:remoting_console", | 38 #"//remoting:remoting_console", |
| 39 #"//remoting:remoting_desktop", | 39 #"//remoting:remoting_desktop", |
| 40 #"//remoting:remoting_host_installation", | 40 #"//remoting:remoting_host_installation", |
| 41 ] | 41 ] |
| 42 } | 42 } |
| 43 | 43 |
| 44 if (is_android && !is_component_build) { | 44 if (is_android) { |
| 45 deps += [ | 45 deps += [ |
| 46 "//remoting/android:remoting_apk", | 46 "//remoting/android:remoting_apk", |
| 47 "//remoting/android:remoting_test_apk", | 47 "//remoting/android:remoting_test_apk", |
| 48 ] | 48 ] |
| 49 } | 49 } |
| 50 | 50 |
| 51 if (enable_remoting_host) { | 51 if (enable_remoting_host) { |
| 52 deps += [ | 52 deps += [ |
| 53 "//remoting:remoting_perftests", | 53 "//remoting:remoting_perftests", |
| 54 "//remoting/host", | 54 "//remoting/host", |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 | 186 |
| 187 if (enable_webrtc) { | 187 if (enable_webrtc) { |
| 188 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 188 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
| 189 } | 189 } |
| 190 } | 190 } |
| 191 } | 191 } |
| 192 } else { | 192 } else { |
| 193 group("remoting_unittests") { | 193 group("remoting_unittests") { |
| 194 } | 194 } |
| 195 } | 195 } |
| OLD | NEW |