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

Side by Side Diff: Source/bindings/modules/generated.gyp

Issue 306543008: Qualify include paths in generated bindings (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: r-b-t and tests Created 6 years, 7 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/bindings/core/generated.gyp ('k') | Source/bindings/scripts/code_generator_v8.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # Generate IDL interfaces info for modules, used to generate bindings 5 # Generate IDL interfaces info for modules, used to generate bindings
6 # 6 #
7 # Design doc: http://www.chromium.org/developers/design-documents/idl-build 7 # Design doc: http://www.chromium.org/developers/design-documents/idl-build
8 8
9 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 23 matching lines...) Expand all
34 '<@(modules_static_idl_files)', 34 '<@(modules_static_idl_files)',
35 # No generated files currently, will add with constructors 35 # No generated files currently, will add with constructors
36 # '<@(modules_generated_idl_files)', 36 # '<@(modules_generated_idl_files)',
37 ], 37 ],
38 'outputs': [ 38 'outputs': [
39 '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle', 39 '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle',
40 ], 40 ],
41 'action': [ 41 'action': [
42 'python', 42 'python',
43 '<(bindings_scripts_dir)/compute_interfaces_info_individual.py', 43 '<(bindings_scripts_dir)/compute_interfaces_info_individual.py',
44 '--component-dir',
45 'modules',
44 '--idl-files-list', 46 '--idl-files-list',
45 '<(modules_static_idl_files_list)', 47 '<(modules_static_idl_files_list)',
46 '--interfaces-info-file', 48 '--interfaces-info-file',
47 '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle', 49 '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle',
48 '--write-file-only-if-changed', 50 '--write-file-only-if-changed',
49 '<(write_file_only_if_changed)', 51 '<(write_file_only_if_changed)',
50 # No generated files currently, will add with constructors 52 # No generated files currently, will add with constructors
51 # '--', 53 # '--',
52 # Generated files must be passed at command line 54 # Generated files must be passed at command line
53 # '<@(modules_generated_idl_files)', 55 # '<@(modules_generated_idl_files)',
(...skipping 28 matching lines...) Expand all
82 '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle', 84 '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle',
83 '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle', 85 '<(bindings_modules_output_dir)/InterfacesInfoModulesIndividual.pickle',
84 '<(bindings_modules_output_dir)/InterfacesInfoModules.pickle', 86 '<(bindings_modules_output_dir)/InterfacesInfoModules.pickle',
85 ], 87 ],
86 'message': 'Computing overall global information about IDL files', 88 'message': 'Computing overall global information about IDL files',
87 }] 89 }]
88 }, 90 },
89 ################################################################################ 91 ################################################################################
90 ], # targets 92 ], # targets
91 } 93 }
OLDNEW
« no previous file with comments | « Source/bindings/core/generated.gyp ('k') | Source/bindings/scripts/code_generator_v8.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698