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

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

Issue 26414004: Move core/scripts to build/scripts so that platform can use them. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
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 3609 matching lines...) Expand 10 before | Expand all | Expand 10 after
3620 'platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp', 3620 'platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp',
3621 'platform/image-decoders/webp/WEBPImageDecoderTest.cpp', 3621 'platform/image-decoders/webp/WEBPImageDecoderTest.cpp',
3622 'platform/testing/FakeWebGraphicsContext3D.h', 3622 'platform/testing/FakeWebGraphicsContext3D.h',
3623 'rendering/RenderOverflowTest.cpp', 3623 'rendering/RenderOverflowTest.cpp',
3624 ], 3624 ],
3625 'scripts_for_in_files': [ 3625 'scripts_for_in_files': [
3626 # jinja2/__init__.py contains version string, so sufficient as 3626 # jinja2/__init__.py contains version string, so sufficient as
3627 # dependency for whole jinja2 package 3627 # dependency for whole jinja2 package
3628 '<(DEPTH)/third_party/jinja2/__init__.py', 3628 '<(DEPTH)/third_party/jinja2/__init__.py',
3629 '<(DEPTH)/third_party/markupsafe/__init__.py', # jinja2 dep 3629 '<(DEPTH)/third_party/markupsafe/__init__.py', # jinja2 dep
3630 'scripts/hasher.py', 3630 '../build/scripts/hasher.py',
3631 'scripts/in_file.py', 3631 '../build/scripts/in_file.py',
3632 'scripts/in_generator.py', 3632 '../build/scripts/in_generator.py',
3633 'scripts/license.py', 3633 '../build/scripts/license.py',
3634 'scripts/name_macros.py', 3634 '../build/scripts/name_macros.py',
3635 'scripts/template_expander.py', 3635 '../build/scripts/template_expander.py',
3636 'scripts/templates/macros.tmpl', 3636 '../build/scripts/templates/macros.tmpl',
3637 ], 3637 ],
3638 'make_names_files': [ 3638 'make_names_files': [
3639 '<@(scripts_for_in_files)', 3639 '<@(scripts_for_in_files)',
3640 'scripts/make_names.py', 3640 '../build/scripts/make_names.py',
3641 'scripts/templates/MakeNames.cpp.tmpl', 3641 '../build/scripts/templates/MakeNames.cpp.tmpl',
3642 'scripts/templates/MakeNames.h.tmpl', 3642 '../build/scripts/templates/MakeNames.h.tmpl',
3643 ], 3643 ],
3644 'conditions': [ 3644 'conditions': [
3645 ['OS=="win"', { 3645 ['OS=="win"', {
3646 # Using native perl rather than cygwin perl cuts execution time 3646 # Using native perl rather than cygwin perl cuts execution time
3647 # of idl preprocessing rules by a bit more than 50%. 3647 # of idl preprocessing rules by a bit more than 50%.
3648 'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe', 3648 'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe',
3649 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', 3649 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe',
3650 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', 3650 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe',
3651 # Using cl instead of cygwin gcc cuts the processing time from 3651 # Using cl instead of cygwin gcc cuts the processing time from
3652 # 1m58s to 0m52s. 3652 # 1m58s to 0m52s.
3653 'preprocessor': '--preprocessor "cl.exe -nologo -EP -TP"', 3653 'preprocessor': '--preprocessor "cl.exe -nologo -EP -TP"',
3654 },{ 3654 },{
3655 'perl_exe': 'perl', 3655 'perl_exe': 'perl',
3656 'gperf_exe': 'gperf', 3656 'gperf_exe': 'gperf',
3657 'bison_exe': 'bison', 3657 'bison_exe': 'bison',
3658 # We specify a preprocess so it happens locally and won't get 3658 # We specify a preprocess so it happens locally and won't get
3659 # distributed to goma. 3659 # distributed to goma.
3660 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3660 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3661 # use /usr/bin/clang once we require Xcode 4.x. 3661 # use /usr/bin/clang once we require Xcode 4.x.
3662 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3662 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3663 }], 3663 }],
3664 ], 3664 ],
3665 } 3665 }
3666 } 3666 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698