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

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

Issue 361693004: Remove make-css-file-arrays.pl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | 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 29 matching lines...) Expand all
40 'templates/ElementWrapperFactory.cpp.tmpl', 40 'templates/ElementWrapperFactory.cpp.tmpl',
41 'templates/ElementWrapperFactory.h.tmpl', 41 'templates/ElementWrapperFactory.h.tmpl',
42 ], 42 ],
43 'make_element_type_helpers_files': [ 43 'make_element_type_helpers_files': [
44 '<@(make_qualified_names_files)', 44 '<@(make_qualified_names_files)',
45 'make_element_type_helpers.py', 45 'make_element_type_helpers.py',
46 'templates/ElementTypeHelpers.h.tmpl', 46 'templates/ElementTypeHelpers.h.tmpl',
47 ], 47 ],
48 'conditions': [ 48 'conditions': [
49 ['OS=="win"', { 49 ['OS=="win"', {
50 # Using native perl rather than cygwin perl cuts execution time
51 # of idl preprocessing rules by a bit more than 50%.
52 'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe',
53 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', 50 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe',
54 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', 51 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe',
55 },{ 52 },{
56 'perl_exe': 'perl',
57 'gperf_exe': 'gperf', 53 'gperf_exe': 'gperf',
58 'bison_exe': 'bison', 54 'bison_exe': 'bison',
59 }], 55 }],
60 ], 56 ],
61 }, 57 },
62 } 58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698