| 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 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 group("remoting_all") { | 23 group("remoting_all") { |
| 24 testonly = true | 24 testonly = true |
| 25 | 25 |
| 26 deps = [ | 26 deps = [ |
| 27 #"//remoting:remoting_browser_test_resources", | 27 #"//remoting:remoting_browser_test_resources", |
| 28 "//remoting:remoting_unittests", | 28 "//remoting:remoting_unittests", |
| 29 "//remoting/test:chromoting_test_driver", | 29 "//remoting/test:chromoting_test_driver", |
| 30 | 30 |
| 31 #"//remoting:remoting_webapp_unittests", | 31 #"//remoting:remoting_webapp_unittests", |
| 32 #"//app_remoting_test.gyp:ar_sample_test_driver", | |
| 33 "//remoting/webapp:ar_sample_app", | |
| 34 ] | 32 ] |
| 35 | 33 |
| 36 # TODO(GYP): add is_mac | 34 # TODO(GYP): add is_mac |
| 37 if ((is_linux && !is_chromeos) || is_win) { | 35 if ((is_linux && !is_chromeos) || is_win) { |
| 38 deps += [ "//remoting/webapp" ] | 36 deps += [ "//remoting/webapp" ] |
| 39 } | 37 } |
| 40 | 38 |
| 41 if (is_win) { | 39 if (is_win) { |
| 42 deps += [ | 40 deps += [ |
| 43 #"//remoting:remoting_breakpad_tester", | 41 #"//remoting:remoting_breakpad_tester", |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 | 192 |
| 195 if (enable_webrtc) { | 193 if (enable_webrtc) { |
| 196 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 194 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
| 197 } | 195 } |
| 198 } | 196 } |
| 199 } | 197 } |
| 200 } else { | 198 } else { |
| 201 group("remoting_unittests") { | 199 group("remoting_unittests") { |
| 202 } | 200 } |
| 203 } | 201 } |
| OLD | NEW |