Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 3611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3622 'platform/graphics/chromium/test/MockDiscardablePixelRef.h', | 3622 'platform/graphics/chromium/test/MockDiscardablePixelRef.h', |
| 3623 'platform/graphics/chromium/test/MockImageDecoder.h', | 3623 'platform/graphics/chromium/test/MockImageDecoder.h', |
| 3624 'platform/graphics/gpu/DrawingBufferTest.cpp', | 3624 'platform/graphics/gpu/DrawingBufferTest.cpp', |
| 3625 'platform/image-decoders/ImageDecoderTest.cpp', | 3625 'platform/image-decoders/ImageDecoderTest.cpp', |
| 3626 'platform/image-decoders/gif/GIFImageDecoderTest.cpp', | 3626 'platform/image-decoders/gif/GIFImageDecoderTest.cpp', |
| 3627 'platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp', | 3627 'platform/image-decoders/jpeg/JPEGImageDecoderTest.cpp', |
| 3628 'platform/image-decoders/webp/WEBPImageDecoderTest.cpp', | 3628 'platform/image-decoders/webp/WEBPImageDecoderTest.cpp', |
| 3629 'platform/testing/FakeWebGraphicsContext3D.h', | 3629 'platform/testing/FakeWebGraphicsContext3D.h', |
| 3630 'rendering/RenderOverflowTest.cpp', | 3630 'rendering/RenderOverflowTest.cpp', |
| 3631 ], | 3631 ], |
| 3632 'scripts_for_in_files': [ | |
| 3633 # jinja2/__init__.py contains version string, so sufficient as | |
| 3634 # dependency for whole jinja2 package | |
| 3635 '<(DEPTH)/third_party/jinja2/__init__.py', | |
| 3636 '<(DEPTH)/third_party/markupsafe/__init__.py', # jinja2 dep | |
| 3637 '../build/scripts/hasher.py', | |
| 3638 '../build/scripts/in_file.py', | |
| 3639 '../build/scripts/in_generator.py', | |
| 3640 '../build/scripts/license.py', | |
| 3641 '../build/scripts/name_macros.py', | |
| 3642 '../build/scripts/name_utilities.py', | |
| 3643 '../build/scripts/template_expander.py', | |
| 3644 '../build/scripts/templates/macros.tmpl', | |
| 3645 ], | |
| 3646 'make_names_files': [ | 3632 'make_names_files': [ |
| 3647 '<@(scripts_for_in_files)', | 3633 '<@(scripts_for_in_files)', |
| 3648 '../build/scripts/make_names.py', | 3634 '../build/scripts/make_names.py', |
| 3649 '../build/scripts/templates/MakeNames.cpp.tmpl', | 3635 '../build/scripts/templates/MakeNames.cpp.tmpl', |
| 3650 '../build/scripts/templates/MakeNames.h.tmpl', | 3636 '../build/scripts/templates/MakeNames.h.tmpl', |
| 3651 ], | 3637 ], |
|
abarth-chromium
2013/10/10 20:23:42
You should move these too :)
| |
| 3652 'conditions': [ | 3638 'conditions': [ |
| 3653 ['OS=="win"', { | 3639 ['OS=="win"', { |
| 3654 # Using native perl rather than cygwin perl cuts execution time | 3640 # Using native perl rather than cygwin perl cuts execution time |
| 3655 # of idl preprocessing rules by a bit more than 50%. | 3641 # of idl preprocessing rules by a bit more than 50%. |
| 3656 'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe', | 3642 'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe', |
| 3657 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', | 3643 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', |
| 3658 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', | 3644 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', |
| 3659 # Using cl instead of cygwin gcc cuts the processing time from | 3645 # Using cl instead of cygwin gcc cuts the processing time from |
| 3660 # 1m58s to 0m52s. | 3646 # 1m58s to 0m52s. |
| 3661 'preprocessor': '--preprocessor "cl.exe -nologo -EP -TP"', | 3647 'preprocessor': '--preprocessor "cl.exe -nologo -EP -TP"', |
| 3662 },{ | 3648 },{ |
| 3663 'perl_exe': 'perl', | 3649 'perl_exe': 'perl', |
| 3664 'gperf_exe': 'gperf', | 3650 'gperf_exe': 'gperf', |
| 3665 'bison_exe': 'bison', | 3651 'bison_exe': 'bison', |
| 3666 # We specify a preprocess so it happens locally and won't get | 3652 # We specify a preprocess so it happens locally and won't get |
| 3667 # distributed to goma. | 3653 # distributed to goma. |
| 3668 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to | 3654 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to |
| 3669 # use /usr/bin/clang once we require Xcode 4.x. | 3655 # use /usr/bin/clang once we require Xcode 4.x. |
| 3670 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' | 3656 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' |
| 3671 }], | 3657 }], |
| 3672 ], | 3658 ], |
| 3673 } | 3659 } |
| 3674 } | 3660 } |
| OLD | NEW |