| Index: remoting/BUILD.gn | 
| diff --git a/remoting/BUILD.gn b/remoting/BUILD.gn | 
| index 36211d750e9a583f577210814f1620543258c83d..e65a03f10b41d72ec7544e98cbd89e23044b1e9c 100644 | 
| --- a/remoting/BUILD.gn | 
| +++ b/remoting/BUILD.gn | 
| @@ -5,7 +5,7 @@ | 
| import("//build/config/features.gni") | 
| import("//build/config/ui.gni") | 
| import("//remoting/remoting_version.gni") | 
| -import("//remoting/remoting_host.gni") | 
| +import("//remoting/remoting_enable.gni") | 
| import("//testing/test.gni") | 
|  | 
| # Various remoting targets need this version definition. | 
| @@ -13,6 +13,63 @@ config("version") { | 
| defines = [ "VERSION=$version_full" ] | 
| } | 
|  | 
| +group("remoting_all") { | 
| +  testonly = true | 
| + | 
| +  deps = [ | 
| +    #"//remoting:remoting_browser_test_resources", | 
| +    "//remoting:remoting_unittests", | 
| + | 
| +    #"//remoting:remoting_webapp", | 
| +    "//remoting/webapp:html", | 
| + | 
| +    #"//remoting:remoting_webapp_unittests", | 
| +    #"//app_remoting_test.gyp:ar_sample_test_driver", | 
| +    #"//app_remoting_webapp.gyp:ar_sample_app", | 
| +  ] | 
| + | 
| +  if (is_win) { | 
| +    deps += [ | 
| +      #"//remoting:remoting_breakpad_tester", | 
| +      #"//remoting:remoting_console", | 
| +      #"//remoting:remoting_desktop", | 
| +      #"//remoting:remoting_host_installation", | 
| +    ] | 
| +  } | 
| + | 
| +  if (is_android) { | 
| +    deps += [ | 
| +      #"//remoting:remoting_apk", | 
| +      #"//remoting:remoting_test_apk", | 
| +      #"//remoting:remoting_unittests_apk", | 
| +    ] | 
| +  } | 
| + | 
| +  if (enable_remoting_host) { | 
| +    deps += [ | 
| +      "//remoting:remoting_perftests", | 
| +      "//remoting/host", | 
| +      "//remoting/host:remoting_start_host", | 
| +      "//remoting/host/it2me:remote_assistance_host", | 
| + | 
| +      #"//remoting:remoting_it2me_native_messaging_host", | 
| +      #"//remoting:remoting_native_messaging_manifests", | 
| +    ] | 
| +  } | 
| + | 
| +  if (enable_me2me_host) { | 
| +    deps += [ | 
| +      "//remoting/host:remoting_me2me_host", | 
| +      #"//remoting/host:remoting_me2me_host_archive", | 
| +    ] | 
| +  } | 
| + | 
| +  # TODO(GYP) Depends on crbug.com/471924 being fixed for PNaCl. | 
| +  if (enable_nacl) { | 
| +    deps += [ "//remoting:remoting_key_tester" ] | 
| +  } | 
| +} | 
| + | 
| # GYP version: remoting/remoting_test.gypi:remoting_test_common | 
| source_set("test_support") { | 
| testonly = true | 
|  |