| 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 16 matching lines...) Expand all Loading... |
| 27 "//remoting/webapp:ar_sample_app", | 27 "//remoting/webapp:ar_sample_app", |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 # TODO(GYP): add is_mac | 30 # TODO(GYP): add is_mac |
| 31 if ((is_linux && !is_chromeos) || is_win) { | 31 if ((is_linux && !is_chromeos) || is_win) { |
| 32 deps += [ "//remoting/webapp" ] | 32 deps += [ "//remoting/webapp" ] |
| 33 } | 33 } |
| 34 | 34 |
| 35 if (is_win) { | 35 if (is_win) { |
| 36 deps += [ | 36 deps += [ |
| 37 "//remoting:remoting_breakpad_tester", | 37 #"//remoting:remoting_breakpad_tester", |
| 38 "//remoting/host:remoting_console", | 38 #"//remoting:remoting_console", |
| 39 "//remoting/host:remoting_desktop", | 39 #"//remoting:remoting_desktop", |
| 40 | 40 #"//remoting:remoting_host_installation", |
| 41 # "//remoting:remoting_host_installation", | |
| 42 ] | 41 ] |
| 43 } | 42 } |
| 44 | 43 |
| 45 if (is_android) { | 44 if (is_android) { |
| 46 deps += [ | 45 deps += [ |
| 47 "//remoting/android:remoting_apk", | 46 "//remoting/android:remoting_apk", |
| 48 "//remoting/android:remoting_test_apk", | 47 "//remoting/android:remoting_test_apk", |
| 49 ] | 48 ] |
| 50 } | 49 } |
| 51 | 50 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 77 } | 76 } |
| 78 | 77 |
| 79 if (is_win) { | 78 if (is_win) { |
| 80 # GYP version: remoting/remoting_host_win.gypi:remoting_breakpad_tester | 79 # GYP version: remoting/remoting_host_win.gypi:remoting_breakpad_tester |
| 81 executable("remoting_breakpad_tester") { | 80 executable("remoting_breakpad_tester") { |
| 82 deps = [ | 81 deps = [ |
| 83 "//base", | 82 "//base", |
| 84 "//remoting/host", | 83 "//remoting/host", |
| 85 ] | 84 ] |
| 86 | 85 |
| 87 configs += [ "//build/config/compiler:wexit_time_destructors" ] | |
| 88 | |
| 89 sources = [ | 86 sources = [ |
| 90 "tools/breakpad_tester_win.cc", | 87 "tools/breakpad_tester_win.cc", |
| 91 ] | 88 ] |
| 92 } | 89 } |
| 93 } | 90 } |
| 94 | 91 |
| 95 # GYP version: remoting/remoting_test.gypi:remoting_test_support | 92 # GYP version: remoting/remoting_test.gypi:remoting_test_support |
| 96 source_set("test_support") { | 93 source_set("test_support") { |
| 97 testonly = true | 94 testonly = true |
| 98 | 95 |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 | 188 |
| 192 if (enable_webrtc) { | 189 if (enable_webrtc) { |
| 193 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 190 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
| 194 } | 191 } |
| 195 } | 192 } |
| 196 } | 193 } |
| 197 } else { | 194 } else { |
| 198 group("remoting_unittests") { | 195 group("remoting_unittests") { |
| 199 } | 196 } |
| 200 } | 197 } |
| OLD | NEW |