| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # This file is only included in full-chromium builds, and overrides the | 5 # This file is only included in full-chromium builds, and overrides the |
| 6 # feature_defines variable in third_party/WebKit/WebKit/chromium/features.gypi. | 6 # feature_defines variable in third_party/WebKit/WebKit/chromium/features.gypi. |
| 7 { | 7 { |
| 8 'variables': { | 8 'variables': { |
| 9 # WARNING: This list of strings completely replaces the list in | 9 # WARNING: This list of strings completely replaces the list in |
| 10 # features.gypi. Therefore, if an enable is listed in features.gypi | 10 # features.gypi. Therefore, if an enable is listed in features.gypi |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 'ENABLE_SVG_AS_IMAGE=<(enable_svg)', | 44 'ENABLE_SVG_AS_IMAGE=<(enable_svg)', |
| 45 'ENABLE_SVG_FONTS=<(enable_svg)', | 45 'ENABLE_SVG_FONTS=<(enable_svg)', |
| 46 'ENABLE_SVG_FOREIGN_OBJECT=<(enable_svg)', | 46 'ENABLE_SVG_FOREIGN_OBJECT=<(enable_svg)', |
| 47 'ENABLE_SVG_USE=<(enable_svg)', | 47 'ENABLE_SVG_USE=<(enable_svg)', |
| 48 'ENABLE_TOUCH_EVENTS=<(enable_touch_events)', | 48 'ENABLE_TOUCH_EVENTS=<(enable_touch_events)', |
| 49 'ENABLE_V8_SCRIPT_DEBUG_SERVER=1', | 49 'ENABLE_V8_SCRIPT_DEBUG_SERVER=1', |
| 50 'ENABLE_VIDEO=1', | 50 'ENABLE_VIDEO=1', |
| 51 'ENABLE_WEB_SOCKETS=1', | 51 'ENABLE_WEB_SOCKETS=1', |
| 52 'ENABLE_WEB_TIMING=1', | 52 'ENABLE_WEB_TIMING=1', |
| 53 'ENABLE_WORKERS=1', | 53 'ENABLE_WORKERS=1', |
| 54 'ENABLE_XHR_RESPONSE_BLOB=1', |
| 54 'ENABLE_XPATH=1', | 55 'ENABLE_XPATH=1', |
| 55 'ENABLE_XSLT=1', | 56 'ENABLE_XSLT=1', |
| 56 ], | 57 ], |
| 57 # We have to nest variables inside variables so that they can be overridden | 58 # We have to nest variables inside variables so that they can be overridden |
| 58 # through GYP_DEFINES. | 59 # through GYP_DEFINES. |
| 59 'variables': { | 60 'variables': { |
| 60 'use_accelerated_compositing%': 1, | 61 'use_accelerated_compositing%': 1, |
| 61 'enable_svg%': 1, | 62 'enable_svg%': 1, |
| 62 'enable_touch_events%': 1, | 63 'enable_touch_events%': 1, |
| 63 }, | 64 }, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 79 # require changes in gyp. | 80 # require changes in gyp. |
| 80 }, | 81 }, |
| 81 | 82 |
| 82 } | 83 } |
| 83 | 84 |
| 84 # Local Variables: | 85 # Local Variables: |
| 85 # tab-width:2 | 86 # tab-width:2 |
| 86 # indent-tabs-mode:nil | 87 # indent-tabs-mode:nil |
| 87 # End: | 88 # End: |
| 88 # vim: set expandtab tabstop=2 shiftwidth=2: | 89 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |