diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-16 22:55:17 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-16 22:55:17 +0000 |
commit | cb6037d67847a6341eea166baf1d4051667a0b88 (patch) | |
tree | 2b766762057e96d758385b96e2a576d7b6690d54 /build | |
parent | f9be34d622561d5599603b41d1c43d595e503426 (diff) | |
download | chromium_src-cb6037d67847a6341eea166baf1d4051667a0b88.zip chromium_src-cb6037d67847a6341eea166baf1d4051667a0b88.tar.gz chromium_src-cb6037d67847a6341eea166baf1d4051667a0b88.tar.bz2 |
reland 31875. Revert was:
------
Revert 31875 to see whether it fixes reliability bot.
BUG=25677
TEST=None
------
TBR=huanr
Review URL: http://codereview.chromium.org/397017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32112 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/build/common.gypi b/build/common.gypi index 7bfcbb0..4652db4 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -45,12 +45,14 @@ 'target_arch%': '<!(uname -m | sed -e "s/i.86/ia32/;s/x86_64/x64/;s/arm.*/arm/")', - # For now, only Linux spellchecks in the renderer. - 'spellchecker_in_renderer%': 1, }, { # OS!="linux" 'target_arch%': 'ia32', - + }], + [ 'OS=="mac"', { + # For now, only Linux and Windows use spellcheck in the renderer. 'spellchecker_in_renderer%': 0, + }, { # OS!="mac" + 'spellchecker_in_renderer%': 1, }], ], @@ -143,7 +145,7 @@ # Whether pepper APIs are enabled. 'enable_pepper%': 0, - + # Whether usage of OpenMAX is enabled. 'enable_openmax%': 0, |