diff options
author | torne@chromium.org <torne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-17 15:26:34 +0000 |
---|---|---|
committer | torne@chromium.org <torne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-17 15:26:34 +0000 |
commit | fc3ab0c74d43b93ac2378b2f629c85bd9ad1e6e5 (patch) | |
tree | 37a8f3a016059ddc92ca15cbb767f78c47e130cb /build | |
parent | f4c6c40323f7b444ad0e8d641dddb0722139a3b9 (diff) | |
download | chromium_src-fc3ab0c74d43b93ac2378b2f629c85bd9ad1e6e5.zip chromium_src-fc3ab0c74d43b93ac2378b2f629c85bd9ad1e6e5.tar.gz chromium_src-fc3ab0c74d43b93ac2378b2f629c85bd9ad1e6e5.tar.bz2 |
Android WebView: disable use of OpenMAX DL lib.
We don't have this library in the WebView tree, and we don't want to
enable WebAudio on only ARM platforms for consistency reasons in any
case.
BUG=
Review URL: https://codereview.chromium.org/14324003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194595 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/common.gypi b/build/common.gypi index e1c251b..8fb2a06 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -643,7 +643,7 @@ }], # Whether Android ARM build uses OpenMAX DL FFT. Default is # yes. This will also enable WebAudio on Android ARM. - ['OS=="android" and target_arch=="arm"', { + ['OS=="android" and target_arch=="arm" and android_webview_build==0', { 'use_openmax_dl_fft%': 1, }, { 'use_openmax_dl_fft%': 0, @@ -944,7 +944,7 @@ # Enable use of OpenMAX DL FFT routines. 'use_openmax_dl_fft%': '<(use_openmax_dl_fft)', - + # Enable new NPDevice API. 'enable_new_npdevice_api%': 0, |