| 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_enable.gni") | 8 import("//remoting/remoting_enable.gni") |
| 9 import("//remoting/remoting_options.gni") | 9 import("//remoting/remoting_options.gni") |
| 10 import("//remoting/remoting_version.gni") | 10 import("//remoting/remoting_version.gni") |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "//remoting/host:remoting_console", | 42 "//remoting/host:remoting_console", |
| 43 "//remoting/host:remoting_desktop", | 43 "//remoting/host:remoting_desktop", |
| 44 ] | 44 ] |
| 45 | 45 |
| 46 if (is_chrome_branded) { | 46 if (is_chrome_branded) { |
| 47 deps += [ "//remoting/host:remoting_host_installation" ] | 47 deps += [ "//remoting/host:remoting_host_installation" ] |
| 48 } | 48 } |
| 49 } | 49 } |
| 50 | 50 |
| 51 if (is_android) { | 51 if (is_android) { |
| 52 deps += [ | 52 deps += [ "//remoting/android:remoting_apk" ] |
| 53 "//remoting/android:remoting_apk", | 53 if (!enable_all_proguard_optimizations) { |
| 54 "//remoting/android:remoting_test_apk", | 54 deps += [ "//remoting/android:remoting_test_apk" ] |
| 55 ] | 55 } |
| 56 } | 56 } |
| 57 | 57 |
| 58 if (enable_remoting_host) { | 58 if (enable_remoting_host) { |
| 59 deps += [ | 59 deps += [ |
| 60 "//remoting:remoting_perftests", | 60 "//remoting:remoting_perftests", |
| 61 "//remoting/host", | 61 "//remoting/host", |
| 62 ] | 62 ] |
| 63 | 63 |
| 64 if (!is_chromeos && !is_android) { | 64 if (!is_chromeos && !is_android) { |
| 65 deps += [ | 65 deps += [ |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 "//testing/gtest", | 218 "//testing/gtest", |
| 219 "//third_party/libjingle", | 219 "//third_party/libjingle", |
| 220 "//third_party/webrtc/modules/desktop_capture", | 220 "//third_party/webrtc/modules/desktop_capture", |
| 221 ] | 221 ] |
| 222 | 222 |
| 223 if (enable_webrtc) { | 223 if (enable_webrtc) { |
| 224 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 224 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
| 225 } | 225 } |
| 226 } | 226 } |
| 227 } | 227 } |
| OLD | NEW |