| 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//remoting/remoting_version.gni") | 7 import("//remoting/remoting_version.gni") |
| 8 import("//remoting/remoting_enable.gni") | 8 import("//remoting/remoting_enable.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 "//remoting/client:unit_tests", | 175 "//remoting/client:unit_tests", |
| 176 "//remoting/protocol:test_support", | 176 "//remoting/protocol:test_support", |
| 177 "//remoting/protocol:unit_tests", | 177 "//remoting/protocol:unit_tests", |
| 178 "//testing/gmock", | 178 "//testing/gmock", |
| 179 "//testing/gtest", | 179 "//testing/gtest", |
| 180 "//third_party/webrtc", | 180 "//third_party/webrtc", |
| 181 ] | 181 ] |
| 182 | 182 |
| 183 if (is_android) { | 183 if (is_android) { |
| 184 deps += [ "//testing/android/native_test:native_test_native_code" ] | 184 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 185 } else { | |
| 186 deps += [ | |
| 187 "//remoting/client/plugin", | |
| 188 "//remoting/client/plugin:unit_tests", | |
| 189 ] | |
| 190 } | 185 } |
| 191 | 186 |
| 192 if (enable_remoting_host) { | 187 if (enable_remoting_host) { |
| 193 deps += [ | 188 deps += [ |
| 194 "//remoting/codec:unit_tests", | 189 "//remoting/codec:unit_tests", |
| 195 "//remoting/host:unit_tests", | 190 "//remoting/host:unit_tests", |
| 196 "//ui/gfx", | 191 "//ui/gfx", |
| 197 ] | 192 ] |
| 198 } | 193 } |
| 199 | 194 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 } | 272 } |
| 278 } | 273 } |
| 279 | 274 |
| 280 group("remoting_key_tester_pexe") { | 275 group("remoting_key_tester_pexe") { |
| 281 # TODO(GYP): crbug.com/471924 implement me when we have a pnacl toolchain. | 276 # TODO(GYP): crbug.com/471924 implement me when we have a pnacl toolchain. |
| 282 #sources = [ | 277 #sources = [ |
| 283 # "tools/javascript_key_tester/pnacl/remoting_key_tester.cc", | 278 # "tools/javascript_key_tester/pnacl/remoting_key_tester.cc", |
| 284 #] | 279 #] |
| 285 } | 280 } |
| 286 } | 281 } |
| OLD | NEW |