| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 'enable_touch_icon_loading%' : 0, | 152 'enable_touch_icon_loading%' : 0, |
| 153 'enable_mutation_observers%': 1, | 153 'enable_mutation_observers%': 1, |
| 154 }, | 154 }, |
| 155 'use_accelerated_compositing%': '<(use_accelerated_compositing)', | 155 'use_accelerated_compositing%': '<(use_accelerated_compositing)', |
| 156 'enable_skia_text%': '<(enable_skia_text)', | 156 'enable_skia_text%': '<(enable_skia_text)', |
| 157 'enable_svg%': '<(enable_svg)', | 157 'enable_svg%': '<(enable_svg)', |
| 158 'enable_touch_events%': '<(enable_touch_events)', | 158 'enable_touch_events%': '<(enable_touch_events)', |
| 159 'conditions': [ | 159 'conditions': [ |
| 160 ['OS=="android"', { | 160 ['OS=="android"', { |
| 161 'feature_defines': [ | 161 'feature_defines': [ |
| 162 'ENABLE_ACCELERATED_OVERFLOW_SCROLLING=1', | |
| 163 'ENABLE_CALENDAR_PICKER=0', | 162 'ENABLE_CALENDAR_PICKER=0', |
| 164 'ENABLE_DATALIST_ELEMENT=0', | 163 'ENABLE_DATALIST_ELEMENT=0', |
| 165 'ENABLE_FAST_MOBILE_SCROLLING=1', | 164 'ENABLE_FAST_MOBILE_SCROLLING=1', |
| 166 'ENABLE_INPUT_SPEECH=0', | 165 'ENABLE_INPUT_SPEECH=0', |
| 167 'ENABLE_INPUT_TYPE_COLOR=0', | 166 'ENABLE_INPUT_TYPE_COLOR=0', |
| 168 'ENABLE_INPUT_TYPE_WEEK=0', | 167 'ENABLE_INPUT_TYPE_WEEK=0', |
| 169 'ENABLE_LEGACY_NOTIFICATIONS=0', | 168 'ENABLE_LEGACY_NOTIFICATIONS=0', |
| 170 'ENABLE_MEDIA_CAPTURE=1', | 169 'ENABLE_MEDIA_CAPTURE=1', |
| 171 'ENABLE_MEDIA_STREAM=0', | 170 'ENABLE_MEDIA_STREAM=0', |
| 172 'ENABLE_NOTIFICATIONS=0', | 171 'ENABLE_NOTIFICATIONS=0', |
| 173 'ENABLE_ORIENTATION_EVENTS=1', | 172 'ENABLE_ORIENTATION_EVENTS=1', |
| 174 'ENABLE_PAGE_POPUP=0', | 173 'ENABLE_PAGE_POPUP=0', |
| 175 'ENABLE_PRINTING=0', | 174 'ENABLE_PRINTING=0', |
| 176 'ENABLE_REGISTER_PROTOCOL_HANDLER=0', | 175 'ENABLE_REGISTER_PROTOCOL_HANDLER=0', |
| 177 # FIXME: Disable once the linking error has been resolved. | 176 # FIXME: Disable once the linking error has been resolved. |
| 178 # https://bugs.webkit.org/show_bug.cgi?id=88636 | 177 # https://bugs.webkit.org/show_bug.cgi?id=88636 |
| 179 'ENABLE_SHARED_WORKERS=1', | 178 'ENABLE_SHARED_WORKERS=1', |
| 180 'ENABLE_WEB_AUDIO=0', | 179 'ENABLE_WEB_AUDIO=0', |
| 181 'WTF_USE_NATIVE_FULLSCREEN_VIDEO=1', | 180 'WTF_USE_NATIVE_FULLSCREEN_VIDEO=1', |
| 182 ], | 181 ], |
| 183 'enable_touch_icon_loading': 1, | 182 'enable_touch_icon_loading': 1, |
| 184 }, { # OS!="android" | 183 }, { # OS!="android" |
| 185 'feature_defines': [ | 184 'feature_defines': [ |
| 186 'ENABLE_ACCELERATED_OVERFLOW_SCROLLING=0', | |
| 187 'ENABLE_CALENDAR_PICKER=1', | 185 'ENABLE_CALENDAR_PICKER=1', |
| 188 'ENABLE_DATALIST_ELEMENT=1', | 186 'ENABLE_DATALIST_ELEMENT=1', |
| 189 'ENABLE_INPUT_SPEECH=1', | 187 'ENABLE_INPUT_SPEECH=1', |
| 190 'ENABLE_INPUT_TYPE_COLOR=1', | 188 'ENABLE_INPUT_TYPE_COLOR=1', |
| 191 'ENABLE_INPUT_TYPE_WEEK=1', | 189 'ENABLE_INPUT_TYPE_WEEK=1', |
| 192 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', | 190 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', |
| 193 'ENABLE_LEGACY_NOTIFICATIONS=1', | 191 'ENABLE_LEGACY_NOTIFICATIONS=1', |
| 194 'ENABLE_MEDIA_CAPTURE=0', | 192 'ENABLE_MEDIA_CAPTURE=0', |
| 195 'ENABLE_MEDIA_STREAM=1', | 193 'ENABLE_MEDIA_STREAM=1', |
| 196 'ENABLE_NOTIFICATIONS=1', | 194 'ENABLE_NOTIFICATIONS=1', |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 ], | 253 ], |
| 256 }], | 254 }], |
| 257 ['use_default_render_theme==1', { | 255 ['use_default_render_theme==1', { |
| 258 'feature_defines': [ | 256 'feature_defines': [ |
| 259 'ENABLE_DEFAULT_RENDER_THEME=1', | 257 'ENABLE_DEFAULT_RENDER_THEME=1', |
| 260 ], | 258 ], |
| 261 }], | 259 }], |
| 262 ], | 260 ], |
| 263 }, | 261 }, |
| 264 } | 262 } |
| OLD | NEW |