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

Side by Side Diff: Source/WebCore/WebCore.gypi

Issue 14110002: Introduce bindings.gyp (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'webcore_bindings_idl_files': [ 3 'webcore_bindings_idl_files': [
4 'Modules/battery/BatteryManager.idl', 4 'Modules/battery/BatteryManager.idl',
Nico 2013/04/11 05:56:37 Are you planning on moving the idl files out of We
abarth-chromium 2013/04/11 06:25:17 I haven't worked that out entirely. My current th
5 'Modules/battery/NavigatorBattery.idl', 5 'Modules/battery/NavigatorBattery.idl',
6 'Modules/filesystem/DOMFileSystem.idl', 6 'Modules/filesystem/DOMFileSystem.idl',
7 'Modules/filesystem/DOMFileSystemSync.idl', 7 'Modules/filesystem/DOMFileSystemSync.idl',
8 'Modules/filesystem/DOMWindowFileSystem.idl', 8 'Modules/filesystem/DOMWindowFileSystem.idl',
9 'Modules/filesystem/DataTransferItemFileSystem.idl', 9 'Modules/filesystem/DataTransferItemFileSystem.idl',
10 'Modules/filesystem/DirectoryEntry.idl', 10 'Modules/filesystem/DirectoryEntry.idl',
11 'Modules/filesystem/DirectoryEntrySync.idl', 11 'Modules/filesystem/DirectoryEntrySync.idl',
12 'Modules/filesystem/DirectoryReader.idl', 12 'Modules/filesystem/DirectoryReader.idl',
13 'Modules/filesystem/DirectoryReaderSync.idl', 13 'Modules/filesystem/DirectoryReaderSync.idl',
14 'Modules/filesystem/EntriesCallback.idl', 14 'Modules/filesystem/EntriesCallback.idl',
(...skipping 4858 matching lines...) Expand 10 before | Expand all | Expand 10 after
4873 'platform/chromium/support/WebTransformKeyframe.cpp', 4873 'platform/chromium/support/WebTransformKeyframe.cpp',
4874 'platform/chromium/support/WebURL.cpp', 4874 'platform/chromium/support/WebURL.cpp',
4875 'platform/chromium/support/WebURLError.cpp', 4875 'platform/chromium/support/WebURLError.cpp',
4876 'platform/chromium/support/WebURLRequest.cpp', 4876 'platform/chromium/support/WebURLRequest.cpp',
4877 'platform/chromium/support/WebURLRequestPrivate.h', 4877 'platform/chromium/support/WebURLRequestPrivate.h',
4878 'platform/chromium/support/WebURLResponse.cpp', 4878 'platform/chromium/support/WebURLResponse.cpp',
4879 'platform/chromium/support/WebURLResponsePrivate.h', 4879 'platform/chromium/support/WebURLResponsePrivate.h',
4880 'platform/chromium/support/WrappedResourceRequest.h', 4880 'platform/chromium/support/WrappedResourceRequest.h',
4881 'platform/chromium/support/WrappedResourceResponse.h', 4881 'platform/chromium/support/WrappedResourceResponse.h',
4882 ], 4882 ],
4883
4884 'conditions': [
4885 ['OS=="win"', {
4886 # Using native perl rather than cygwin perl cuts execution time of idl
4887 # preprocessing rules by a bit more than 50%.
4888 'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe',
4889 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe',
4890 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe',
4891 # Using cl instead of cygwin gcc cuts the processing time from
4892 # 1m58s to 0m52s.
4893 'preprocessor': '--preprocessor "cl.exe -nologo -EP -TP"',
4894 },{
4895 'perl_exe': 'perl',
4896 'gperf_exe': 'gperf',
4897 'bison_exe': 'bison',
4898
4899 # We specify a preprocess so it happens locally and won't get dist ributed to goma.
4900 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to use / usr/bin/clang once we require Xcode 4.x.
4901 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
4902 }],
4903 ],
4883 } 4904 }
4884 } 4905 }
OLDNEW
« no previous file with comments | « no previous file | Source/WebCore/WebCore.gyp/WebCore.gyp » ('j') | Source/WebCore/WebCore.gyp/WebCore.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698