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', | |
14 'name_utilities.py', | 13 'name_utilities.py', |
15 'template_expander.py', | 14 'template_expander.py', |
16 'templates/macros.tmpl', | 15 'templates/macros.tmpl', |
17 ], | 16 ], |
18 'css_properties_files': [ | 17 'css_properties_files': [ |
19 '<@(scripts_for_in_files)', | 18 '<@(scripts_for_in_files)', |
20 'css_properties.py', | 19 'css_properties.py', |
21 '../../core/css/CSSProperties.in', | 20 '../../core/css/CSSProperties.in', |
22 ], | 21 ], |
23 'make_event_factory_files': [ | 22 'make_event_factory_files': [ |
(...skipping 28 matching lines...) Expand all Loading... |
52 ['OS=="win"', { | 51 ['OS=="win"', { |
53 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', | 52 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', |
54 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', | 53 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', |
55 },{ | 54 },{ |
56 'gperf_exe': 'gperf', | 55 'gperf_exe': 'gperf', |
57 'bison_exe': 'bison', | 56 'bison_exe': 'bison', |
58 }], | 57 }], |
59 ], | 58 ], |
60 }, | 59 }, |
61 } | 60 } |
OLD | NEW |