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 24 matching lines...) Expand all Loading... |
35 '<@(scripts_for_in_files)', | 35 '<@(scripts_for_in_files)', |
36 'make_qualified_names.py', | 36 'make_qualified_names.py', |
37 'templates/MakeQualifiedNames.cpp.tmpl', | 37 'templates/MakeQualifiedNames.cpp.tmpl', |
38 'templates/MakeQualifiedNames.h.tmpl', | 38 'templates/MakeQualifiedNames.h.tmpl', |
39 ], | 39 ], |
40 'make_element_factory_files': [ | 40 'make_element_factory_files': [ |
41 '<@(make_qualified_names_files)', | 41 '<@(make_qualified_names_files)', |
42 'make_element_factory.py', | 42 'make_element_factory.py', |
43 'templates/ElementFactory.cpp.tmpl', | 43 'templates/ElementFactory.cpp.tmpl', |
44 'templates/ElementFactory.h.tmpl', | 44 'templates/ElementFactory.h.tmpl', |
45 'templates/ElementWrapperFactory.cpp.tmpl', | |
46 'templates/ElementWrapperFactory.h.tmpl', | |
47 ], | 45 ], |
48 'make_element_type_helpers_files': [ | 46 'make_element_type_helpers_files': [ |
49 '<@(make_qualified_names_files)', | 47 '<@(make_qualified_names_files)', |
50 'make_element_type_helpers.py', | 48 'make_element_type_helpers.py', |
51 'templates/ElementTypeHelpers.h.tmpl', | 49 'templates/ElementTypeHelpers.h.tmpl', |
52 ], | 50 ], |
53 'conditions': [ | 51 'conditions': [ |
54 ['OS=="win"', { | 52 ['OS=="win"', { |
55 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', | 53 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', |
56 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', | 54 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', |
57 },{ | 55 },{ |
58 'gperf_exe': 'gperf', | 56 'gperf_exe': 'gperf', |
59 'bison_exe': 'bison', | 57 'bison_exe': 'bison', |
60 }], | 58 }], |
61 ], | 59 ], |
62 }, | 60 }, |
63 } | 61 } |
OLD | NEW |