| OLD | NEW |
| 1 { | 1 { |
| 2 'variables': { | 2 'variables': { |
| 3 'scripts_for_in_files': [ | 3 'scripts_for_in_files': [ |
| 4 # jinja2/__init__.py contains version string, so sufficient as | 4 # jinja2/__init__.py contains version string, so sufficient as |
| 5 # dependency for whole jinja2 package | 5 # dependency for whole jinja2 package |
| 6 '<(DEPTH)/third_party/jinja2/__init__.py', | 6 '<(DEPTH)/third_party/jinja2/__init__.py', |
| 7 '<(DEPTH)/third_party/markupsafe/__init__.py', # jinja2 dep | 7 '<(DEPTH)/third_party/markupsafe/__init__.py', # jinja2 dep |
| 8 'hasher.py', | 8 'hasher.py', |
| 9 'in_file.py', | 9 'in_file.py', |
| 10 'in_generator.py', | 10 'in_generator.py', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 'templates/MakeQualifiedNames.h.tmpl', | 32 'templates/MakeQualifiedNames.h.tmpl', |
| 33 ], | 33 ], |
| 34 'make_element_factory_files': [ | 34 'make_element_factory_files': [ |
| 35 '<@(make_qualified_names_files)', | 35 '<@(make_qualified_names_files)', |
| 36 'make_element_factory.py', | 36 'make_element_factory.py', |
| 37 'templates/ElementFactory.cpp.tmpl', | 37 'templates/ElementFactory.cpp.tmpl', |
| 38 'templates/ElementFactory.h.tmpl', | 38 'templates/ElementFactory.h.tmpl', |
| 39 'templates/ElementWrapperFactory.cpp.tmpl', | 39 'templates/ElementWrapperFactory.cpp.tmpl', |
| 40 'templates/ElementWrapperFactory.h.tmpl', | 40 'templates/ElementWrapperFactory.h.tmpl', |
| 41 ], | 41 ], |
| 42 'make_element_type_helpers_files': [ |
| 43 '<@(make_qualified_names_files)', |
| 44 'make_element_type_helpers.py', |
| 45 'templates/ElementTypeHelpers.h.tmpl', |
| 46 ], |
| 42 'conditions': [ | 47 'conditions': [ |
| 43 ['OS=="win"', { | 48 ['OS=="win"', { |
| 44 # Using native perl rather than cygwin perl cuts execution time | 49 # Using native perl rather than cygwin perl cuts execution time |
| 45 # of idl preprocessing rules by a bit more than 50%. | 50 # of idl preprocessing rules by a bit more than 50%. |
| 46 'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe', | 51 'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe', |
| 47 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', | 52 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', |
| 48 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', | 53 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', |
| 49 # Using cl instead of cygwin gcc cuts the processing time from | 54 # Using cl instead of cygwin gcc cuts the processing time from |
| 50 # 1m58s to 0m52s. | 55 # 1m58s to 0m52s. |
| 51 'preprocessor': '--preprocessor "cl.exe -nologo -EP -TP"', | 56 'preprocessor': '--preprocessor "cl.exe -nologo -EP -TP"', |
| 52 },{ | 57 },{ |
| 53 'perl_exe': 'perl', | 58 'perl_exe': 'perl', |
| 54 'gperf_exe': 'gperf', | 59 'gperf_exe': 'gperf', |
| 55 'bison_exe': 'bison', | 60 'bison_exe': 'bison', |
| 56 # We specify a preprocess so it happens locally and won't get | 61 # We specify a preprocess so it happens locally and won't get |
| 57 # distributed to goma. | 62 # distributed to goma. |
| 58 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to | 63 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to |
| 59 # use /usr/bin/clang once we require Xcode 4.x. | 64 # use /usr/bin/clang once we require Xcode 4.x. |
| 60 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' | 65 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' |
| 61 }], | 66 }], |
| 62 ], | 67 ], |
| 63 }, | 68 }, |
| 64 } | 69 } |
| OLD | NEW |