Chromium Code Reviews| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 100 } | 100 } |
| 101 } | 101 } |
| 102 } | 102 } |
| 103 | 103 |
| 104 group("test_support") { | 104 group("test_support") { |
| 105 testonly = true | 105 testonly = true |
| 106 | 106 |
| 107 deps = [ | 107 deps = [ |
| 108 "//base", | 108 "//base", |
| 109 "//net", | 109 "//net", |
| 110 "//remoting/base", | 110 "//remoting/base:test_support", |
|
nicholss
2017/01/31 16:44:58
I included base in base:test_support so it comes a
| |
| 111 "//remoting/client", | 111 "//remoting/client", |
| 112 "//remoting/codec:decoder", | 112 "//remoting/codec:decoder", |
| 113 "//remoting/codec:encoder", | 113 "//remoting/codec:encoder", |
| 114 "//remoting/protocol:test_support", | 114 "//remoting/protocol:test_support", |
| 115 "//remoting/resources", | 115 "//remoting/resources", |
| 116 "//remoting/signaling:test_support", | 116 "//remoting/signaling:test_support", |
| 117 "//remoting/test:test_support", | 117 "//remoting/test:test_support", |
| 118 "//testing/gmock", | 118 "//testing/gmock", |
| 119 "//testing/gtest", | 119 "//testing/gtest", |
| 120 ] | 120 ] |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 212 if (is_win) { | 212 if (is_win) { |
| 213 defines += [ "_ALT_NO_EXCEPTIONS" ] | 213 defines += [ "_ALT_NO_EXCEPTIONS" ] |
| 214 | 214 |
| 215 libs += [ | 215 libs += [ |
| 216 "rpcrt4.lib", | 216 "rpcrt4.lib", |
| 217 "wtsapi32.lib", | 217 "wtsapi32.lib", |
| 218 ] | 218 ] |
| 219 } | 219 } |
| 220 } | 220 } |
| 221 } | 221 } |
| OLD | NEW |