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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 "//remoting/client", | 111 "//remoting/client", |
112 "//remoting/codec", | 112 "//remoting/codec", |
113 "//remoting/protocol:test_support", | 113 "//remoting/protocol:test_support", |
114 "//remoting/resources", | 114 "//remoting/resources", |
115 "//remoting/signaling:test_support", | 115 "//remoting/signaling:test_support", |
116 "//remoting/test:test_support", | 116 "//remoting/test:test_support", |
117 "//testing/gmock", | 117 "//testing/gmock", |
118 "//testing/gtest", | 118 "//testing/gtest", |
119 ] | 119 ] |
120 | 120 |
121 if (enable_configuration_policy) { | 121 if (!is_ios) { |
122 deps += [ "//components/policy/core/browser:test_support" ] | 122 deps += [ "//components/policy/core/browser:test_support" ] |
123 } | 123 } |
124 | 124 |
125 if (enable_remoting_host) { | 125 if (enable_remoting_host) { |
126 deps += [ "//remoting/host:test_support" ] | 126 deps += [ "//remoting/host:test_support" ] |
127 } | 127 } |
128 } | 128 } |
129 | 129 |
130 test("remoting_unittests") { | 130 test("remoting_unittests") { |
131 defines = [] | 131 defines = [] |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 | 170 |
171 if (is_win) { | 171 if (is_win) { |
172 defines += [ "_ALT_NO_EXCEPTIONS" ] | 172 defines += [ "_ALT_NO_EXCEPTIONS" ] |
173 | 173 |
174 libs += [ | 174 libs += [ |
175 "comctl32.lib", | 175 "comctl32.lib", |
176 "rpcrt4.lib", | 176 "rpcrt4.lib", |
177 "wtsapi32.lib", | 177 "wtsapi32.lib", |
178 ] | 178 ] |
179 } | 179 } |
180 | |
181 if (enable_configuration_policy) { | |
182 #deps += [ "//components/policy/core/browser:test_support" ] | |
183 } | |
184 } | 180 } |
185 | 181 |
186 if (enable_remoting_host) { | 182 if (enable_remoting_host) { |
187 test("remoting_perftests") { | 183 test("remoting_perftests") { |
188 defines = [] | 184 defines = [] |
189 libs = [] | 185 libs = [] |
190 | 186 |
191 sources = [ | 187 sources = [ |
192 "test/codec_perftest.cc", | 188 "test/codec_perftest.cc", |
193 "test/protocol_perftest.cc", | 189 "test/protocol_perftest.cc", |
(...skipping 20 matching lines...) Expand all Loading... |
214 if (is_win) { | 210 if (is_win) { |
215 defines += [ "_ALT_NO_EXCEPTIONS" ] | 211 defines += [ "_ALT_NO_EXCEPTIONS" ] |
216 | 212 |
217 libs += [ | 213 libs += [ |
218 "rpcrt4.lib", | 214 "rpcrt4.lib", |
219 "wtsapi32.lib", | 215 "wtsapi32.lib", |
220 ] | 216 ] |
221 } | 217 } |
222 } | 218 } |
223 } | 219 } |
OLD | NEW |