summaryrefslogtreecommitdiffstats
path: root/remoting/BUILD.gn
diff options
context:
space:
mode:
authorgarykac <garykac@chromium.org>2015-04-16 16:30:24 -0700
committerCommit bot <commit-bot@chromium.org>2015-04-16 23:31:30 +0000
commit62ee8a9cfebbc8bdc037aaa3b37ebfbb45e02472 (patch)
treea85cf16c4eaebb6b36521565c400e0cea9d924f5 /remoting/BUILD.gn
parent7d073dc78a7578aababc032237a54e55a86d3480 (diff)
downloadchromium_src-62ee8a9cfebbc8bdc037aaa3b37ebfbb45e02472.zip
chromium_src-62ee8a9cfebbc8bdc037aaa3b37ebfbb45e02472.tar.gz
chromium_src-62ee8a9cfebbc8bdc037aaa3b37ebfbb45e02472.tar.bz2
[Chromoting] Enable remoting webapp main.html GN build.
The previous remoting webapp GN build files were not enabled and at least 6 months out of date. This cl fixes the problem by bringing the build rules up to date and enables the webapp build. It also starts to move all the remoting-specific build rules into the remoting dir rather than having them in the main build.gn file. BUG= Review URL: https://codereview.chromium.org/1082083005 Cr-Commit-Position: refs/heads/master@{#325551}
Diffstat (limited to 'remoting/BUILD.gn')
-rw-r--r--remoting/BUILD.gn59
1 files changed, 58 insertions, 1 deletions
diff --git a/remoting/BUILD.gn b/remoting/BUILD.gn
index 36211d7..e65a03f 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