Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(687)

Side by Side Diff: build/features_override.gypi

Issue 2818015: Webkit Roll 61360:61384 (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « DEPS ('k') | webkit/tools/layout_tests/test_expectations.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 # but not listed below, it will revert to its hardcoded webkit value. 11 # but not listed below, it will revert to its hardcoded webkit value.
12 'feature_defines': [ 12 'feature_defines': [
13 'ENABLE_3D_CANVAS=1', 13 'ENABLE_3D_CANVAS=1',
14 'ENABLE_BLOB_SLICE=1', 14 'ENABLE_BLOB_SLICE=1',
15 'ENABLE_CHANNEL_MESSAGING=1', 15 'ENABLE_CHANNEL_MESSAGING=1',
16 'ENABLE_DASHBOARD_SUPPORT=0',
16 'ENABLE_DATABASE=1', 17 'ENABLE_DATABASE=1',
17 'ENABLE_DATAGRID=0', 18 'ENABLE_DATAGRID=0',
19 'ENABLE_DOM_STORAGE=1',
18 'ENABLE_EVENTSOURCE=1', 20 'ENABLE_EVENTSOURCE=1',
19 'ENABLE_OFFLINE_WEB_APPLICATIONS=1',
20 'ENABLE_DASHBOARD_SUPPORT=0',
21 'ENABLE_DOM_STORAGE=1',
22 'ENABLE_INDEXED_DATABASE=1',
23 'ENABLE_FILE_READER=1', 21 'ENABLE_FILE_READER=1',
24 'ENABLE_FILTERS=1', 22 'ENABLE_FILTERS=1',
25 'ENABLE_GEOLOCATION=1', 23 'ENABLE_GEOLOCATION=1',
24 'ENABLE_ICONDATABASE=0',
25 'ENABLE_INDEXED_DATABASE=1',
26 'ENABLE_JAVASCRIPT_DEBUGGER=1', 26 'ENABLE_JAVASCRIPT_DEBUGGER=1',
27 'ENABLE_JSC_MULTIPLE_THREADS=0', 27 'ENABLE_JSC_MULTIPLE_THREADS=0',
28 'ENABLE_ICONDATABASE=0', 28 'ENABLE_METER_TAG=1',
29 'ENABLE_NOTIFICATIONS=1', 29 'ENABLE_NOTIFICATIONS=1',
30 'ENABLE_OFFLINE_WEB_APPLICATIONS=1',
30 'ENABLE_OPENTYPE_SANITIZER=1', 31 'ENABLE_OPENTYPE_SANITIZER=1',
31 'ENABLE_ORIENTATION_EVENTS=0', 32 'ENABLE_ORIENTATION_EVENTS=0',
33 'ENABLE_PROGRESS_TAG=1',
32 'ENABLE_RUBY=1', 34 'ENABLE_RUBY=1',
33 'ENABLE_SANDBOX=1', 35 'ENABLE_SANDBOX=1',
34 'ENABLE_XSLT=1',
35 'ENABLE_XPATH=1',
36 'ENABLE_SHARED_WORKERS=1', 36 'ENABLE_SHARED_WORKERS=1',
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_FONTS=<(enable_svg)',
41 'ENABLE_SVG_FOREIGN_OBJECT=<(enable_svg)',
40 'ENABLE_SVG_USE=<(enable_svg)', 42 'ENABLE_SVG_USE=<(enable_svg)',
41 'ENABLE_SVG_FOREIGN_OBJECT=<(enable_svg)',
42 'ENABLE_SVG_FONTS=<(enable_svg)',
43 'ENABLE_TOUCH_EVENTS=<(enable_touch_events)', 43 'ENABLE_TOUCH_EVENTS=<(enable_touch_events)',
44 'ENABLE_V8_SCRIPT_DEBUG_SERVER=1',
44 'ENABLE_VIDEO=1', 45 'ENABLE_VIDEO=1',
45 'ENABLE_WEB_SOCKETS=1', 46 'ENABLE_WEB_SOCKETS=1',
46 'ENABLE_WORKERS=1', 47 'ENABLE_WORKERS=1',
47 'ENABLE_V8_SCRIPT_DEBUG_SERVER=1', 48 'ENABLE_XPATH=1',
49 'ENABLE_XSLT=1',
48 ], 50 ],
49 # We have to nest variables inside variables so that they can be overridden 51 # We have to nest variables inside variables so that they can be overridden
50 # through GYP_DEFINES. 52 # through GYP_DEFINES.
51 'variables': { 53 'variables': {
52 'use_accelerated_compositing%': 0, 54 'use_accelerated_compositing%': 0,
53 'enable_svg%': 1, 55 'enable_svg%': 1,
54 'enable_touch_events%': 1, 56 'enable_touch_events%': 1,
55 }, 57 },
56 'use_accelerated_compositing%': '<(use_accelerated_compositing)', 58 'use_accelerated_compositing%': '<(use_accelerated_compositing)',
57 'enable_svg%': '<(enable_svg)', 59 'enable_svg%': '<(enable_svg)',
(...skipping 12 matching lines...) Expand all
70 # require changes in gyp. 72 # require changes in gyp.
71 }, 73 },
72 74
73 } 75 }
74 76
75 # Local Variables: 77 # Local Variables:
76 # tab-width:2 78 # tab-width:2
77 # indent-tabs-mode:nil 79 # indent-tabs-mode:nil
78 # End: 80 # End:
79 # vim: set expandtab tabstop=2 shiftwidth=2: 81 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « DEPS ('k') | webkit/tools/layout_tests/test_expectations.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698