| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 "//build/config/compiler:no_size_t_to_int_warning", | 138 "//build/config/compiler:no_size_t_to_int_warning", |
| 139 ] | 139 ] |
| 140 | 140 |
| 141 deps = [ | 141 deps = [ |
| 142 ":test_support", | 142 ":test_support", |
| 143 "//base", | 143 "//base", |
| 144 "//base/test:test_support", | 144 "//base/test:test_support", |
| 145 "//google_apis", | 145 "//google_apis", |
| 146 "//remoting/base:unit_tests", | 146 "//remoting/base:unit_tests", |
| 147 "//remoting/client:unit_tests", | 147 "//remoting/client:unit_tests", |
| 148 "//remoting/client/display:unit_tests", |
| 148 "//remoting/protocol:unit_tests", | 149 "//remoting/protocol:unit_tests", |
| 149 "//remoting/signaling:unit_tests", | 150 "//remoting/signaling:unit_tests", |
| 150 "//remoting/test:unit_tests", | 151 "//remoting/test:unit_tests", |
| 151 "//testing/gmock", | 152 "//testing/gmock", |
| 152 "//testing/gtest", | 153 "//testing/gtest", |
| 153 ] | 154 ] |
| 154 | 155 |
| 155 if (enable_remoting_host) { | 156 if (enable_remoting_host) { |
| 156 deps += [ | 157 deps += [ |
| 157 "//remoting/codec:unit_tests", | 158 "//remoting/codec:unit_tests", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 if (is_win) { | 211 if (is_win) { |
| 211 defines += [ "_ALT_NO_EXCEPTIONS" ] | 212 defines += [ "_ALT_NO_EXCEPTIONS" ] |
| 212 | 213 |
| 213 libs += [ | 214 libs += [ |
| 214 "rpcrt4.lib", | 215 "rpcrt4.lib", |
| 215 "wtsapi32.lib", | 216 "wtsapi32.lib", |
| 216 ] | 217 ] |
| 217 } | 218 } |
| 218 } | 219 } |
| 219 } | 220 } |
| OLD | NEW |