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

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

Issue 15095002: Use jinja2 for make_runtime_features and make_internal_runtime_flags (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Updated for Eric's suggestions 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
« no previous file with comments | « no previous file | Source/core/core.gyp/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 { 2 {
3 'variables': { 3 'variables': {
4 'core_idl_files': [ 4 'core_idl_files': [
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/CSSMediaRule.idl', 10 'css/CSSMediaRule.idl',
(...skipping 3639 matching lines...) Expand 10 before | Expand all | Expand 10 after
3650 'tests/HeapGraphSerializerTest.cpp', 3650 'tests/HeapGraphSerializerTest.cpp',
3651 'tests/LayoutUnit.cpp', 3651 'tests/LayoutUnit.cpp',
3652 'tests/LinkRelAttribute.cpp', 3652 'tests/LinkRelAttribute.cpp',
3653 'tests/WebSocketPerMessageDeflateTest.cpp' 3653 'tests/WebSocketPerMessageDeflateTest.cpp'
3654 ], 3654 ],
3655 'scripts_for_in_files': [ 3655 'scripts_for_in_files': [
3656 'scripts/in_file.py', 3656 'scripts/in_file.py',
3657 'scripts/in_generator.py', 3657 'scripts/in_generator.py',
3658 'scripts/license.py', 3658 'scripts/license.py',
3659 'scripts/name_macros.py', 3659 'scripts/name_macros.py',
3660 'scripts/template_expander.py',
3661 'scripts/templates/macros.tmpl',
3660 ], 3662 ],
3661 'conditions': [ 3663 'conditions': [
3662 ['OS=="win"', { 3664 ['OS=="win"', {
3663 # Using native perl rather than cygwin perl cuts execution time 3665 # Using native perl rather than cygwin perl cuts execution time
3664 # of idl preprocessing rules by a bit more than 50%. 3666 # of idl preprocessing rules by a bit more than 50%.
3665 'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe', 3667 'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe',
3666 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', 3668 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe',
3667 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', 3669 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe',
3668 # Using cl instead of cygwin gcc cuts the processing time from 3670 # Using cl instead of cygwin gcc cuts the processing time from
3669 # 1m58s to 0m52s. 3671 # 1m58s to 0m52s.
3670 'preprocessor': '--preprocessor "cl.exe -nologo -EP -TP"', 3672 'preprocessor': '--preprocessor "cl.exe -nologo -EP -TP"',
3671 },{ 3673 },{
3672 'perl_exe': 'perl', 3674 'perl_exe': 'perl',
3673 'gperf_exe': 'gperf', 3675 'gperf_exe': 'gperf',
3674 'bison_exe': 'bison', 3676 'bison_exe': 'bison',
3675 # We specify a preprocess so it happens locally and won't get 3677 # We specify a preprocess so it happens locally and won't get
3676 # distributed to goma. 3678 # distributed to goma.
3677 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3679 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3678 # use /usr/bin/clang once we require Xcode 4.x. 3680 # use /usr/bin/clang once we require Xcode 4.x.
3679 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3681 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3680 }], 3682 }],
3681 ], 3683 ],
3682 } 3684 }
3683 } 3685 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/core.gyp/core_derived_sources.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698