Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(385)

Side by Side Diff: Source/build/scripts/scripts.gypi

Issue 552733002: bindings: Cleans up V8{HTML,SVG}ElementWrapperFactory. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « Source/build/scripts/scripts.gni ('k') | Source/build/scripts/templates/ElementWrapperFactory.cpp.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698