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

Side by Side Diff: Source/WebCore/bindings/dart/gyp/dartium.gyp

Issue 10025022: Pass the list of idl files to fremontcutbuilder. (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: Created 8 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/WebCore/bindings/dart/gyp/scripts/generate_dart_bindings.py » ('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 'includes': [ 2 'includes': [
3 '../../../../WebKit/chromium/features.gypi', 3 '../../../../WebKit/chromium/features.gypi',
4 '../../../WebCore.gypi', 4 '../../../WebCore.gypi',
5 'overrides.gypi', 5 'overrides.gypi',
6 ], 6 ],
7 'variables': { 7 'variables': {
8 'dart_dir': '../../../../../../../dart', 8 'dart_dir': '../../../../../../../dart',
9 'dart_lib_dir': '<(dart_dir)/lib', 9 'dart_lib_dir': '<(dart_dir)/lib',
10 'dom_common_dir': '<(dart_lib_dir)/dom/common', 10 'dom_common_dir': '<(dart_lib_dir)/dom/common',
11 'resources_dir': '../resources', 11 'resources_dir': '../resources',
12 'scripts_dir': '../../scripts', 12 'scripts_dir': '../../scripts',
13 'webcore_dir': '../../..', 13 'webcore_dir': '../../..',
14 'webcore_gyp_dir': '<(webcore_dir)/WebCore.gyp', 14 'webcore_gyp_dir': '<(webcore_dir)/WebCore.gyp',
15 15
16 # FIXME: share with WebCore.gyp somehow. E.g. idls_list_temp_file is genera ted really early, 16 # FIXME: share with WebCore.gyp somehow. E.g. idls_list_temp_file is genera ted really early,
17 # so we can massage it to adjust paths. 17 # so we can massage it to adjust paths.
18 'bindings_idl_files': [ 18 'bindings_idl_files': [
19 '<@(webcore_bindings_idl_files)', 19 '<@(webcore_bindings_idl_files)',
20 ], 20 ],
21 21
22 'bindings_idl_files!': [ 22 'bindings_idl_files!': [
23 # Custom bindings in bindings/dart/custom exist for these.
24 '<(webcore_dir)/dom/EventListener.idl',
25 '<(webcore_dir)/dom/EventTarget.idl',
26 '<(webcore_dir)/html/VoidCallback.idl',
27
28 # Bindings with custom Objective-C implementations. 23 # Bindings with custom Objective-C implementations.
Anton Muhin 2012/04/09 14:10:59 just checking, that's how current filters in WebCo
29 '<(webcore_dir)/page/AbstractView.idl', 24 '<(webcore_dir)/page/AbstractView.idl',
30 25
31 # FIXME: eventually we should enable them, but not now. Those only inject 26 # FIXME: suppressed after the merge.
32 # constructors anyway, so we need a special treatment for them. 27 '<(webcore_dir)/Modules/gamepad/Gamepad.idl',
33 '<(webcore_dir)/Modules/indexeddb/DOMWindowIndexedDatabase.idl', 28 '<(webcore_dir)/Modules/gamepad/NavigatorGamepad.idl',
34 '<(webcore_dir)/Modules/intents/DOMWindowIntents.idl', 29 '<(webcore_dir)/Modules/intents/DOMWindowIntents.idl',
35 '<(webcore_dir)/Modules/webdatabase/DOMWindowSQLDatabase.idl', 30 '<(webcore_dir)/Modules/intents/IntentResultCallback.idl',
36 '<(webcore_dir)/webaudio/DOMWindowWebAudio.idl',
37 '<(webcore_dir)/websockets/DOMWindowWebSocket.idl',
38
39 # FIXME: suppressed after the merge.
40 '<(webcore_dir)/Modules/gamepad/NavigatorGamepad.idl',
41 '<(webcore_dir)/Modules/intents/NavigatorIntents.idl', 31 '<(webcore_dir)/Modules/intents/NavigatorIntents.idl',
42 '<(webcore_dir)/Modules/intents/IntentResultCallback.idl',
43 '<(webcore_dir)/html/canvas/Uint8ClampedArray.idl',
44 '<(webcore_dir)/inspector/InjectedScriptHost.idl', 32 '<(webcore_dir)/inspector/InjectedScriptHost.idl',
45 33
46 # These bindings are excluded, as they're only used through inheritance an d don't define constants that would need a constructor. 34 # These bindings are excluded, as they're only used through inheritance an d don't define constants that would need a constructor.
47 '<(webcore_dir)/svg/ElementTimeControl.idl', 35 '<(webcore_dir)/svg/ElementTimeControl.idl',
48 '<(webcore_dir)/svg/SVGExternalResourcesRequired.idl', 36 '<(webcore_dir)/svg/SVGExternalResourcesRequired.idl',
49 '<(webcore_dir)/svg/SVGFilterPrimitiveStandardAttributes.idl', 37 '<(webcore_dir)/svg/SVGFilterPrimitiveStandardAttributes.idl',
50 '<(webcore_dir)/svg/SVGFitToViewBox.idl', 38 '<(webcore_dir)/svg/SVGFitToViewBox.idl',
51 39
52 '<(webcore_dir)/svg/SVGLangSpace.idl', 40 '<(webcore_dir)/svg/SVGLangSpace.idl',
53 '<(webcore_dir)/svg/SVGLocatable.idl', 41 '<(webcore_dir)/svg/SVGLocatable.idl',
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 '<(resources_dir)/snapshot.dart', 336 '<(resources_dir)/snapshot.dart',
349 '<(resources_dir)/DartSnapshot.bytes.template', 337 '<(resources_dir)/DartSnapshot.bytes.template',
350 '<(output_path)', 338 '<(output_path)',
351 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)gen_snapshot<(EXECUTABLE_SUFFIX) ', 339 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)gen_snapshot<(EXECUTABLE_SUFFIX) ',
352 ], 340 ],
353 }, 341 },
354 ], 342 ],
355 }, 343 },
356 ], 344 ],
357 } 345 }
OLDNEW
« no previous file with comments | « no previous file | Source/WebCore/bindings/dart/gyp/scripts/generate_dart_bindings.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698