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

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

Issue 27009005: Generate HTMLElementFactory with Python (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Actually use the code Created 7 years, 2 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 | « Source/core/core.gyp ('k') | Source/core/core_derived_sources.gyp » ('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 'variables': { 2 'variables': {
3 'core_idl_files': [ 3 'core_idl_files': [
4 'css/CSS.idl', 4 'css/CSS.idl',
5 'css/CSSCharsetRule.idl', 5 'css/CSSCharsetRule.idl',
6 'css/CSSFontFaceLoadEvent.idl', 6 'css/CSSFontFaceLoadEvent.idl',
7 'css/CSSFontFaceRule.idl', 7 'css/CSSFontFaceRule.idl',
8 'css/CSSHostRule.idl', 8 'css/CSSHostRule.idl',
9 'css/CSSImportRule.idl', 9 'css/CSSImportRule.idl',
10 'css/CSSKeyframeRule.idl', 10 'css/CSSKeyframeRule.idl',
(...skipping 3628 matching lines...) Expand 10 before | Expand all | Expand 10 after
3639 '../build/scripts/make_names.py', 3639 '../build/scripts/make_names.py',
3640 '../build/scripts/templates/MakeNames.cpp.tmpl', 3640 '../build/scripts/templates/MakeNames.cpp.tmpl',
3641 '../build/scripts/templates/MakeNames.h.tmpl', 3641 '../build/scripts/templates/MakeNames.h.tmpl',
3642 ], 3642 ],
3643 'make_qualified_names_files': [ 3643 'make_qualified_names_files': [
3644 '<@(scripts_for_in_files)', 3644 '<@(scripts_for_in_files)',
3645 '../build/scripts/make_qualified_names.py', 3645 '../build/scripts/make_qualified_names.py',
3646 '../build/scripts/templates/MakeQualifiedNames.cpp.tmpl', 3646 '../build/scripts/templates/MakeQualifiedNames.cpp.tmpl',
3647 '../build/scripts/templates/MakeQualifiedNames.h.tmpl', 3647 '../build/scripts/templates/MakeQualifiedNames.h.tmpl',
3648 ], 3648 ],
3649 'make_element_factory_files': [
3650 '<@(scripts_for_in_files)',
3651 '../build/scripts/make_element_factory.py',
3652 '../build/scripts/templates/ElementFactory.cpp.tmpl',
3653 '../build/scripts/templates/ElementFactory.h.tmpl',
3654 ],
3649 'conditions': [ 3655 'conditions': [
3650 ['OS=="win"', { 3656 ['OS=="win"', {
3651 # Using native perl rather than cygwin perl cuts execution time 3657 # Using native perl rather than cygwin perl cuts execution time
3652 # of idl preprocessing rules by a bit more than 50%. 3658 # of idl preprocessing rules by a bit more than 50%.
3653 'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe', 3659 'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe',
3654 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', 3660 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe',
3655 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', 3661 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe',
3656 # Using cl instead of cygwin gcc cuts the processing time from 3662 # Using cl instead of cygwin gcc cuts the processing time from
3657 # 1m58s to 0m52s. 3663 # 1m58s to 0m52s.
3658 'preprocessor': '--preprocessor "cl.exe -nologo -EP -TP"', 3664 'preprocessor': '--preprocessor "cl.exe -nologo -EP -TP"',
3659 },{ 3665 },{
3660 'perl_exe': 'perl', 3666 'perl_exe': 'perl',
3661 'gperf_exe': 'gperf', 3667 'gperf_exe': 'gperf',
3662 'bison_exe': 'bison', 3668 'bison_exe': 'bison',
3663 # We specify a preprocess so it happens locally and won't get 3669 # We specify a preprocess so it happens locally and won't get
3664 # distributed to goma. 3670 # distributed to goma.
3665 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3671 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3666 # use /usr/bin/clang once we require Xcode 4.x. 3672 # use /usr/bin/clang once we require Xcode 4.x.
3667 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3673 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3668 }], 3674 }],
3669 ], 3675 ],
3670 } 3676 }
3671 } 3677 }
OLDNEW
« no previous file with comments | « Source/core/core.gyp ('k') | Source/core/core_derived_sources.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698