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

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

Issue 551003002: bindings: Removes unnecessary Event-related code. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Pushed V8EventTargetCustom.cpp back with modification. 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
« no previous file with comments | « Source/build/scripts/scripts.gni ('k') | Source/core/BUILD.gn » ('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',
14 'name_utilities.py', 13 'name_utilities.py',
15 'template_expander.py', 14 'template_expander.py',
16 'templates/macros.tmpl', 15 'templates/macros.tmpl',
17 ], 16 ],
18 'css_properties_files': [ 17 'css_properties_files': [
19 '<@(scripts_for_in_files)', 18 '<@(scripts_for_in_files)',
20 'css_properties.py', 19 'css_properties.py',
21 '../../core/css/CSSProperties.in', 20 '../../core/css/CSSProperties.in',
22 ], 21 ],
23 'make_event_factory_files': [ 22 'make_event_factory_files': [
(...skipping 28 matching lines...) Expand all
52 ['OS=="win"', { 51 ['OS=="win"', {
53 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe', 52 'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe',
54 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe', 53 'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe',
55 },{ 54 },{
56 'gperf_exe': 'gperf', 55 'gperf_exe': 'gperf',
57 'bison_exe': 'bison', 56 'bison_exe': 'bison',
58 }], 57 }],
59 ], 58 ],
60 }, 59 },
61 } 60 }
OLDNEW
« no previous file with comments | « Source/build/scripts/scripts.gni ('k') | Source/core/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698