1 # 2 # Copyright (C) 2009 Google Inc. All rights reserved. 3 # 4 # Redistribution and use in source and binary forms, with or without 5 # modification, are permitted provided that the following conditions are 6 # met: 7 # 8 # * Redistributions of source code must retain the above copyright 9 # notice, this list of conditions and the following disclaimer. 10 # * Redistributions in binary form must reproduce the above 11 # copyright notice, this list of conditions and the following disclaimer 12 # in the documentation and/or other materials provided with the 13 # distribution. 14 # * Neither the name of Google Inc. nor the names of its 15 # contributors may be used to endorse or promote products derived from 16 # this software without specific prior written permission. 17 # 18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 # 30 31 { 32 # The following defines turn webkit features on and off. 33 'variables': { 34 'variables': { 35 # We have to nest variables inside variables as a hack for variables 36 # override. 37 38 # WARNING: build/features_override.gypi which is included in a full 39 # chromium build, overrides this list with its own values. See 40 # features_override.gypi inline documentation for more details. 41 'feature_defines%': [ 42 'ENABLE_3D_CANVAS=0', 43 'ENABLE_CHANNEL_MESSAGING=1', 44 'ENABLE_DATABASE=1', 45 'ENABLE_DATAGRID=0', 46 'ENABLE_OFFLINE_WEB_APPLICATIONS=1', 47 'ENABLE_DASHBOARD_SUPPORT=0', 48 'ENABLE_DOM_STORAGE=1', 49 'ENABLE_GEOLOCATION=1', 50 'ENABLE_JAVASCRIPT_DEBUGGER=1', 51 'ENABLE_JSC_MULTIPLE_THREADS=0', 52 'ENABLE_ICONDATABASE=0', 53 'ENABLE_INDEXED_DATABASE=1', 54 'ENABLE_NOTIFICATIONS=1', 55 'ENABLE_OPENTYPE_SANITIZER=1', 56 'ENABLE_ORIENTATION_EVENTS=0', 57 'ENABLE_RUBY=1', 58 'ENABLE_XHTMLMP=0', 59 'ENABLE_XSLT=1', 60 'ENABLE_XPATH=1', 61 'ENABLE_SHARED_WORKERS=1', 62 'ENABLE_SVG=1', 63 'ENABLE_SVG_ANIMATION=1', 64 'ENABLE_SVG_AS_IMAGE=1', 65 'ENABLE_SVG_USE=1', 66 'ENABLE_SVG_FOREIGN_OBJECT=1', 67 'ENABLE_SVG_FONTS=1', 68 'ENABLE_VIDEO=1', 69 'ENABLE_WEB_SOCKETS=1', 70 'ENABLE_WORKERS=1', 71 ], 72 }, 73 'feature_defines%': '<(feature_defines)', 74 }, 75 } 76