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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 'ENABLE_VIDEO=1', | 65 'ENABLE_VIDEO=1', |
66 'ENABLE_VIEWPORT=1', | 66 'ENABLE_VIEWPORT=1', |
67 'ENABLE_WEBGL=1', | 67 'ENABLE_WEBGL=1', |
68 'ENABLE_XHR_TIMEOUT=0', | 68 'ENABLE_XHR_TIMEOUT=0', |
69 'WTF_USE_BUILTIN_UTF8_CODEC=1', | 69 'WTF_USE_BUILTIN_UTF8_CODEC=1', |
70 # WTF_USE_DYNAMIC_ANNOTATIONS=1 may be defined in build/common.gypi | 70 # WTF_USE_DYNAMIC_ANNOTATIONS=1 may be defined in build/common.gypi |
71 # We can't define it here because it should be present only | 71 # We can't define it here because it should be present only |
72 # in Debug or release_valgrind_build=1 builds. | 72 # in Debug or release_valgrind_build=1 builds. |
73 'WTF_USE_OPENTYPE_SANITIZER=1', | 73 'WTF_USE_OPENTYPE_SANITIZER=1', |
74 'WTF_USE_WEBKIT_IMAGE_DECODERS=1', | 74 'WTF_USE_WEBKIT_IMAGE_DECODERS=1', |
| 75 # Use concatenated HRTF impulse responses |
| 76 'WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1', |
75 ], | 77 ], |
76 # We have to nest variables inside variables so that they can be overridden | 78 # We have to nest variables inside variables so that they can be overridden |
77 # through GYP_DEFINES. | 79 # through GYP_DEFINES. |
78 'variables': { | 80 'variables': { |
79 'enable_svg%': 1, | 81 'enable_svg%': 1, |
80 'enable_touch_icon_loading%' : 0, | 82 'enable_touch_icon_loading%' : 0, |
81 }, | 83 }, |
82 'enable_svg%': '<(enable_svg)', | 84 'enable_svg%': '<(enable_svg)', |
83 'conditions': [ | 85 'conditions': [ |
84 ['OS=="android"', { | 86 ['OS=="android"', { |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 ], | 168 ], |
167 }], | 169 }], |
168 ['use_default_render_theme==1', { | 170 ['use_default_render_theme==1', { |
169 'feature_defines': [ | 171 'feature_defines': [ |
170 'ENABLE_DEFAULT_RENDER_THEME=1', | 172 'ENABLE_DEFAULT_RENDER_THEME=1', |
171 ], | 173 ], |
172 }], | 174 }], |
173 ], | 175 ], |
174 }, | 176 }, |
175 } | 177 } |
OLD | NEW |