summaryrefslogtreecommitdiffstats
path: root/BUILD.gn
diff options
context:
space:
mode:
authordpranke <dpranke@chromium.org>2015-04-01 13:21:05 -0700
committerCommit bot <commit-bot@chromium.org>2015-04-01 20:21:53 +0000
commitce5eb83716e16f5b92e766ea95c70d2ed1b9ec17 (patch)
tree65a5af3e8e62096c7a6b94eae6f52bd88db0be99 /BUILD.gn
parent99adfe6f9fdc20533c372a54a3cf127d72eb9bfd (diff)
downloadchromium_src-ce5eb83716e16f5b92e766ea95c70d2ed1b9ec17.zip
chromium_src-ce5eb83716e16f5b92e766ea95c70d2ed1b9ec17.tar.gz
chromium_src-ce5eb83716e16f5b92e766ea95c70d2ed1b9ec17.tar.bz2
Add remaining remoting targets for the GN build.
R=brettw@chromium.org, garykac@chromium.org BUG=461019 CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:android_chromium_gn_compile_dbg,android_chromium_gn_compile_rel;tryserver.chromium.win:win8_chromium_gn_rel,win8_chromium_gn_dbg;tryserver.chromium.mac:mac_chromium_gn_rel,mac_chromium_gn_dbg Review URL: https://codereview.chromium.org/1039083004 Cr-Commit-Position: refs/heads/master@{#323314}
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn20
1 files changed, 17 insertions, 3 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 8229104..b2601e3 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -10,6 +10,7 @@
import("//build/config/features.gni")
import("//build/config/ui.gni")
+import("//remoting/remoting_host.gni")
if (is_android) {
import("//build/config/android/config.gni")
@@ -108,8 +109,18 @@ group("gn_all") {
deps += [ "//extensions/shell:app_shell_unittests" ]
}
- if (!is_android) {
- deps += [ "//remoting:remoting_unittests" ]
+ if (enable_remoting_host) {
+ deps += [
+ "//remoting:remoting_unittests",
+ "//remoting:remoting_perftests",
+ "//remoting/host",
+ "//remoting/host:remoting_start_host",
+ "//remoting/host/it2me:remote_assistance_host",
+ ]
+ }
+
+ if (enable_me2me_host) {
+ deps += [ "//remoting/host:remoting_me2me_host" ]
}
if (!is_win) {
@@ -346,7 +357,10 @@ group("gn_all") {
}
if (enable_nacl) {
- deps += [ "//components/nacl:nacl_loader_unittests" ]
+ deps += [
+ "//components/nacl:nacl_loader_unittests",
+ "//remoting:remoting_key_tester",
+ ]
}
if (!is_debug && !is_component_build) {