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