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") |
11 | 11 |
12 # Various remoting targets need this version definition. | 12 # Various remoting targets need this version definition. |
13 config("version") { | 13 config("version") { |
14 defines = [ "VERSION=$chrome_version_full" ] | 14 defines = [ "VERSION=$chrome_version_full" ] |
15 } | 15 } |
16 | 16 |
17 group("remoting_all") { | 17 group("remoting_all") { |
18 testonly = true | 18 testonly = true |
19 | 19 |
20 deps = [ | 20 deps = [ |
21 #"//remoting:remoting_browser_test_resources", | 21 #"//remoting:remoting_browser_test_resources", |
22 "//remoting:remoting_unittests", | 22 "//remoting:remoting_unittests", |
| 23 |
23 #"//remoting:remoting_webapp_unittests", | 24 #"//remoting:remoting_webapp_unittests", |
24 #"//app_remoting_test.gyp:ar_sample_test_driver", | 25 #"//app_remoting_test.gyp:ar_sample_test_driver", |
25 #"//app_remoting_webapp.gyp:ar_sample_app", | 26 "//remoting/webapp:ar_sample_app", |
26 ] | 27 ] |
27 | 28 |
28 # TODO(GYP): add is_mac | 29 # TODO(GYP): add is_mac |
29 if ((is_linux && !is_chromeos) || is_win) { | 30 if ((is_linux && !is_chromeos) || is_win) { |
30 deps += [ "//remoting/webapp" ] | 31 deps += [ "//remoting/webapp" ] |
31 } | 32 } |
32 | 33 |
33 if (is_win) { | 34 if (is_win) { |
34 deps += [ | 35 deps += [ |
35 #"//remoting:remoting_breakpad_tester", | 36 #"//remoting:remoting_breakpad_tester", |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 | 183 |
183 if (enable_webrtc) { | 184 if (enable_webrtc) { |
184 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 185 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
185 } | 186 } |
186 } | 187 } |
187 } | 188 } |
188 } else { | 189 } else { |
189 group("remoting_unittests") { | 190 group("remoting_unittests") { |
190 } | 191 } |
191 } | 192 } |
OLD | NEW |