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

Side by Side Diff: build/common.gypi

Issue 322573002: Merge 274345 "linux_aura: Disable the plugin install infobar." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1985/src/
Patch Set: Created 6 years, 6 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 | 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) 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 717 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 'ui_compositor_image_transport%': 1, 728 'ui_compositor_image_transport%': 1,
729 }, { 729 }, {
730 'ui_compositor_image_transport%': 0, 730 'ui_compositor_image_transport%': 0,
731 }], 731 }],
732 732
733 # Turn precompiled headers on by default. 733 # Turn precompiled headers on by default.
734 ['OS=="win" and buildtype!="Official"', { 734 ['OS=="win" and buildtype!="Official"', {
735 'chromium_win_pch%': 1 735 'chromium_win_pch%': 1
736 }], 736 }],
737 737
738 ['chromeos==1 or OS=="android" or OS=="ios"', { 738 ['chromeos==1 or OS=="android" or OS=="ios" or desktop_linux==1', {
739 'enable_plugin_installation%': 0, 739 'enable_plugin_installation%': 0,
740 }, { 740 }, {
741 'enable_plugin_installation%': 1, 741 'enable_plugin_installation%': 1,
742 }], 742 }],
743 743
744 # Whether PPAPI is enabled. 744 # Whether PPAPI is enabled.
745 ['OS=="android" or OS=="ios" or embedded==1', { 745 ['OS=="android" or OS=="ios" or embedded==1', {
746 'enable_plugins%': 0, 746 'enable_plugins%': 0,
747 }, { 747 }, {
748 'enable_plugins%': 1, 748 'enable_plugins%': 1,
(...skipping 4514 matching lines...) Expand 10 before | Expand all | Expand 10 after
5263 # settings in target dicts. SYMROOT is a special case, because many other 5263 # settings in target dicts. SYMROOT is a special case, because many other
5264 # Xcode variables depend on it, including variables such as 5264 # Xcode variables depend on it, including variables such as
5265 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5265 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5266 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5266 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5267 # files to appear (when present) in the UI as actual files and not red 5267 # files to appear (when present) in the UI as actual files and not red
5268 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5268 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5269 # and therefore SYMROOT, needs to be set at the project level. 5269 # and therefore SYMROOT, needs to be set at the project level.
5270 'SYMROOT': '<(DEPTH)/xcodebuild', 5270 'SYMROOT': '<(DEPTH)/xcodebuild',
5271 }, 5271 },
5272 } 5272 }
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