| 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("//build/util/version.gni") | 7 import("//build/util/version.gni") |
| 8 import("//remoting/remoting_version.gni") | 8 import("//remoting/remoting_version.gni") |
| 9 import("//remoting/remoting_enable.gni") | 9 import("//remoting/remoting_enable.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 if (enable_nacl) { | 83 if (enable_nacl) { |
| 84 deps += [ "//remoting/tools/javascript_key_tester" ] | 84 deps += [ "//remoting/tools/javascript_key_tester" ] |
| 85 } | 85 } |
| 86 } | 86 } |
| 87 | 87 |
| 88 if (is_win) { | 88 if (is_win) { |
| 89 # GYP version: remoting/remoting_host_win.gypi:remoting_breakpad_tester | 89 # GYP version: remoting/remoting_host_win.gypi:remoting_breakpad_tester |
| 90 executable("remoting_breakpad_tester") { | 90 executable("remoting_breakpad_tester") { |
| 91 deps = [ | 91 deps = [ |
| 92 "//base", | 92 "//base", |
| 93 "//build/win:default_exe_manifest", |
| 93 "//remoting/host", | 94 "//remoting/host", |
| 94 ] | 95 ] |
| 95 | 96 |
| 96 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 97 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 97 | 98 |
| 98 sources = [ | 99 sources = [ |
| 99 "tools/breakpad_tester_win.cc", | 100 "tools/breakpad_tester_win.cc", |
| 100 ] | 101 ] |
| 101 } | 102 } |
| 102 } | 103 } |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 | 220 |
| 220 if (enable_webrtc) { | 221 if (enable_webrtc) { |
| 221 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 222 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
| 222 } | 223 } |
| 223 } | 224 } |
| 224 } | 225 } |
| 225 } else { | 226 } else { |
| 226 group("remoting_unittests") { | 227 group("remoting_unittests") { |
| 227 } | 228 } |
| 228 } | 229 } |
| OLD | NEW |