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

Side by Side Diff: build/common.gypi

Issue 8727021: WebUI TaskManager: Turn it off-by-default on Win/Mac/Linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge fix Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 # Set to 1 to enable fast builds. It disables debug info for fastest 126 # Set to 1 to enable fast builds. It disables debug info for fastest
127 # compilation. 127 # compilation.
128 'fastbuild%': 0, 128 'fastbuild%': 0,
129 129
130 # Set to 1 to enable dcheck in release without having to use the flag. 130 # Set to 1 to enable dcheck in release without having to use the flag.
131 'dcheck_always_on%': 0, 131 'dcheck_always_on%': 0,
132 132
133 # Disable file manager component extension by default. 133 # Disable file manager component extension by default.
134 'file_manager_extension%': 0, 134 'file_manager_extension%': 0,
135 135
136 # Enable WebUI TaskManager by default. 136 # Disable WebUI TaskManager by default.
137 'webui_task_manager%': 1, 137 'webui_task_manager%': 0,
138 138
139 # Python version. 139 # Python version.
140 'python_ver%': '2.6', 140 'python_ver%': '2.6',
141 141
142 # Set ARM-v7 compilation flags 142 # Set ARM-v7 compilation flags
143 'armv7%': 0, 143 'armv7%': 0,
144 144
145 # Set Neon compilation flags (only meaningful if armv7==1). 145 # Set Neon compilation flags (only meaningful if armv7==1).
146 'arm_neon%': 1, 146 'arm_neon%': 1,
147 147
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 'file_manager_extension%': 1, 318 'file_manager_extension%': 1,
319 }, { 319 }, {
320 'file_manager_extension%': 0, 320 'file_manager_extension%': 0,
321 }], 321 }],
322 322
323 # ... except on Windows even with Aura. 323 # ... except on Windows even with Aura.
324 ['use_aura==1 and OS=="win"', { 324 ['use_aura==1 and OS=="win"', {
325 'file_manager_extension%': 0, 325 'file_manager_extension%': 0,
326 }], 326 }],
327 327
328 # Enable WebUI TaskManager always on Chrome OS or Aura. 328 # Enable WebUI TaskManager only on Chrome OS or Aura.
329 ['chromeos==1 or use_aura==1', { 329 ['chromeos==1 or use_aura==1', {
330 'webui_task_manager%': 1, 330 'webui_task_manager%': 1,
331 }, {
332 'webui_task_manager%': 0,
mazda 2011/11/29 06:12:25 Is this necessary?
yoshiki 2011/11/29 13:38:01 it's not necessary. Thanks, On 2011/11/29 06:12:2
331 }], 333 }],
332 334
333 ['OS=="android"', { 335 ['OS=="android"', {
334 'proprietary_codecs%': 1, 336 'proprietary_codecs%': 1,
335 'enable_webrtc%': 0, 337 'enable_webrtc%': 0,
336 }], 338 }],
337 339
338 # Use GPU accelerated cross process image transport by default 340 # Use GPU accelerated cross process image transport by default
339 # on linux builds with the Aura window manager 341 # on linux builds with the Aura window manager
340 ['views_compositor==1 and OS=="linux"', { 342 ['views_compositor==1 and OS=="linux"', {
(...skipping 2311 matching lines...) Expand 10 before | Expand all | Expand 10 after
2652 # settings in target dicts. SYMROOT is a special case, because many other 2654 # settings in target dicts. SYMROOT is a special case, because many other
2653 # Xcode variables depend on it, including variables such as 2655 # Xcode variables depend on it, including variables such as
2654 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 2656 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
2655 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 2657 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
2656 # files to appear (when present) in the UI as actual files and not red 2658 # files to appear (when present) in the UI as actual files and not red
2657 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 2659 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
2658 # and therefore SYMROOT, needs to be set at the project level. 2660 # and therefore SYMROOT, needs to be set at the project level.
2659 'SYMROOT': '<(DEPTH)/xcodebuild', 2661 'SYMROOT': '<(DEPTH)/xcodebuild',
2660 }, 2662 },
2661 } 2663 }
OLDNEW
« 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