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

Side by Side Diff: build/common.gypi

Issue 14826004: Disable plugin installation on iOS (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 7 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 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 'ui_compositor_image_transport%': 1, 544 'ui_compositor_image_transport%': 1,
545 }, { 545 }, {
546 'ui_compositor_image_transport%': 0, 546 'ui_compositor_image_transport%': 0,
547 }], 547 }],
548 548
549 # Turn precompiled headers on by default. 549 # Turn precompiled headers on by default.
550 ['OS=="win" and buildtype!="Official"', { 550 ['OS=="win" and buildtype!="Official"', {
551 'chromium_win_pch%': 1 551 'chromium_win_pch%': 1
552 }], 552 }],
553 553
554 ['use_aura==1 or chromeos==1 or OS=="android"', { 554 ['use_aura==1 or chromeos==1 or OS=="android" or OS=="ios"', {
555 'enable_plugin_installation%': 0, 555 'enable_plugin_installation%': 0,
556 }, { 556 }, {
557 'enable_plugin_installation%': 1, 557 'enable_plugin_installation%': 1,
558 }], 558 }],
559 559
560 ['(OS=="android" and google_tv!=1) or OS=="ios"', { 560 ['(OS=="android" and google_tv!=1) or OS=="ios"', {
561 'enable_plugins%': 0, 561 'enable_plugins%': 0,
562 }, { 562 }, {
563 'enable_plugins%': 1, 563 'enable_plugins%': 1,
564 }], 564 }],
(...skipping 3854 matching lines...) Expand 10 before | Expand all | Expand 10 after
4419 # settings in target dicts. SYMROOT is a special case, because many other 4419 # settings in target dicts. SYMROOT is a special case, because many other
4420 # Xcode variables depend on it, including variables such as 4420 # Xcode variables depend on it, including variables such as
4421 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4421 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4422 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4422 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4423 # files to appear (when present) in the UI as actual files and not red 4423 # files to appear (when present) in the UI as actual files and not red
4424 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4424 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4425 # and therefore SYMROOT, needs to be set at the project level. 4425 # and therefore SYMROOT, needs to be set at the project level.
4426 'SYMROOT': '<(DEPTH)/xcodebuild', 4426 'SYMROOT': '<(DEPTH)/xcodebuild',
4427 }, 4427 },
4428 } 4428 }
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