| 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("//media/media_options.gni") | 5 import("//media/media_options.gni") |
| 6 import("//remoting/build/config/remoting_build.gni") | 6 import("//remoting/build/config/remoting_build.gni") |
| 7 | 7 |
| 8 group("remoting_all") { | 8 group("remoting_all") { |
| 9 testonly = true | 9 testonly = true |
| 10 | 10 |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 "//ui/gfx", | 164 "//ui/gfx", |
| 165 ] | 165 ] |
| 166 } | 166 } |
| 167 | 167 |
| 168 if (enable_webrtc) { | 168 if (enable_webrtc) { |
| 169 deps += [ "//third_party/webrtc_overrides:init_webrtc" ] | 169 deps += [ "//third_party/webrtc_overrides:init_webrtc" ] |
| 170 } | 170 } |
| 171 | 171 |
| 172 if (is_android) { | 172 if (is_android) { |
| 173 deps += [ "//net/android:net_java" ] | 173 deps += [ "//net/android:net_java" ] |
| 174 |
| 175 libs += [ "android" ] |
| 174 } | 176 } |
| 175 | 177 |
| 176 if (is_win) { | 178 if (is_win) { |
| 177 defines += [ "_ALT_NO_EXCEPTIONS" ] | 179 defines += [ "_ALT_NO_EXCEPTIONS" ] |
| 178 | 180 |
| 179 libs += [ | 181 libs += [ |
| 180 "comctl32.lib", | 182 "comctl32.lib", |
| 181 "rpcrt4.lib", | 183 "rpcrt4.lib", |
| 182 "wtsapi32.lib", | 184 "wtsapi32.lib", |
| 183 ] | 185 ] |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 if (is_win) { | 217 if (is_win) { |
| 216 defines += [ "_ALT_NO_EXCEPTIONS" ] | 218 defines += [ "_ALT_NO_EXCEPTIONS" ] |
| 217 | 219 |
| 218 libs += [ | 220 libs += [ |
| 219 "rpcrt4.lib", | 221 "rpcrt4.lib", |
| 220 "wtsapi32.lib", | 222 "wtsapi32.lib", |
| 221 ] | 223 ] |
| 222 } | 224 } |
| 223 } | 225 } |
| 224 } | 226 } |
| OLD | NEW |