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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 #"//remoting:remoting_apk", | 46 #"//remoting:remoting_apk", |
47 #"//remoting:remoting_test_apk", | 47 #"//remoting:remoting_test_apk", |
48 #"//remoting:remoting_unittests_apk", | 48 #"//remoting:remoting_unittests_apk", |
49 ] | 49 ] |
50 } | 50 } |
51 | 51 |
52 if (enable_remoting_host) { | 52 if (enable_remoting_host) { |
53 deps += [ | 53 deps += [ |
54 "//remoting:remoting_perftests", | 54 "//remoting:remoting_perftests", |
55 "//remoting/host", | 55 "//remoting/host", |
56 | |
57 "//remoting/host:remoting_native_messaging_manifests", | 56 "//remoting/host:remoting_native_messaging_manifests", |
58 ] | 57 ] |
59 | 58 |
60 if (!is_chromeos) { | 59 if (!is_chromeos) { |
61 deps += [ | 60 deps += [ |
62 "//remoting/host:remoting_start_host", | 61 "//remoting/host:remoting_start_host", |
63 "//remoting/host/it2me:remote_assistance_host", | 62 "//remoting/host/it2me:remote_assistance_host", |
64 ] | 63 ] |
65 } | 64 } |
66 } | 65 } |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 configs += [ ":version" ] | 174 configs += [ ":version" ] |
176 | 175 |
177 deps = [ | 176 deps = [ |
178 ":test_support", | 177 ":test_support", |
179 "//base", | 178 "//base", |
180 "//base/test:run_all_unittests", | 179 "//base/test:run_all_unittests", |
181 "//base/test:test_support", | 180 "//base/test:test_support", |
182 "//net:test_support", | 181 "//net:test_support", |
183 "//remoting/base", | 182 "//remoting/base", |
184 "//testing/gtest", | 183 "//testing/gtest", |
| 184 "//third_party/libjingle", |
185 "//third_party/webrtc/modules/desktop_capture", | 185 "//third_party/webrtc/modules/desktop_capture", |
186 "//third_party/libjingle", | |
187 ] | 186 ] |
188 | 187 |
189 if (enable_webrtc) { | 188 if (enable_webrtc) { |
190 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 189 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
191 } | 190 } |
192 } | 191 } |
193 } | 192 } |
194 } else { | 193 } else { |
195 group("remoting_unittests") { | 194 group("remoting_unittests") { |
196 } | 195 } |
197 } | 196 } |
OLD | NEW |