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

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

Issue 14905002: Use jinja2 templating engine for Python code generators (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@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 'variables': { 2 'variables': {
3 'core_idl_files': [ 3 'core_idl_files': [
4 'css/CSSCharsetRule.idl', 4 'css/CSSCharsetRule.idl',
5 'css/CSSFontFaceLoadEvent.idl', 5 'css/CSSFontFaceLoadEvent.idl',
6 'css/CSSFontFaceRule.idl', 6 'css/CSSFontFaceRule.idl',
7 'css/CSSHostRule.idl', 7 'css/CSSHostRule.idl',
8 'css/CSSImportRule.idl', 8 'css/CSSImportRule.idl',
9 'css/CSSMediaRule.idl', 9 'css/CSSMediaRule.idl',
10 'css/CSSPageRule.idl', 10 'css/CSSPageRule.idl',
(...skipping 3649 matching lines...) Expand 10 before | Expand all | Expand 10 after
3660 'core_unittest_files': [ 3660 'core_unittest_files': [
3661 'tests/HeapGraphSerializerTest.cpp', 3661 'tests/HeapGraphSerializerTest.cpp',
3662 'tests/LayoutUnit.cpp', 3662 'tests/LayoutUnit.cpp',
3663 'tests/LinkRelAttribute.cpp', 3663 'tests/LinkRelAttribute.cpp',
3664 'tests/WebSocketPerMessageDeflateTest.cpp' 3664 'tests/WebSocketPerMessageDeflateTest.cpp'
3665 ], 3665 ],
3666 'scripts_for_in_files': [ 3666 'scripts_for_in_files': [
3667 'scripts/in_file.py', 3667 'scripts/in_file.py',
3668 'scripts/in_generator.py', 3668 'scripts/in_generator.py',
3669 'scripts/license.py', 3669 'scripts/license.py',
3670 'scripts/template_expander.py',
3670 ], 3671 ],
3671 'conditions': [ 3672 'conditions': [
3672 ['OS=="win"', { 3673 ['OS=="win"', {
3673 # Using native perl rather than cygwin perl cuts execution time 3674 # Using native perl rather than cygwin perl cuts execution time
3674 # of idl preprocessing rules by a bit more than 50%. 3675 # of idl preprocessing rules by a bit more than 50%.
3675 'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe', 3676 'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe',
3676 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', 3677 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe',
3677 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', 3678 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe',
3678 # Using cl instead of cygwin gcc cuts the processing time from 3679 # Using cl instead of cygwin gcc cuts the processing time from
3679 # 1m58s to 0m52s. 3680 # 1m58s to 0m52s.
3680 'preprocessor': '--preprocessor "cl.exe -nologo -EP -TP"', 3681 'preprocessor': '--preprocessor "cl.exe -nologo -EP -TP"',
3681 },{ 3682 },{
3682 'perl_exe': 'perl', 3683 'perl_exe': 'perl',
3683 'gperf_exe': 'gperf', 3684 'gperf_exe': 'gperf',
3684 'bison_exe': 'bison', 3685 'bison_exe': 'bison',
3685 # We specify a preprocess so it happens locally and won't get 3686 # We specify a preprocess so it happens locally and won't get
3686 # distributed to goma. 3687 # distributed to goma.
3687 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3688 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3688 # use /usr/bin/clang once we require Xcode 4.x. 3689 # use /usr/bin/clang once we require Xcode 4.x.
3689 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3690 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3690 }], 3691 }],
3691 ], 3692 ],
3692 } 3693 }
3693 } 3694 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/core.gyp/core_derived_sources.gyp » ('j') | Source/core/scripts/make_event_factory.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698