| 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("//remoting/remoting_version.gni") | 7 import("//remoting/remoting_version.gni") | 
| 8 import("//remoting/remoting_host.gni") | 8 import("//remoting/remoting_enable.gni") | 
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") | 
| 10 | 10 | 
| 11 # Various remoting targets need this version definition. | 11 # Various remoting targets need this version definition. | 
| 12 config("version") { | 12 config("version") { | 
| 13   defines = [ "VERSION=$version_full" ] | 13   defines = [ "VERSION=$version_full" ] | 
| 14 } | 14 } | 
| 15 | 15 | 
|  | 16 group("remoting_all") { | 
|  | 17   testonly = true | 
|  | 18 | 
|  | 19   deps = [ | 
|  | 20     #"//remoting:remoting_browser_test_resources", | 
|  | 21     "//remoting:remoting_unittests", | 
|  | 22 | 
|  | 23     #"//remoting:remoting_webapp", | 
|  | 24     "//remoting/webapp:html", | 
|  | 25 | 
|  | 26     #"//remoting:remoting_webapp_unittests", | 
|  | 27     #"//app_remoting_test.gyp:ar_sample_test_driver", | 
|  | 28     #"//app_remoting_webapp.gyp:ar_sample_app", | 
|  | 29   ] | 
|  | 30 | 
|  | 31   if (is_win) { | 
|  | 32     deps += [ | 
|  | 33       #"//remoting:remoting_breakpad_tester", | 
|  | 34       #"//remoting:remoting_console", | 
|  | 35       #"//remoting:remoting_desktop", | 
|  | 36       #"//remoting:remoting_host_installation", | 
|  | 37     ] | 
|  | 38   } | 
|  | 39 | 
|  | 40   if (is_android) { | 
|  | 41     deps += [ | 
|  | 42       #"//remoting:remoting_apk", | 
|  | 43       #"//remoting:remoting_test_apk", | 
|  | 44       #"//remoting:remoting_unittests_apk", | 
|  | 45     ] | 
|  | 46   } | 
|  | 47 | 
|  | 48   if (enable_remoting_host) { | 
|  | 49     deps += [ | 
|  | 50       "//remoting:remoting_perftests", | 
|  | 51       "//remoting/host", | 
|  | 52       "//remoting/host:remoting_start_host", | 
|  | 53       "//remoting/host/it2me:remote_assistance_host", | 
|  | 54 | 
|  | 55       #"//remoting:remoting_it2me_native_messaging_host", | 
|  | 56       #"//remoting:remoting_native_messaging_manifests", | 
|  | 57     ] | 
|  | 58   } | 
|  | 59 | 
|  | 60   if (enable_me2me_host) { | 
|  | 61     deps += [ | 
|  | 62       "//remoting/host:remoting_me2me_host", | 
|  | 63       #"//remoting/host:remoting_me2me_host_archive", | 
|  | 64     ] | 
|  | 65   } | 
|  | 66 | 
|  | 67   # TODO(GYP) Depends on crbug.com/471924 being fixed for PNaCl. | 
|  | 68   if (enable_nacl) { | 
|  | 69     deps += [ "//remoting:remoting_key_tester" ] | 
|  | 70   } | 
|  | 71 } | 
|  | 72 | 
| 16 # GYP version: remoting/remoting_test.gypi:remoting_test_common | 73 # GYP version: remoting/remoting_test.gypi:remoting_test_common | 
| 17 source_set("test_support") { | 74 source_set("test_support") { | 
| 18   testonly = true | 75   testonly = true | 
| 19 | 76 | 
| 20   sources = [ | 77   sources = [ | 
| 21     # Files from remoting_test_common not in separate test_support targets. | 78     # Files from remoting_test_common not in separate test_support targets. | 
| 22     "signaling/fake_signal_strategy.cc", | 79     "signaling/fake_signal_strategy.cc", | 
| 23     "signaling/fake_signal_strategy.h", | 80     "signaling/fake_signal_strategy.h", | 
| 24     "signaling/mock_signal_strategy.cc", | 81     "signaling/mock_signal_strategy.cc", | 
| 25     "signaling/mock_signal_strategy.h", | 82     "signaling/mock_signal_strategy.h", | 
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 208     } | 265     } | 
| 209   } | 266   } | 
| 210 | 267 | 
| 211   group("remoting_key_tester_pexe") { | 268   group("remoting_key_tester_pexe") { | 
| 212     # TODO(GYP): crbug.com/471924 implement me when we have a pnacl toolchain. | 269     # TODO(GYP): crbug.com/471924 implement me when we have a pnacl toolchain. | 
| 213     #sources = [ | 270     #sources = [ | 
| 214     # "tools/javascript_key_tester/pnacl/remoting_key_tester.cc", | 271     # "tools/javascript_key_tester/pnacl/remoting_key_tester.cc", | 
| 215     #] | 272     #] | 
| 216   } | 273   } | 
| 217 } | 274 } | 
| OLD | NEW | 
|---|