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

Side by Side Diff: Source/bindings/derived_sources.gyp

Issue 26980003: Make code slightly less complicated. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 'actions': [{ 138 'actions': [{
139 'action_name': 'compute_interface_dependencies', 139 'action_name': 'compute_interface_dependencies',
140 'variables': { 140 'variables': {
141 # Write sources into a file, so that the action command line won't 141 # Write sources into a file, so that the action command line won't
142 # exceed OS limits. 142 # exceed OS limits.
143 'idl_files_list': '<|(idl_files_list.tmp <@(idl_files))', 143 'idl_files_list': '<|(idl_files_list.tmp <@(idl_files))',
144 }, 144 },
145 'inputs': [ 145 'inputs': [
146 'scripts/compute_dependencies.py', 146 'scripts/compute_dependencies.py',
147 '<(idl_files_list)', 147 '<(idl_files_list)',
148 '<!@(cat <(idl_files_list))', 148 '<@(idl_files)',
149 ], 149 ],
150 'outputs': [ 150 'outputs': [
151 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt', 151 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt',
152 '<@(generated_global_constructors_idl_files)', 152 '<@(generated_global_constructors_idl_files)',
153 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', 153 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in',
154 ], 154 ],
155 'msvs_cygwin_shell': 0, 155 'msvs_cygwin_shell': 0,
156 'action': [ 156 'action': [
157 'python', 157 'python',
158 'scripts/compute_dependencies.py', 158 'scripts/compute_dependencies.py',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 '../build/scripts/action_derivedsourcesallinone.py', 278 '../build/scripts/action_derivedsourcesallinone.py',
279 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt', 279 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt',
280 '--', 280 '--',
281 '<@(derived_sources_aggregate_files)', 281 '<@(derived_sources_aggregate_files)',
282 ], 282 ],
283 'message': 'Generating bindings derived sources', 283 'message': 'Generating bindings derived sources',
284 }], 284 }],
285 }, 285 },
286 ], 286 ],
287 } 287 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698