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

Unified Diff: build/common.gypi

Issue 9690017: Disable WebUI TaskManager on Desktop Chrome (Win/Mac/Linux) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 1eaa78a174e4e157a83fda3971dfad03f8995548..3450df381794ad53e1a07010dcd3024f2cb09531 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -150,8 +150,8 @@
# Disable file manager component extension by default.
'file_manager_extension%': 0,
- # Enable WebUI TaskManager by default.
- 'webui_task_manager%': 1,
+ # Disable WebUI TaskManager by default.
+ 'webui_task_manager%': 0,
# Python version.
'python_ver%': '2.6',
@@ -383,6 +383,11 @@
'file_manager_extension%': 0,
}],
+ # Enable WebUI TaskManager on Chrome OS or Aura.
+ ['chromeos==1 or use_aura==1', {
+ 'webui_task_manager%': 1,
+ }],
+
# For now one-click signin is enabled only for windows since the UI
# is not yet complete for other platforms.
['OS=="win"', {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698