Chromium Code Reviews| Index: build/common.gypi |
| diff --git a/build/common.gypi b/build/common.gypi |
| index 0967683b3c9037a315f4ed58b78a595cd8c3b84a..c1b2d8af8b6716dd0611957ab3306c1604504f5e 100644 |
| --- a/build/common.gypi |
| +++ b/build/common.gypi |
| @@ -641,6 +641,13 @@ |
| }, { |
| 'test_isolation_mode%': 'noop', |
| }], |
| + # 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"', { |
| + 'use_openmax_dl_fft%': 1, |
| + }, { |
| + 'use_openmax_dl_fft%': 0, |
|
shashi
2013/04/16 22:41:01
nit: not aligned, delete extra space.
|
| + }], |
| ], |
| # Set this to 1 to use the Google-internal file containing |
| @@ -678,7 +685,7 @@ |
| 'google_default_client_secret%': '', |
| # Whether Android uses OpenMAX DL FFT. Default is no. |
|
DaleCurtis
2013/04/16 22:54:46
Default is yes now?
Raymond Toy (Google)
2013/04/16 23:01:05
This should be deleted in favor of lines 644-650.
|
| - 'use_openmax_dl_fft%': 0, |
| + 'use_openmax_dl_fft%': 1, |
| }, |
| # Copy conditionally-set variables out one scope. |