| 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', |
| 11 'in_generator.py', | 11 'in_generator.py', |
| 12 'license.py', | 12 'license.py', |
| 13 'name_macros.py', | 13 'name_macros.py', |
| 14 'name_utilities.py', | 14 'name_utilities.py', |
| 15 'template_expander.py', | 15 'template_expander.py', |
| 16 'templates/macros.tmpl', | 16 'templates/macros.tmpl', |
| 17 ], | 17 ], |
| 18 'css_properties_files': [ | 18 'css_properties_files': [ |
| 19 '<@(scripts_for_in_files)', | 19 '<@(scripts_for_in_files)', |
| 20 'css_properties.py', | 20 'css_properties.py', |
| 21 '../../core/css/CSSProperties.in', | 21 '../../core/css/CSSProperties.in', |
| 22 ], | 22 ], |
| 23 'make_event_factory_files': [ | 23 'make_event_factory_files': [ |
| 24 '<@(scripts_for_in_files)', | 24 '<@(scripts_for_in_files)', |
| 25 'make_event_factory.py', | 25 'make_event_factory.py', |
| 26 'templates/EventFactory.cpp.tmpl', | |
| 27 ], | 26 ], |
| 28 'make_names_files': [ | 27 'make_names_files': [ |
| 29 '<@(scripts_for_in_files)', | 28 '<@(scripts_for_in_files)', |
| 30 'make_names.py', | 29 'make_names.py', |
| 31 'templates/MakeNames.cpp.tmpl', | 30 'templates/MakeNames.cpp.tmpl', |
| 32 'templates/MakeNames.h.tmpl', | 31 'templates/MakeNames.h.tmpl', |
| 33 ], | 32 ], |
| 34 'make_qualified_names_files': [ | 33 'make_qualified_names_files': [ |
| 35 '<@(scripts_for_in_files)', | 34 '<@(scripts_for_in_files)', |
| 36 'make_qualified_names.py', | 35 'make_qualified_names.py', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 54 ['OS=="win"', { | 53 ['OS=="win"', { |
| 55 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', | 54 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', |
| 56 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', | 55 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', |
| 57 },{ | 56 },{ |
| 58 'gperf_exe': 'gperf', | 57 'gperf_exe': 'gperf', |
| 59 'bison_exe': 'bison', | 58 'bison_exe': 'bison', |
| 60 }], | 59 }], |
| 61 ], | 60 ], |
| 62 }, | 61 }, |
| 63 } | 62 } |
| OLD | NEW |