| 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("//remoting/build/config/remoting_build.gni") | 5 import("//remoting/build/config/remoting_build.gni") |
| 6 | 6 |
| 7 group("remoting_all") { | 7 group("remoting_all") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 deps = [ | 10 deps = [ |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 deps += [ "//remoting/host:remoting_me2me_host_archive" ] | 69 deps += [ "//remoting/host:remoting_me2me_host_archive" ] |
| 70 } | 70 } |
| 71 } | 71 } |
| 72 | 72 |
| 73 if (enable_nacl) { | 73 if (enable_nacl) { |
| 74 deps += [ "//remoting/tools/javascript_key_tester" ] | 74 deps += [ "//remoting/tools/javascript_key_tester" ] |
| 75 } | 75 } |
| 76 } | 76 } |
| 77 | 77 |
| 78 if (is_win) { | 78 if (is_win) { |
| 79 # GYP version: remoting/remoting_host_win.gypi:remoting_breakpad_tester | |
| 80 executable("remoting_breakpad_tester") { | 79 executable("remoting_breakpad_tester") { |
| 81 deps = [ | 80 deps = [ |
| 82 "//base", | 81 "//base", |
| 83 "//build/win:default_exe_manifest", | 82 "//build/win:default_exe_manifest", |
| 84 "//remoting/host", | 83 "//remoting/host", |
| 85 ] | 84 ] |
| 86 | 85 |
| 87 libs = [] | 86 libs = [] |
| 88 | 87 |
| 89 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 88 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 90 | 89 |
| 91 sources = [ | 90 sources = [ |
| 92 "tools/breakpad_tester_win.cc", | 91 "tools/breakpad_tester_win.cc", |
| 93 ] | 92 ] |
| 94 | 93 |
| 95 if (is_win) { | 94 if (is_win) { |
| 96 libs += [ | 95 libs += [ |
| 97 "rpcrt4.lib", | 96 "rpcrt4.lib", |
| 98 "wtsapi32.lib", | 97 "wtsapi32.lib", |
| 99 ] | 98 ] |
| 100 } | 99 } |
| 101 } | 100 } |
| 102 } | 101 } |
| 103 | 102 |
| 104 # GYP version: remoting/remoting_test.gypi:remoting_test_support | |
| 105 group("test_support") { | 103 group("test_support") { |
| 106 testonly = true | 104 testonly = true |
| 107 | 105 |
| 108 deps = [ | 106 deps = [ |
| 109 "//base", | 107 "//base", |
| 110 "//net", | 108 "//net", |
| 111 "//remoting/base", | 109 "//remoting/base", |
| 112 "//remoting/client", | 110 "//remoting/client", |
| 113 "//remoting/codec", | 111 "//remoting/codec", |
| 114 "//remoting/protocol:test_support", | 112 "//remoting/protocol:test_support", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 if (is_win) { | 213 if (is_win) { |
| 216 defines += [ "_ALT_NO_EXCEPTIONS" ] | 214 defines += [ "_ALT_NO_EXCEPTIONS" ] |
| 217 | 215 |
| 218 libs += [ | 216 libs += [ |
| 219 "rpcrt4.lib", | 217 "rpcrt4.lib", |
| 220 "wtsapi32.lib", | 218 "wtsapi32.lib", |
| 221 ] | 219 ] |
| 222 } | 220 } |
| 223 } | 221 } |
| 224 } | 222 } |
| OLD | NEW |