OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//remoting/build/config/remoting_build.gni") |
| 6 |
| 7 group("all_tests") { |
| 8 testonly = true |
| 9 } |
| 10 |
| 11 group("all") { |
| 12 testonly = true |
| 13 |
| 14 deps = [] |
| 15 |
| 16 if (is_win) { |
| 17 deps += [ ":remoting_breakpad_tester" ] |
| 18 } |
| 19 |
| 20 if (enable_nacl) { |
| 21 deps += [ "//remoting/tools/javascript_key_tester" ] |
| 22 } |
| 23 } |
| 24 |
| 25 if (is_win) { |
| 26 executable("remoting_breakpad_tester") { |
| 27 deps = [ |
| 28 "//base", |
| 29 "//build/win:default_exe_manifest", |
| 30 "//remoting/host", |
| 31 ] |
| 32 |
| 33 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 34 |
| 35 sources = [ |
| 36 "breakpad_tester_win.cc", |
| 37 ] |
| 38 } |
| 39 } |
OLD | NEW |