| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 'WTF_USE_WEBKIT_IMAGE_DECODERS=1', | 67 'WTF_USE_WEBKIT_IMAGE_DECODERS=1', |
| 68 ], | 68 ], |
| 69 # We have to nest variables inside variables so that they can be overridden | 69 # We have to nest variables inside variables so that they can be overridden |
| 70 # through GYP_DEFINES. | 70 # through GYP_DEFINES. |
| 71 'variables': { | 71 'variables': { |
| 72 'enable_svg%': 1, | 72 'enable_svg%': 1, |
| 73 'enable_touch_icon_loading%' : 0, | 73 'enable_touch_icon_loading%' : 0, |
| 74 }, | 74 }, |
| 75 'enable_svg%': '<(enable_svg)', | 75 'enable_svg%': '<(enable_svg)', |
| 76 'conditions': [ | 76 'conditions': [ |
| 77 ['use_concatenated_impulse_responses==1', { |
| 78 # Use concatenated HRTF impulse responses |
| 79 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], |
| 80 }], |
| 77 ['OS=="android"', { | 81 ['OS=="android"', { |
| 78 'feature_defines': [ | 82 'feature_defines': [ |
| 79 'ENABLE_CALENDAR_PICKER=0', | 83 'ENABLE_CALENDAR_PICKER=0', |
| 80 'ENABLE_DATALIST_ELEMENT=0', | 84 'ENABLE_DATALIST_ELEMENT=0', |
| 81 'ENABLE_FAST_MOBILE_SCROLLING=1', | 85 'ENABLE_FAST_MOBILE_SCROLLING=1', |
| 82 'ENABLE_INPUT_SPEECH=0', | 86 'ENABLE_INPUT_SPEECH=0', |
| 83 'ENABLE_INPUT_TYPE_COLOR=0', | 87 'ENABLE_INPUT_TYPE_COLOR=0', |
| 84 'ENABLE_LEGACY_NOTIFICATIONS=0', | 88 'ENABLE_LEGACY_NOTIFICATIONS=0', |
| 85 'ENABLE_MEDIA_CAPTURE=1', | 89 'ENABLE_MEDIA_CAPTURE=1', |
| 86 'ENABLE_NOTIFICATIONS=0', | 90 'ENABLE_NOTIFICATIONS=0', |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 ], | 163 ], |
| 160 }], | 164 }], |
| 161 ['use_default_render_theme==1', { | 165 ['use_default_render_theme==1', { |
| 162 'feature_defines': [ | 166 'feature_defines': [ |
| 163 'ENABLE_DEFAULT_RENDER_THEME=1', | 167 'ENABLE_DEFAULT_RENDER_THEME=1', |
| 164 ], | 168 ], |
| 165 }], | 169 }], |
| 166 ], | 170 ], |
| 167 }, | 171 }, |
| 168 } | 172 } |
| OLD | NEW |