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

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

Issue 1978703002: Factor and simplify generation of the lookup trie used for HTMLLookupTrie. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove newlines Created 4 years, 7 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
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',
11 'in_generator.py', 11 'in_generator.py',
12 'license.py', 12 'license.py',
13 'name_utilities.py', 13 'name_utilities.py',
14 'template_expander.py', 14 'template_expander.py',
15 'trie_builder.py',
15 'templates/macros.tmpl', 16 'templates/macros.tmpl',
16 ], 17 ],
17 'css_properties_files': [ 18 'css_properties_files': [
18 '<@(scripts_for_in_files)', 19 '<@(scripts_for_in_files)',
19 'css_properties.py', 20 'css_properties.py',
20 '../../core/css/CSSProperties.in', 21 '../../core/css/CSSProperties.in',
21 ], 22 ],
22 'make_event_factory_files': [ 23 'make_event_factory_files': [
23 '<@(scripts_for_in_files)', 24 '<@(scripts_for_in_files)',
24 'make_event_factory.py', 25 'make_event_factory.py',
(...skipping 15 matching lines...) Expand all
40 '<@(make_qualified_names_files)', 41 '<@(make_qualified_names_files)',
41 'make_element_factory.py', 42 'make_element_factory.py',
42 'templates/ElementFactory.cpp.tmpl', 43 'templates/ElementFactory.cpp.tmpl',
43 'templates/ElementFactory.h.tmpl', 44 'templates/ElementFactory.h.tmpl',
44 ], 45 ],
45 'make_element_type_helpers_files': [ 46 'make_element_type_helpers_files': [
46 '<@(make_qualified_names_files)', 47 '<@(make_qualified_names_files)',
47 'make_element_type_helpers.py', 48 'make_element_type_helpers.py',
48 'templates/ElementTypeHelpers.h.tmpl', 49 'templates/ElementTypeHelpers.h.tmpl',
49 ], 50 ],
51 'make_trie_helpers_files': [
52 '<@(scripts_for_in_files)',
53 'trie_builder.py',
54 ],
50 'conditions': [ 55 'conditions': [
51 ['OS=="win"', { 56 ['OS=="win"', {
52 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', 57 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe',
53 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', 58 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe',
54 },{ 59 },{
55 'gperf_exe': 'gperf', 60 'gperf_exe': 'gperf',
56 'bison_exe': 'bison', 61 'bison_exe': 'bison',
57 }], 62 }],
58 ], 63 ],
59 }, 64 },
60 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698