OLD | NEW |
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 'ENABLE_MATHML=0', | 54 'ENABLE_MATHML=0', |
55 'ENABLE_MEDIA_STREAM=<(enable_webrtc)', | 55 'ENABLE_MEDIA_STREAM=<(enable_webrtc)', |
56 'ENABLE_PARSED_STYLE_SHEET_CACHING=1', | 56 'ENABLE_PARSED_STYLE_SHEET_CACHING=1', |
57 'ENABLE_RESOLUTION_MEDIA_QUERY=0', | 57 'ENABLE_RESOLUTION_MEDIA_QUERY=0', |
58 'ENABLE_RUBY=1', | 58 'ENABLE_RUBY=1', |
59 'ENABLE_SANDBOX=1', | 59 'ENABLE_SANDBOX=1', |
60 'ENABLE_SATURATED_LAYOUT_ARITHMETIC=1', | 60 'ENABLE_SATURATED_LAYOUT_ARITHMETIC=1', |
61 'ENABLE_SPEECH_SYNTHESIS=0', | 61 'ENABLE_SPEECH_SYNTHESIS=0', |
62 'ENABLE_SVG=<(enable_svg)', | 62 'ENABLE_SVG=<(enable_svg)', |
63 'ENABLE_SVG_FONTS=<(enable_svg)', | 63 'ENABLE_SVG_FONTS=<(enable_svg)', |
| 64 'ENABLE_TOUCH_EVENTS=<(enable_touch_events)', |
| 65 'ENABLE_TOUCH_EVENT_TRACKING=<(enable_touch_events)', |
64 'ENABLE_TOUCH_ICON_LOADING=<(enable_touch_icon_loading)', | 66 'ENABLE_TOUCH_ICON_LOADING=<(enable_touch_icon_loading)', |
65 'ENABLE_V8_SCRIPT_DEBUG_SERVER=1', | 67 'ENABLE_V8_SCRIPT_DEBUG_SERVER=1', |
66 'ENABLE_VIDEO=1', | 68 'ENABLE_VIDEO=1', |
67 'ENABLE_VIEWPORT=1', | 69 'ENABLE_VIEWPORT=1', |
68 'ENABLE_WEBGL=1', | 70 'ENABLE_WEBGL=1', |
69 'ENABLE_XHR_TIMEOUT=0', | 71 'ENABLE_XHR_TIMEOUT=0', |
70 'WTF_USE_BUILTIN_UTF8_CODEC=1', | 72 'WTF_USE_BUILTIN_UTF8_CODEC=1', |
71 # WTF_USE_DYNAMIC_ANNOTATIONS=1 may be defined in build/common.gypi | 73 # WTF_USE_DYNAMIC_ANNOTATIONS=1 may be defined in build/common.gypi |
72 # We can't define it here because it should be present only | 74 # We can't define it here because it should be present only |
73 # in Debug or release_valgrind_build=1 builds. | 75 # in Debug or release_valgrind_build=1 builds. |
74 'WTF_USE_OPENTYPE_SANITIZER=1', | 76 'WTF_USE_OPENTYPE_SANITIZER=1', |
75 'WTF_USE_WEBKIT_IMAGE_DECODERS=1', | 77 'WTF_USE_WEBKIT_IMAGE_DECODERS=1', |
76 ], | 78 ], |
77 # We have to nest variables inside variables so that they can be overridden | 79 # We have to nest variables inside variables so that they can be overridden |
78 # through GYP_DEFINES. | 80 # through GYP_DEFINES. |
79 'variables': { | 81 'variables': { |
80 'enable_svg%': 1, | 82 'enable_svg%': 1, |
| 83 'enable_touch_events%': 1, |
81 'enable_touch_icon_loading%' : 0, | 84 'enable_touch_icon_loading%' : 0, |
82 }, | 85 }, |
83 'enable_svg%': '<(enable_svg)', | 86 'enable_svg%': '<(enable_svg)', |
| 87 'enable_touch_events%': '<(enable_touch_events)', |
84 'conditions': [ | 88 'conditions': [ |
85 ['OS=="android"', { | 89 ['OS=="android"', { |
86 'feature_defines': [ | 90 'feature_defines': [ |
87 'ENABLE_CALENDAR_PICKER=0', | 91 'ENABLE_CALENDAR_PICKER=0', |
88 'ENABLE_DATALIST_ELEMENT=0', | 92 'ENABLE_DATALIST_ELEMENT=0', |
89 'ENABLE_FAST_MOBILE_SCROLLING=1', | 93 'ENABLE_FAST_MOBILE_SCROLLING=1', |
90 'ENABLE_INPUT_SPEECH=0', | 94 'ENABLE_INPUT_SPEECH=0', |
91 'ENABLE_INPUT_TYPE_COLOR=0', | 95 'ENABLE_INPUT_TYPE_COLOR=0', |
92 'ENABLE_LEGACY_NOTIFICATIONS=0', | 96 'ENABLE_LEGACY_NOTIFICATIONS=0', |
93 'ENABLE_MEDIA_CAPTURE=1', | 97 'ENABLE_MEDIA_CAPTURE=1', |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 ], | 171 ], |
168 }], | 172 }], |
169 ['use_default_render_theme==1', { | 173 ['use_default_render_theme==1', { |
170 'feature_defines': [ | 174 'feature_defines': [ |
171 'ENABLE_DEFAULT_RENDER_THEME=1', | 175 'ENABLE_DEFAULT_RENDER_THEME=1', |
172 ], | 176 ], |
173 }], | 177 }], |
174 ], | 178 ], |
175 }, | 179 }, |
176 } | 180 } |
OLD | NEW |