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

Unified Diff: tools/dom/scripts/fremontcutbuilder.py

Issue 14007012: Changes for the roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/dom/idl/dart/dart.idl ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/scripts/fremontcutbuilder.py
diff --git a/tools/dom/scripts/fremontcutbuilder.py b/tools/dom/scripts/fremontcutbuilder.py
index 6ccfefbdc2572bbd95efd01691a0d9906f90b645..a2e65c05715791acc76b364867729c7468929717 100755
--- a/tools/dom/scripts/fremontcutbuilder.py
+++ b/tools/dom/scripts/fremontcutbuilder.py
@@ -16,7 +16,6 @@ FEATURE_DISABLED = [
'ENABLE_CSS_DEVICE_ADAPTATION',
'ENABLE_CUSTOM_SCHEME_HANDLER',
'ENABLE_ENCRYPTED_MEDIA_V2',
- 'ENABLE_INSPECTOR', # Internal DevTools API.
'ENABLE_MEDIA_CAPTURE', # Only enabled on Android.
'ENABLE_MICRODATA',
'ENABLE_ORIENTATION_EVENTS', # Only enabled on Android.
@@ -29,56 +28,32 @@ FEATURE_DISABLED = [
FEATURE_DEFINES = [
'ENABLE_BLOB',
'ENABLE_CALENDAR_PICKER',
- 'ENABLE_CANVAS_PATH',
'ENABLE_CANVAS_PROXY',
'ENABLE_CSS_FILTERS',
'ENABLE_CSS_REGIONS',
- 'ENABLE_CSS_SHADERS',
'ENABLE_CUSTOM_ELEMENTS',
'ENABLE_DATALIST_ELEMENT',
'ENABLE_DETAILS_ELEMENT',
- 'ENABLE_DEVICE_ORIENTATION',
'ENABLE_DIALOG_ELEMENT',
'ENABLE_DIRECTORY_UPLOAD',
- 'ENABLE_DOWNLOAD_ATTRIBUTE',
'ENABLE_ENCRYPTED_MEDIA',
- 'ENABLE_FILE_SYSTEM',
- 'ENABLE_FILTERS',
'ENABLE_FONT_LOAD_EVENTS',
'ENABLE_GAMEPAD',
- 'ENABLE_GEOLOCATION',
'ENABLE_INPUT_SPEECH',
- 'ENABLE_JAVASCRIPT_DEBUGGER',
'ENABLE_LEGACY_NOTIFICATIONS',
- 'ENABLE_MEDIA_STATISTICS',
'ENABLE_MEDIA_STREAM',
- 'ENABLE_METER_ELEMENT',
'ENABLE_NAVIGATOR_CONTENT_UTILS',
'ENABLE_NOTIFICATIONS',
'ENABLE_PAGE_POPUP',
- 'ENABLE_PERFORMANCE_TIMELINE',
- 'ENABLE_POINTER_LOCK',
- 'ENABLE_PROGRESS_ELEMENT',
- 'ENABLE_QUOTA',
- 'ENABLE_REQUEST_ANIMATION_FRAME',
- 'ENABLE_REQUEST_AUTOCOMPLETE',
- 'ENABLE_RESOURCE_TIMING',
'ENABLE_SCRIPTED_SPEECH',
- 'ENABLE_SHADOW_DOM',
'ENABLE_SHARED_WORKERS',
- 'ENABLE_SQL_DATABASE',
- 'ENABLE_STYLE_SCOPED',
'ENABLE_SVG',
'ENABLE_SVG_FONTS',
'ENABLE_TOUCH_EVENTS',
- 'ENABLE_USER_TIMING',
'ENABLE_VIDEO',
'ENABLE_VIDEO_TRACK',
'ENABLE_WEB_AUDIO',
'ENABLE_WEBGL',
- 'ENABLE_WEB_SOCKETS',
- 'ENABLE_WEB_TIMING',
- 'ENABLE_WORKERS',
'ENABLE_XSLT',
]
@@ -153,10 +128,6 @@ def build_database(idl_files, database_dir, parallel=False):
def main(parallel=False):
current_dir = os.path.dirname(__file__)
- ignored_idls = [
- 'AbstractView.idl',
- ]
-
idl_files = []
webcore_dir = os.path.join(current_dir, '..', '..', '..', 'third_party',
@@ -177,7 +148,7 @@ def main(parallel=False):
for name in names:
file_name = os.path.join(dir_name, name)
(interface, ext) = os.path.splitext(file_name)
- if ext == '.idl' and name not in ignored_idls:
+ if ext == '.idl':
idl_files.append(file_name)
os.path.walk(webcore_dir, visitor, webcore_dir)
« no previous file with comments | « tools/dom/idl/dart/dart.idl ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698