| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 'ENABLE_CUSTOM_SCHEME_HANDLER=0', | 50 'ENABLE_CUSTOM_SCHEME_HANDLER=0', |
| 51 'ENABLE_DIALOG_ELEMENT=1', | 51 'ENABLE_DIALOG_ELEMENT=1', |
| 52 'ENABLE_ENCRYPTED_MEDIA=1', | 52 'ENABLE_ENCRYPTED_MEDIA=1', |
| 53 'ENABLE_FONT_LOAD_EVENTS=1', | 53 'ENABLE_FONT_LOAD_EVENTS=1', |
| 54 'ENABLE_GAMEPAD=1', | 54 'ENABLE_GAMEPAD=1', |
| 55 'ENABLE_JAVASCRIPT_I18N_API=1', | 55 'ENABLE_JAVASCRIPT_I18N_API=1', |
| 56 'ENABLE_LEGACY_WEB_AUDIO=1', | 56 'ENABLE_LEGACY_WEB_AUDIO=1', |
| 57 'ENABLE_MATHML=0', | 57 'ENABLE_MATHML=0', |
| 58 'ENABLE_MEDIA_STREAM=<(enable_webrtc)', | 58 'ENABLE_MEDIA_STREAM=<(enable_webrtc)', |
| 59 'ENABLE_MOUSE_CURSOR_SCALE=1', | 59 'ENABLE_MOUSE_CURSOR_SCALE=1', |
| 60 'ENABLE_PARSED_STYLE_SHEET_CACHING=1', |
| 60 'ENABLE_RESOLUTION_MEDIA_QUERY=0', | 61 'ENABLE_RESOLUTION_MEDIA_QUERY=0', |
| 61 'ENABLE_RUBY=1', | 62 'ENABLE_RUBY=1', |
| 62 'ENABLE_SANDBOX=1', | 63 'ENABLE_SANDBOX=1', |
| 64 'ENABLE_SATURATED_LAYOUT_ARITHMETIC=1', |
| 63 'ENABLE_SPEECH_SYNTHESIS=0', | 65 'ENABLE_SPEECH_SYNTHESIS=0', |
| 64 'ENABLE_SVG=<(enable_svg)', | 66 'ENABLE_SVG=<(enable_svg)', |
| 65 'ENABLE_SVG_FONTS=<(enable_svg)', | 67 'ENABLE_SVG_FONTS=<(enable_svg)', |
| 66 'ENABLE_THREADED_HTML_PARSER=1', | 68 'ENABLE_THREADED_HTML_PARSER=1', |
| 67 'ENABLE_TOUCH_ADJUSTMENT=1', | 69 'ENABLE_TOUCH_ADJUSTMENT=1', |
| 68 'ENABLE_TOUCH_ICON_LOADING=<(enable_touch_icon_loading)', | 70 'ENABLE_TOUCH_ICON_LOADING=<(enable_touch_icon_loading)', |
| 69 'ENABLE_V8_SCRIPT_DEBUG_SERVER=1', | 71 'ENABLE_V8_SCRIPT_DEBUG_SERVER=1', |
| 70 'ENABLE_VIDEO=1', | 72 'ENABLE_VIDEO=1', |
| 71 'ENABLE_VIEWPORT=1', | 73 'ENABLE_VIEWPORT=1', |
| 72 'ENABLE_VIEWSOURCE_ATTRIBUTE=0', | 74 'ENABLE_VIEWSOURCE_ATTRIBUTE=0', |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 # Enabling the FFT is enough to enable WebAudio support to | 150 # Enabling the FFT is enough to enable WebAudio support to |
| 149 # allow most WebAudio features to work on Android. | 151 # allow most WebAudio features to work on Android. |
| 150 'ENABLE_WEB_AUDIO=1', | 152 'ENABLE_WEB_AUDIO=1', |
| 151 ], | 153 ], |
| 152 }], | 154 }], |
| 153 ['OS=="win" or OS=="android" or use_x11==1', { | 155 ['OS=="win" or OS=="android" or use_x11==1', { |
| 154 'feature_defines': [ | 156 'feature_defines': [ |
| 155 'ENABLE_OPENTYPE_VERTICAL=1', | 157 'ENABLE_OPENTYPE_VERTICAL=1', |
| 156 ], | 158 ], |
| 157 }], | 159 }], |
| 160 ['OS=="win"', { |
| 161 'feature_defines': [ |
| 162 'ENABLE_PAN_SCROLLING=1', |
| 163 ], |
| 164 }], |
| 158 ['OS=="mac"', { | 165 ['OS=="mac"', { |
| 159 'feature_defines': [ | 166 'feature_defines': [ |
| 160 'ENABLE_RUBBER_BANDING=1', | 167 'ENABLE_RUBBER_BANDING=1', |
| 161 'WTF_USE_SKIA_ON_MAC_CHROMIUM=1', | 168 'WTF_USE_SKIA_ON_MAC_CHROMIUM=1', |
| 162 ], | 169 ], |
| 163 }], | 170 }], |
| 164 ['use_x11==1 or OS=="android"', { | 171 ['use_x11==1 or OS=="android"', { |
| 165 'feature_defines': [ | 172 'feature_defines': [ |
| 166 'WTF_USE_HARFBUZZ=1', | 173 'WTF_USE_HARFBUZZ=1', |
| 167 ], | 174 ], |
| 168 }], | 175 }], |
| 169 ['use_default_render_theme==1', { | 176 ['use_default_render_theme==1', { |
| 170 'feature_defines': [ | 177 'feature_defines': [ |
| 171 'ENABLE_DEFAULT_RENDER_THEME=1', | 178 'ENABLE_DEFAULT_RENDER_THEME=1', |
| 172 ], | 179 ], |
| 173 }], | 180 }], |
| 174 ], | 181 ], |
| 175 }, | 182 }, |
| 176 } | 183 } |
| OLD | NEW |