OLD | NEW |
| (Empty) |
1 # The GN build definitions for these variables are in scripts.gni. | |
2 { | |
3 'variables': { | |
4 'scripts_for_in_files': [ | |
5 # jinja2/__init__.py contains version string, so sufficient as | |
6 # dependency for whole jinja2 package | |
7 '<(DEPTH)/third_party/jinja2/__init__.py', | |
8 '<(DEPTH)/third_party/markupsafe/__init__.py', # jinja2 dep | |
9 'hasher.py', | |
10 'in_file.py', | |
11 'in_generator.py', | |
12 'license.py', | |
13 'name_utilities.py', | |
14 'template_expander.py', | |
15 'trie_builder.py', | |
16 'templates/macros.tmpl', | |
17 ], | |
18 'css_properties_files': [ | |
19 '<@(scripts_for_in_files)', | |
20 'css_properties.py', | |
21 '../../core/css/CSSProperties.in', | |
22 ], | |
23 'make_event_factory_files': [ | |
24 '<@(scripts_for_in_files)', | |
25 'make_event_factory.py', | |
26 'templates/EventFactory.cpp.tmpl', | |
27 ], | |
28 'make_names_files': [ | |
29 '<@(scripts_for_in_files)', | |
30 'make_names.py', | |
31 'templates/MakeNames.cpp.tmpl', | |
32 'templates/MakeNames.h.tmpl', | |
33 ], | |
34 'make_qualified_names_files': [ | |
35 '<@(scripts_for_in_files)', | |
36 'make_qualified_names.py', | |
37 'templates/MakeQualifiedNames.cpp.tmpl', | |
38 'templates/MakeQualifiedNames.h.tmpl', | |
39 ], | |
40 'make_element_factory_files': [ | |
41 '<@(make_qualified_names_files)', | |
42 'make_element_factory.py', | |
43 'templates/ElementFactory.cpp.tmpl', | |
44 'templates/ElementFactory.h.tmpl', | |
45 ], | |
46 'make_element_type_helpers_files': [ | |
47 '<@(make_qualified_names_files)', | |
48 'make_element_type_helpers.py', | |
49 'templates/ElementTypeHelpers.h.tmpl', | |
50 ], | |
51 'make_trie_helpers_files': [ | |
52 '<@(scripts_for_in_files)', | |
53 'trie_builder.py', | |
54 ], | |
55 'conditions': [ | |
56 ['OS=="win"', { | |
57 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', | |
58 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', | |
59 },{ | |
60 'gperf_exe': 'gperf', | |
61 'bison_exe': 'bison', | |
62 }], | |
63 ], | |
64 }, | |
65 } | |
OLD | NEW |