Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(292)

Unified Diff: remoting/BUILD.gn

Issue 1082083005: [Chromoting] Enable remoting webapp main.html GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add PNaCl bug ref to GN file. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/gn_migration.gypi ('k') | remoting/remoting_all.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « build/gn_migration.gypi ('k') | remoting/remoting_all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698