| 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 26 matching lines...) Expand all Loading... |
| 37 'ENABLE_SVG=<(enable_svg)', | 37 'ENABLE_SVG=<(enable_svg)', |
| 38 'ENABLE_SVG_ANIMATION=<(enable_svg)', | 38 'ENABLE_SVG_ANIMATION=<(enable_svg)', |
| 39 'ENABLE_SVG_AS_IMAGE=<(enable_svg)', | 39 'ENABLE_SVG_AS_IMAGE=<(enable_svg)', |
| 40 'ENABLE_SVG_USE=<(enable_svg)', | 40 'ENABLE_SVG_USE=<(enable_svg)', |
| 41 'ENABLE_SVG_FOREIGN_OBJECT=<(enable_svg)', | 41 'ENABLE_SVG_FOREIGN_OBJECT=<(enable_svg)', |
| 42 'ENABLE_SVG_FONTS=<(enable_svg)', | 42 'ENABLE_SVG_FONTS=<(enable_svg)', |
| 43 'ENABLE_TOUCH_EVENTS=<(enable_touch_events)', | 43 'ENABLE_TOUCH_EVENTS=<(enable_touch_events)', |
| 44 'ENABLE_VIDEO=1', | 44 'ENABLE_VIDEO=1', |
| 45 'ENABLE_WEB_SOCKETS=1', | 45 'ENABLE_WEB_SOCKETS=1', |
| 46 'ENABLE_WORKERS=1', | 46 'ENABLE_WORKERS=1', |
| 47 'ENABLE_V8_SCRIPT_DEBUG_SERVER=0', | |
| 48 ], | 47 ], |
| 49 # We have to nest variables inside variables so that they can be overridden | 48 # We have to nest variables inside variables so that they can be overridden |
| 50 # through GYP_DEFINES. | 49 # through GYP_DEFINES. |
| 51 'variables': { | 50 'variables': { |
| 52 'use_accelerated_compositing%': 0, | 51 'use_accelerated_compositing%': 0, |
| 53 'enable_svg%': 1, | 52 'enable_svg%': 1, |
| 54 'enable_touch_events%': 1, | 53 'enable_touch_events%': 1, |
| 55 }, | 54 }, |
| 56 'use_accelerated_compositing%': '<(use_accelerated_compositing)', | 55 'use_accelerated_compositing%': '<(use_accelerated_compositing)', |
| 57 'enable_svg%': '<(enable_svg)', | 56 'enable_svg%': '<(enable_svg)', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 69 # require changes in gyp. | 68 # require changes in gyp. |
| 70 }, | 69 }, |
| 71 | 70 |
| 72 } | 71 } |
| 73 | 72 |
| 74 # Local Variables: | 73 # Local Variables: |
| 75 # tab-width:2 | 74 # tab-width:2 |
| 76 # indent-tabs-mode:nil | 75 # indent-tabs-mode:nil |
| 77 # End: | 76 # End: |
| 78 # vim: set expandtab tabstop=2 shiftwidth=2: | 77 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |