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 += [ | 161 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
162 "//third_party/libjingle:libjingle_webrtc", | |
163 "//third_party/libjingle:libpeerconnection", | |
164 ] | |
165 } | 162 } |
166 | 163 |
167 if (is_android) { | 164 if (is_android) { |
168 deps += [ "//net/android:net_java" ] | 165 deps += [ "//net/android:net_java" ] |
169 } | 166 } |
170 } | 167 } |
171 | 168 |
172 if (enable_remoting_host) { | 169 if (enable_remoting_host) { |
173 test("remoting_perftests") { | 170 test("remoting_perftests") { |
174 sources = [ | 171 sources = [ |
(...skipping 17 matching lines...) Expand all Loading... |
192 | 189 |
193 if (enable_webrtc) { | 190 if (enable_webrtc) { |
194 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 191 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
195 } | 192 } |
196 } | 193 } |
197 } | 194 } |
198 } else { | 195 } else { |
199 group("remoting_unittests") { | 196 group("remoting_unittests") { |
200 } | 197 } |
201 } | 198 } |
OLD | NEW |