diff options
author | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-06 08:09:10 +0000 |
---|---|---|
committer | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-06 08:09:10 +0000 |
commit | 61b2aebbd0e5b514fc06ed72bf4973e0c95ccb37 (patch) | |
tree | f593263d96edfa9413effab62372611d7e1925c0 /build | |
parent | 368833b5d0fa09742b1957dc97a02380da539f15 (diff) | |
download | chromium_src-61b2aebbd0e5b514fc06ed72bf4973e0c95ccb37.zip chromium_src-61b2aebbd0e5b514fc06ed72bf4973e0c95ccb37.tar.gz chromium_src-61b2aebbd0e5b514fc06ed72bf4973e0c95ccb37.tar.bz2 |
Disable plugin installation on iOS
Plugin installation is not supported on iOS, so the code shouldn't
be compiled.
BUG=None
Review URL: https://chromiumcodereview.appspot.com/14826004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@198412 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi index 60321e2..c0c68db 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -549,7 +549,7 @@ 'chromium_win_pch%': 1 }], - ['use_aura==1 or chromeos==1 or OS=="android"', { + ['use_aura==1 or chromeos==1 or OS=="android" or OS=="ios"', { 'enable_plugin_installation%': 0, }, { 'enable_plugin_installation%': 1, |