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

Side by Side Diff: Source/core/features.gypi

Issue 14859003: Remove the compile time flag for DATALIST Element. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 7 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
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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 }, 66 },
67 'enable_svg%': '<(enable_svg)', 67 'enable_svg%': '<(enable_svg)',
68 'conditions': [ 68 'conditions': [
69 ['use_concatenated_impulse_responses==1', { 69 ['use_concatenated_impulse_responses==1', {
70 # Use concatenated HRTF impulse responses 70 # Use concatenated HRTF impulse responses
71 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], 71 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'],
72 }], 72 }],
73 ['OS=="android"', { 73 ['OS=="android"', {
74 'feature_defines': [ 74 'feature_defines': [
75 'ENABLE_CALENDAR_PICKER=0', 75 'ENABLE_CALENDAR_PICKER=0',
76 'ENABLE_DATALIST_ELEMENT=0',
77 'ENABLE_FAST_MOBILE_SCROLLING=1', 76 'ENABLE_FAST_MOBILE_SCROLLING=1',
78 'ENABLE_INPUT_SPEECH=0', 77 'ENABLE_INPUT_SPEECH=0',
79 'ENABLE_INPUT_TYPE_COLOR=0', 78 'ENABLE_INPUT_TYPE_COLOR=0',
80 'ENABLE_LEGACY_NOTIFICATIONS=0', 79 'ENABLE_LEGACY_NOTIFICATIONS=0',
81 'ENABLE_MEDIA_CAPTURE=1', 80 'ENABLE_MEDIA_CAPTURE=1',
82 'ENABLE_NOTIFICATIONS=0', 81 'ENABLE_NOTIFICATIONS=0',
83 'ENABLE_ORIENTATION_EVENTS=1', 82 'ENABLE_ORIENTATION_EVENTS=1',
84 'ENABLE_PAGE_POPUP=0', 83 'ENABLE_PAGE_POPUP=0',
85 'ENABLE_PRINTING=0', 84 'ENABLE_PRINTING=0',
86 'ENABLE_NAVIGATOR_CONTENT_UTILS=0', 85 'ENABLE_NAVIGATOR_CONTENT_UTILS=0',
87 'WTF_USE_NATIVE_FULLSCREEN_VIDEO=1', 86 'WTF_USE_NATIVE_FULLSCREEN_VIDEO=1',
88 ], 87 ],
89 'enable_touch_icon_loading': 1, 88 'enable_touch_icon_loading': 1,
90 }, { # OS!="android" 89 }, { # OS!="android"
91 'feature_defines': [ 90 'feature_defines': [
92 'ENABLE_CALENDAR_PICKER=1', 91 'ENABLE_CALENDAR_PICKER=1',
93 'ENABLE_DATALIST_ELEMENT=1',
94 'ENABLE_INPUT_SPEECH=1', 92 'ENABLE_INPUT_SPEECH=1',
95 'ENABLE_INPUT_TYPE_COLOR=1', 93 'ENABLE_INPUT_TYPE_COLOR=1',
96 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', 94 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1',
97 'ENABLE_LEGACY_NOTIFICATIONS=1', 95 'ENABLE_LEGACY_NOTIFICATIONS=1',
98 'ENABLE_MEDIA_CAPTURE=0', 96 'ENABLE_MEDIA_CAPTURE=0',
99 'ENABLE_NAVIGATOR_CONTENT_UTILS=1', 97 'ENABLE_NAVIGATOR_CONTENT_UTILS=1',
100 'ENABLE_NOTIFICATIONS=1', 98 'ENABLE_NOTIFICATIONS=1',
101 'ENABLE_ORIENTATION_EVENTS=0', 99 'ENABLE_ORIENTATION_EVENTS=0',
102 'ENABLE_PAGE_POPUP=1', 100 'ENABLE_PAGE_POPUP=1',
103 'ENABLE_PRINTING=1', 101 'ENABLE_PRINTING=1',
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 ], 148 ],
151 }], 149 }],
152 ['use_default_render_theme==1', { 150 ['use_default_render_theme==1', {
153 'feature_defines': [ 151 'feature_defines': [
154 'ENABLE_DEFAULT_RENDER_THEME=1', 152 'ENABLE_DEFAULT_RENDER_THEME=1',
155 ], 153 ],
156 }], 154 }],
157 ], 155 ],
158 }, 156 },
159 } 157 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698