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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 | 151 |
152 if (enable_remoting_host) { | 152 if (enable_remoting_host) { |
153 deps += [ | 153 deps += [ |
154 "//remoting/codec:unit_tests", | 154 "//remoting/codec:unit_tests", |
155 "//remoting/host:unit_tests", | 155 "//remoting/host:unit_tests", |
156 "//ui/gfx", | 156 "//ui/gfx", |
157 ] | 157 ] |
158 } | 158 } |
159 | 159 |
160 if (enable_webrtc) { | 160 if (enable_webrtc) { |
161 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 161 deps += [ |
| 162 "//third_party/libjingle:libjingle_webrtc", |
| 163 "//third_party/libjingle:libpeerconnection", |
| 164 ] |
162 } | 165 } |
163 | 166 |
164 if (is_android) { | 167 if (is_android) { |
165 deps += [ "//net/android:net_java" ] | 168 deps += [ "//net/android:net_java" ] |
166 } | 169 } |
167 } | 170 } |
168 | 171 |
169 if (enable_remoting_host) { | 172 if (enable_remoting_host) { |
170 test("remoting_perftests") { | 173 test("remoting_perftests") { |
171 sources = [ | 174 sources = [ |
(...skipping 17 matching lines...) Expand all Loading... |
189 | 192 |
190 if (enable_webrtc) { | 193 if (enable_webrtc) { |
191 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 194 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
192 } | 195 } |
193 } | 196 } |
194 } | 197 } |
195 } else { | 198 } else { |
196 group("remoting_unittests") { | 199 group("remoting_unittests") { |
197 } | 200 } |
198 } | 201 } |
OLD | NEW |