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': [ |
| 19 '<@(scripts_for_in_files)', |
| 20 'css_properties.py', |
| 21 '../../core/css/CSSProperties.in', |
| 22 ], |
18 'make_event_factory_files': [ | 23 'make_event_factory_files': [ |
19 '<@(scripts_for_in_files)', | 24 '<@(scripts_for_in_files)', |
20 'make_event_factory.py', | 25 'make_event_factory.py', |
21 'templates/EventFactory.cpp.tmpl', | 26 'templates/EventFactory.cpp.tmpl', |
22 ], | 27 ], |
23 'make_names_files': [ | 28 'make_names_files': [ |
24 '<@(scripts_for_in_files)', | 29 '<@(scripts_for_in_files)', |
25 'make_names.py', | 30 'make_names.py', |
26 'templates/MakeNames.cpp.tmpl', | 31 'templates/MakeNames.cpp.tmpl', |
27 'templates/MakeNames.h.tmpl', | 32 'templates/MakeNames.h.tmpl', |
(...skipping 21 matching lines...) Expand all Loading... |
49 ['OS=="win"', { | 54 ['OS=="win"', { |
50 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', | 55 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', |
51 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', | 56 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', |
52 },{ | 57 },{ |
53 'gperf_exe': 'gperf', | 58 'gperf_exe': 'gperf', |
54 'bison_exe': 'bison', | 59 'bison_exe': 'bison', |
55 }], | 60 }], |
56 ], | 61 ], |
57 }, | 62 }, |
58 } | 63 } |
OLD | NEW |