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

Side by Side Diff: Source/WebKit/chromium/features.gypi

Issue 14296003: Remove TOUCH_EVENTS and TOUCH_EVENT_TRACKING compile-time flags. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase. Created 7 years, 8 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 | « no previous file | Source/WebKit/chromium/src/ChromeClientImpl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Copyright (C) 2009 Google Inc. All rights reserved. 2 # Copyright (C) 2009 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 'ENABLE_MEDIA_STREAM=<(enable_webrtc)', 58 'ENABLE_MEDIA_STREAM=<(enable_webrtc)',
59 'ENABLE_MOUSE_CURSOR_SCALE=1', 59 'ENABLE_MOUSE_CURSOR_SCALE=1',
60 'ENABLE_RESOLUTION_MEDIA_QUERY=0', 60 'ENABLE_RESOLUTION_MEDIA_QUERY=0',
61 'ENABLE_RUBY=1', 61 'ENABLE_RUBY=1',
62 'ENABLE_SANDBOX=1', 62 'ENABLE_SANDBOX=1',
63 'ENABLE_SPEECH_SYNTHESIS=0', 63 'ENABLE_SPEECH_SYNTHESIS=0',
64 'ENABLE_SVG=<(enable_svg)', 64 'ENABLE_SVG=<(enable_svg)',
65 'ENABLE_SVG_FONTS=<(enable_svg)', 65 'ENABLE_SVG_FONTS=<(enable_svg)',
66 'ENABLE_THREADED_HTML_PARSER=1', 66 'ENABLE_THREADED_HTML_PARSER=1',
67 'ENABLE_TOUCH_ADJUSTMENT=1', 67 'ENABLE_TOUCH_ADJUSTMENT=1',
68 'ENABLE_TOUCH_EVENTS=<(enable_touch_events)',
69 'ENABLE_TOUCH_EVENT_TRACKING=<(enable_touch_events)',
70 'ENABLE_TOUCH_ICON_LOADING=<(enable_touch_icon_loading)', 68 'ENABLE_TOUCH_ICON_LOADING=<(enable_touch_icon_loading)',
71 'ENABLE_V8_SCRIPT_DEBUG_SERVER=1', 69 'ENABLE_V8_SCRIPT_DEBUG_SERVER=1',
72 'ENABLE_VIDEO=1', 70 'ENABLE_VIDEO=1',
73 'ENABLE_VIEWPORT=1', 71 'ENABLE_VIEWPORT=1',
74 'ENABLE_VIEWSOURCE_ATTRIBUTE=0', 72 'ENABLE_VIEWSOURCE_ATTRIBUTE=0',
75 'ENABLE_WEBGL=1', 73 'ENABLE_WEBGL=1',
76 'ENABLE_XHR_TIMEOUT=0', 74 'ENABLE_XHR_TIMEOUT=0',
77 'WTF_USE_BUILTIN_UTF8_CODEC=1', 75 'WTF_USE_BUILTIN_UTF8_CODEC=1',
78 # WTF_USE_DYNAMIC_ANNOTATIONS=1 may be defined in build/common.gypi 76 # WTF_USE_DYNAMIC_ANNOTATIONS=1 may be defined in build/common.gypi
79 # We can't define it here because it should be present only 77 # We can't define it here because it should be present only
80 # in Debug or release_valgrind_build=1 builds. 78 # in Debug or release_valgrind_build=1 builds.
81 'WTF_USE_OPENTYPE_SANITIZER=1', 79 'WTF_USE_OPENTYPE_SANITIZER=1',
82 'WTF_USE_WEBKIT_IMAGE_DECODERS=1', 80 'WTF_USE_WEBKIT_IMAGE_DECODERS=1',
83 ], 81 ],
84 # We have to nest variables inside variables so that they can be overridden 82 # We have to nest variables inside variables so that they can be overridden
85 # through GYP_DEFINES. 83 # through GYP_DEFINES.
86 'variables': { 84 'variables': {
87 'enable_svg%': 1, 85 'enable_svg%': 1,
88 'enable_touch_events%': 1,
89 'enable_touch_icon_loading%' : 0, 86 'enable_touch_icon_loading%' : 0,
90 }, 87 },
91 'enable_svg%': '<(enable_svg)', 88 'enable_svg%': '<(enable_svg)',
92 'enable_touch_events%': '<(enable_touch_events)',
93 'conditions': [ 89 'conditions': [
94 ['OS=="android"', { 90 ['OS=="android"', {
95 'feature_defines': [ 91 'feature_defines': [
96 'ENABLE_CALENDAR_PICKER=0', 92 'ENABLE_CALENDAR_PICKER=0',
97 'ENABLE_DATALIST_ELEMENT=0', 93 'ENABLE_DATALIST_ELEMENT=0',
98 'ENABLE_FAST_MOBILE_SCROLLING=1', 94 'ENABLE_FAST_MOBILE_SCROLLING=1',
99 'ENABLE_INPUT_SPEECH=0', 95 'ENABLE_INPUT_SPEECH=0',
100 'ENABLE_INPUT_TYPE_COLOR=0', 96 'ENABLE_INPUT_TYPE_COLOR=0',
101 'ENABLE_LEGACY_NOTIFICATIONS=0', 97 'ENABLE_LEGACY_NOTIFICATIONS=0',
102 'ENABLE_MEDIA_CAPTURE=1', 98 'ENABLE_MEDIA_CAPTURE=1',
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 ], 167 ],
172 }], 168 }],
173 ['use_default_render_theme==1', { 169 ['use_default_render_theme==1', {
174 'feature_defines': [ 170 'feature_defines': [
175 'ENABLE_DEFAULT_RENDER_THEME=1', 171 'ENABLE_DEFAULT_RENDER_THEME=1',
176 ], 172 ],
177 }], 173 }],
178 ], 174 ],
179 }, 175 },
180 } 176 }
OLDNEW
« no previous file with comments | « no previous file | Source/WebKit/chromium/src/ChromeClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698