| OLD | NEW |
| 1 # The GN build definitions for these variables are in scripts.gni. | 1 # The GN build definitions for these variables are in scripts.gni. |
| 2 { | 2 { |
| 3 'variables': { | 3 'variables': { |
| 4 'scripts_for_in_files': [ | 4 'scripts_for_in_files': [ |
| 5 # jinja2/__init__.py contains version string, so sufficient as | 5 # jinja2/__init__.py contains version string, so sufficient as |
| 6 # dependency for whole jinja2 package | 6 # dependency for whole jinja2 package |
| 7 '<(DEPTH)/third_party/jinja2/__init__.py', | 7 '<(DEPTH)/third_party/jinja2/__init__.py', |
| 8 '<(DEPTH)/third_party/markupsafe/__init__.py', # jinja2 dep | 8 '<(DEPTH)/third_party/markupsafe/__init__.py', # jinja2 dep |
| 9 'hasher.py', | 9 'hasher.py', |
| 10 'in_file.py', | 10 'in_file.py', |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 'templates/ElementWrapperFactory.cpp.tmpl', | 40 'templates/ElementWrapperFactory.cpp.tmpl', |
| 41 'templates/ElementWrapperFactory.h.tmpl', | 41 'templates/ElementWrapperFactory.h.tmpl', |
| 42 ], | 42 ], |
| 43 'make_element_type_helpers_files': [ | 43 'make_element_type_helpers_files': [ |
| 44 '<@(make_qualified_names_files)', | 44 '<@(make_qualified_names_files)', |
| 45 'make_element_type_helpers.py', | 45 'make_element_type_helpers.py', |
| 46 'templates/ElementTypeHelpers.h.tmpl', | 46 'templates/ElementTypeHelpers.h.tmpl', |
| 47 ], | 47 ], |
| 48 'conditions': [ | 48 'conditions': [ |
| 49 ['OS=="win"', { | 49 ['OS=="win"', { |
| 50 # Using native perl rather than cygwin perl cuts execution time | |
| 51 # of idl preprocessing rules by a bit more than 50%. | |
| 52 'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe', | |
| 53 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', | 50 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', |
| 54 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', | 51 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', |
| 55 },{ | 52 },{ |
| 56 'perl_exe': 'perl', | |
| 57 'gperf_exe': 'gperf', | 53 'gperf_exe': 'gperf', |
| 58 'bison_exe': 'bison', | 54 'bison_exe': 'bison', |
| 59 }], | 55 }], |
| 60 ], | 56 ], |
| 61 }, | 57 }, |
| 62 } | 58 } |
| OLD | NEW |