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

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

Issue 371443003: Merge .in files for css/svg properties into a single file (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@cascade
Patch Set: up-to-date version of entire patch Created 6 years, 5 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
« no previous file with comments | « Source/build/scripts/scripts.gni ('k') | Source/build/scripts/templates/StyleBuilder.cpp.tmpl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_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
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 }
OLDNEW
« no previous file with comments | « Source/build/scripts/scripts.gni ('k') | Source/build/scripts/templates/StyleBuilder.cpp.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698