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