OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 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. |
| 7 { |
| 8 'variables': { |
| 9 # WARNING: This list of strings completely replaces the list in |
| 10 # features.gypi. Therefore, if an enable is listed in features.gypi |
| 11 # but not listed below, it will revert to its hardcoded webkit value. |
| 12 'feature_defines': [ |
| 13 'ENABLE_3D_CANVAS=0', |
| 14 'ENABLE_CHANNEL_MESSAGING=1', |
| 15 'ENABLE_DATABASE=1', |
| 16 'ENABLE_DATAGRID=0', |
| 17 'ENABLE_OFFLINE_WEB_APPLICATIONS=1', |
| 18 'ENABLE_DASHBOARD_SUPPORT=0', |
| 19 'ENABLE_DOM_STORAGE=1', |
| 20 'ENABLE_JAVASCRIPT_DEBUGGER=0', |
| 21 'ENABLE_JSC_MULTIPLE_THREADS=0', |
| 22 'ENABLE_ICONDATABASE=0', |
| 23 'ENABLE_NOTIFICATIONS=0', |
| 24 'ENABLE_ORIENTATION_EVENTS=0', |
| 25 'ENABLE_XSLT=1', |
| 26 'ENABLE_XPATH=1', |
| 27 'ENABLE_SHARED_WORKERS=0', |
| 28 'ENABLE_SVG=1', |
| 29 'ENABLE_SVG_ANIMATION=1', |
| 30 'ENABLE_SVG_AS_IMAGE=1', |
| 31 'ENABLE_SVG_USE=1', |
| 32 'ENABLE_SVG_FOREIGN_OBJECT=1', |
| 33 'ENABLE_SVG_FONTS=1', |
| 34 'ENABLE_VIDEO=1', |
| 35 'ENABLE_WORKERS=1', |
| 36 ], |
| 37 # TODO: If the need arises, create a mechanism that will intelligently |
| 38 # merge the lists rather than replace one with the other. This may |
| 39 # require changes in gyp. |
| 40 }, |
| 41 } |
OLD | NEW |