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

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

Issue 14735003: Remove compile time flag ENABLE_PAGE_POPUP . This is part of an overall effort to remove unneeded c… (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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 'feature_defines': [ 75 'feature_defines': [
76 'ENABLE_CALENDAR_PICKER=0', 76 'ENABLE_CALENDAR_PICKER=0',
77 'ENABLE_DATALIST_ELEMENT=0', 77 'ENABLE_DATALIST_ELEMENT=0',
78 'ENABLE_FAST_MOBILE_SCROLLING=1', 78 'ENABLE_FAST_MOBILE_SCROLLING=1',
79 'ENABLE_INPUT_SPEECH=0', 79 'ENABLE_INPUT_SPEECH=0',
80 'ENABLE_INPUT_TYPE_COLOR=0', 80 'ENABLE_INPUT_TYPE_COLOR=0',
81 'ENABLE_LEGACY_NOTIFICATIONS=0', 81 'ENABLE_LEGACY_NOTIFICATIONS=0',
82 'ENABLE_MEDIA_CAPTURE=1', 82 'ENABLE_MEDIA_CAPTURE=1',
83 'ENABLE_NOTIFICATIONS=0', 83 'ENABLE_NOTIFICATIONS=0',
84 'ENABLE_ORIENTATION_EVENTS=1', 84 'ENABLE_ORIENTATION_EVENTS=1',
85 'ENABLE_PAGE_POPUP=0',
86 'ENABLE_PRINTING=0', 85 'ENABLE_PRINTING=0',
87 'ENABLE_NAVIGATOR_CONTENT_UTILS=0', 86 'ENABLE_NAVIGATOR_CONTENT_UTILS=0',
88 'WTF_USE_NATIVE_FULLSCREEN_VIDEO=1', 87 'WTF_USE_NATIVE_FULLSCREEN_VIDEO=1',
89 ], 88 ],
90 'enable_touch_icon_loading': 1, 89 'enable_touch_icon_loading': 1,
91 }, { # OS!="android" 90 }, { # OS!="android"
92 'feature_defines': [ 91 'feature_defines': [
93 'ENABLE_CALENDAR_PICKER=1', 92 'ENABLE_CALENDAR_PICKER=1',
94 'ENABLE_DATALIST_ELEMENT=1', 93 'ENABLE_DATALIST_ELEMENT=1',
95 'ENABLE_INPUT_SPEECH=1', 94 'ENABLE_INPUT_SPEECH=1',
96 'ENABLE_INPUT_TYPE_COLOR=1', 95 'ENABLE_INPUT_TYPE_COLOR=1',
97 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', 96 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1',
98 'ENABLE_LEGACY_NOTIFICATIONS=1', 97 'ENABLE_LEGACY_NOTIFICATIONS=1',
99 'ENABLE_MEDIA_CAPTURE=0', 98 'ENABLE_MEDIA_CAPTURE=0',
100 'ENABLE_NAVIGATOR_CONTENT_UTILS=1', 99 'ENABLE_NAVIGATOR_CONTENT_UTILS=1',
101 'ENABLE_NOTIFICATIONS=1', 100 'ENABLE_NOTIFICATIONS=1',
102 'ENABLE_ORIENTATION_EVENTS=0', 101 'ENABLE_ORIENTATION_EVENTS=0',
103 'ENABLE_PAGE_POPUP=1',
104 'ENABLE_PRINTING=1', 102 'ENABLE_PRINTING=1',
105 'ENABLE_WEB_AUDIO=1', 103 'ENABLE_WEB_AUDIO=1',
106 ], 104 ],
107 }], 105 }],
108 ['OS=="linux" or OS=="mac" or OS=="android"', { 106 ['OS=="linux" or OS=="mac" or OS=="android"', {
109 'feature_defines': [ 107 'feature_defines': [
110 # 8Bit text runs should be enabled for all platforms webkit.org/b/1113 48 108 # 8Bit text runs should be enabled for all platforms webkit.org/b/1113 48
111 'ENABLE_8BIT_TEXTRUN=1', 109 'ENABLE_8BIT_TEXTRUN=1',
112 'ENABLE_BINDING_INTEGRITY=1', 110 'ENABLE_BINDING_INTEGRITY=1',
113 ], 111 ],
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 ], 150 ],
153 }], 151 }],
154 ['use_default_render_theme==1', { 152 ['use_default_render_theme==1', {
155 'feature_defines': [ 153 'feature_defines': [
156 'ENABLE_DEFAULT_RENDER_THEME=1', 154 'ENABLE_DEFAULT_RENDER_THEME=1',
157 ], 155 ],
158 }], 156 }],
159 ], 157 ],
160 }, 158 },
161 } 159 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698