summaryrefslogtreecommitdiffstats
path: root/remoting/remoting_enable.gni
diff options
context:
space:
mode:
authormaniscalco <maniscalco@chromium.org>2015-04-16 16:57:45 -0700
committerCommit bot <commit-bot@chromium.org>2015-04-16 23:59:01 +0000
commit76302d920e57d6d0c368d827a78817aecea541ba (patch)
treeae6159a8eab38678b1247fdbb0415c51f834b46d /remoting/remoting_enable.gni
parentda605e17d193b798562d81c96069fbeff3014631 (diff)
downloadchromium_src-76302d920e57d6d0c368d827a78817aecea541ba.zip
chromium_src-76302d920e57d6d0c368d827a78817aecea541ba.tar.gz
chromium_src-76302d920e57d6d0c368d827a78817aecea541ba.tar.bz2
Revert of [Chromoting] Enable remoting webapp main.html GN build. (patchset #5 id:80001 of https://codereview.chromium.org/1082083005/)
Reason for revert: Suspected of breaking the build. For details, see https://code.google.com/p/chromium/issues/detail?id=477869 Original issue's description: > [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= > > Committed: https://crrev.com/62ee8a9cfebbc8bdc037aaa3b37ebfbb45e02472 > Cr-Commit-Position: refs/heads/master@{#325551} TBR=dpranke@chromium.org,garykac@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG= Review URL: https://codereview.chromium.org/1090023004 Cr-Commit-Position: refs/heads/master@{#325556}
Diffstat (limited to 'remoting/remoting_enable.gni')
-rw-r--r--remoting/remoting_enable.gni24
1 files changed, 0 insertions, 24 deletions
diff --git a/remoting/remoting_enable.gni b/remoting/remoting_enable.gni
deleted file mode 100644
index 511c877..0000000
--- a/remoting/remoting_enable.gni
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-# Keep in sync with remoting/remoting_enable.gypi.
-
-import("//build/config/ui.gni")
-
-enable_remoting_host = false
-enable_me2me_host = false
-
-if (is_win || is_mac) {
- enable_remoting_host = true
- enable_me2me_host = true
-}
-
-if (is_linux && !is_chromeos && use_x11) {
- enable_remoting_host = true
- enable_me2me_host = true
-}
-
-if (is_linux && is_chromeos) {
- enable_remoting_host = true
-}