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("//remoting/build/config/remoting_build.gni") | 5 import("//remoting/build/config/remoting_build.gni") |
6 | 6 |
7 group("remoting_all") { | 7 group("remoting_all") { |
8 testonly = true | 8 testonly = true |
9 | 9 |
10 deps = [ | 10 deps = [ |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 } | 163 } |
164 | 164 |
165 if (is_android) { | 165 if (is_android) { |
166 deps += [ "//net/android:net_java" ] | 166 deps += [ "//net/android:net_java" ] |
167 } | 167 } |
168 | 168 |
169 if (is_win) { | 169 if (is_win) { |
170 defines += [ "_ALT_NO_EXCEPTIONS" ] | 170 defines += [ "_ALT_NO_EXCEPTIONS" ] |
171 | 171 |
172 libs += [ | 172 libs += [ |
| 173 "comctl32.lib", |
173 "rpcrt4.lib", | 174 "rpcrt4.lib", |
174 "wtsapi32.lib", | 175 "wtsapi32.lib", |
175 ] | 176 ] |
176 } | 177 } |
177 | 178 |
178 if (enable_configuration_policy) { | 179 if (enable_configuration_policy) { |
179 #deps += [ "//components/policy/core/browser:test_support" ] | 180 #deps += [ "//components/policy/core/browser:test_support" ] |
180 } | 181 } |
181 } | 182 } |
182 | 183 |
(...skipping 16 matching lines...) Expand all Loading... |
199 "//testing/gtest", | 200 "//testing/gtest", |
200 "//third_party/libjingle", | 201 "//third_party/libjingle", |
201 "//third_party/webrtc/modules/desktop_capture", | 202 "//third_party/webrtc/modules/desktop_capture", |
202 ] | 203 ] |
203 | 204 |
204 if (enable_webrtc) { | 205 if (enable_webrtc) { |
205 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 206 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
206 } | 207 } |
207 } | 208 } |
208 } | 209 } |
OLD | NEW |