| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright (C) 2009 Google Inc. All rights reserved. | 2 # Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 ], | 80 ], |
| 81 }], | 81 }], |
| 82 ['OS=="android" and use_openmax_dl_fft!=0', { | 82 ['OS=="android" and use_openmax_dl_fft!=0', { |
| 83 'feature_defines': [ | 83 'feature_defines': [ |
| 84 'WTF_USE_WEBAUDIO_OPENMAX_DL_FFT=1', | 84 'WTF_USE_WEBAUDIO_OPENMAX_DL_FFT=1', |
| 85 # Enabling the FFT is enough to enable WebAudio support to | 85 # Enabling the FFT is enough to enable WebAudio support to |
| 86 # allow most WebAudio features to work on Android. | 86 # allow most WebAudio features to work on Android. |
| 87 'ENABLE_WEB_AUDIO=1', | 87 'ENABLE_WEB_AUDIO=1', |
| 88 ], | 88 ], |
| 89 }], | 89 }], |
| 90 ['OS=="win" or OS=="android" or OS=="linux"', { | 90 # Mac OS X has not implemented support for ENABLE(OPENTYPE_VERTICAL) yet |
| 91 ['OS!="mac"', { |
| 91 'feature_defines': [ | 92 'feature_defines': [ |
| 92 'ENABLE_OPENTYPE_VERTICAL=1', | 93 'ENABLE_OPENTYPE_VERTICAL=1', |
| 93 ], | 94 ], |
| 94 }], | 95 }], |
| 95 ['use_default_render_theme==1', { | 96 ['use_default_render_theme==1', { |
| 96 'feature_defines': [ | 97 'feature_defines': [ |
| 97 'WTF_USE_DEFAULT_RENDER_THEME=1', | 98 'WTF_USE_DEFAULT_RENDER_THEME=1', |
| 98 ], | 99 ], |
| 99 }], | 100 }], |
| 100 ['enable_oilpan==1', { | 101 ['enable_oilpan==1', { |
| 101 'feature_defines': [ | 102 'feature_defines': [ |
| 102 'ENABLE_OILPAN=1', | 103 'ENABLE_OILPAN=1', |
| 103 ], | 104 ], |
| 104 }], | 105 }], |
| 105 ], | 106 ], |
| 106 }, | 107 }, |
| 107 } | 108 } |
| OLD | NEW |