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

Unified Diff: Source/bindings/generated_bindings.gyp

Issue 171373006: Rename compute_dependencies.py => compute_interfaces_info.py (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/bindings/scripts/compute_dependencies.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/generated_bindings.gyp
diff --git a/Source/bindings/generated_bindings.gyp b/Source/bindings/generated_bindings.gyp
index ab11178b9cbe76e76c3cdea3195cc162c9f9a8bd..0257164a2938d63fdf5b669888fc2036bdd00145 100644
--- a/Source/bindings/generated_bindings.gyp
+++ b/Source/bindings/generated_bindings.gyp
@@ -170,13 +170,13 @@
},
'targets': [{
- 'target_name': 'interface_dependencies',
+ 'target_name': 'interfaces_info',
'type': 'none',
'dependencies': [
'../core/core_generated.gyp:generated_testing_idls',
],
'actions': [{
- 'action_name': 'compute_interface_dependencies',
+ 'action_name': 'compute_interfaces_info',
'variables': {
# Write list of static IDL files to a file, so that the command line
# doesn't exceed OS length limits.
@@ -185,7 +185,7 @@
'idl_files_list': '<|(idl_files_list.tmp <@(static_idl_files))',
},
'inputs': [
- 'scripts/compute_dependencies.py',
+ 'scripts/compute_interfaces_info.py',
'<(idl_files_list)',
'<@(static_idl_files)',
'<@(generated_idl_files)',
@@ -198,7 +198,7 @@
],
'action': [
'python',
- 'scripts/compute_dependencies.py',
+ 'scripts/compute_interfaces_info.py',
'--idl-files-list',
'<(idl_files_list)',
'--interface-dependencies-file',
@@ -221,7 +221,7 @@
'--',
'<@(generated_idl_files)',
],
- 'message': 'Computing dependencies between IDL files, and generating global scope constructor IDLs files and list of Event interfaces',
+ 'message': 'Computing global information about IDL files, and generating global scope constructor IDLs files and list of Event interfaces',
}]
},
{
@@ -231,7 +231,7 @@
# https://code.google.com/p/gyp/wiki/InputFormatReference#Linking_Dependencies
'hard_dependency': 1,
'dependencies': [
- 'interface_dependencies',
+ 'interfaces_info',
'../core/core_generated.gyp:generated_testing_idls',
],
'sources': [
« no previous file with comments | « no previous file | Source/bindings/scripts/compute_dependencies.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698