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

Side by Side Diff: build/common.gypi

Issue 10928138: Set gyp flags to disable various features on iOS (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 3 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 unified diff | Download patch
« 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 ['OS=="android"', { 461 ['OS=="android"', {
462 'enable_extensions%': 0, 462 'enable_extensions%': 0,
463 'enable_printing%': 0, 463 'enable_printing%': 0,
464 'enable_themes%': 0, 464 'enable_themes%': 0,
465 'enable_webrtc%': 0, 465 'enable_webrtc%': 0,
466 'proprietary_codecs%': 1, 466 'proprietary_codecs%': 1,
467 'remoting%': 0, 467 'remoting%': 0,
468 }], 468 }],
469 469
470 ['OS=="ios"', { 470 ['OS=="ios"', {
471 'configuration_policy%': 0,
472 'disable_ftp_support%': 1,
471 'enable_automation%': 0, 473 'enable_automation%': 0,
474 'enable_extensions%': 0,
475 'enable_printing%': 0,
476 'enable_themes%': 0,
472 'enable_webrtc%': 0, 477 'enable_webrtc%': 0,
473 'disable_ftp_support%': 1, 478 'notifications%': 0,
474 'remoting%': 0, 479 'remoting%': 0,
475 }], 480 }],
476 481
477 # Use GPU accelerated cross process image transport by default 482 # Use GPU accelerated cross process image transport by default
478 # on linux builds with the Aura window manager 483 # on linux builds with the Aura window manager
479 ['use_aura==1 and OS=="linux"', { 484 ['use_aura==1 and OS=="linux"', {
480 'ui_compositor_image_transport%': 1, 485 'ui_compositor_image_transport%': 1,
481 }, { 486 }, {
482 'ui_compositor_image_transport%': 0, 487 'ui_compositor_image_transport%': 0,
483 }], 488 }],
(...skipping 2942 matching lines...) Expand 10 before | Expand all | Expand 10 after
3426 # settings in target dicts. SYMROOT is a special case, because many other 3431 # settings in target dicts. SYMROOT is a special case, because many other
3427 # Xcode variables depend on it, including variables such as 3432 # Xcode variables depend on it, including variables such as
3428 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3433 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3429 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3434 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3430 # files to appear (when present) in the UI as actual files and not red 3435 # files to appear (when present) in the UI as actual files and not red
3431 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3436 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3432 # and therefore SYMROOT, needs to be set at the project level. 3437 # and therefore SYMROOT, needs to be set at the project level.
3433 'SYMROOT': '<(DEPTH)/xcodebuild', 3438 'SYMROOT': '<(DEPTH)/xcodebuild',
3434 }, 3439 },
3435 } 3440 }
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