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

Side by Side Diff: Source/bindings/core/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 | « no previous file | Source/bindings/modules/generated.gyp » ('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 core, used to generate bindings 5 # Generate IDL interfaces info for core, 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 21 matching lines...) Expand all
32 '<(core_static_idl_files_list)', 32 '<(core_static_idl_files_list)',
33 '<@(core_static_idl_files)', 33 '<@(core_static_idl_files)',
34 '<@(core_generated_idl_files)', 34 '<@(core_generated_idl_files)',
35 ], 35 ],
36 'outputs': [ 36 'outputs': [
37 '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle', 37 '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle',
38 ], 38 ],
39 'action': [ 39 'action': [
40 'python', 40 'python',
41 '<(bindings_scripts_dir)/compute_interfaces_info_individual.py', 41 '<(bindings_scripts_dir)/compute_interfaces_info_individual.py',
42 '--component-dir',
43 'core',
42 '--idl-files-list', 44 '--idl-files-list',
43 '<(core_static_idl_files_list)', 45 '<(core_static_idl_files_list)',
44 '--interfaces-info-file', 46 '--interfaces-info-file',
45 '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle', 47 '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle',
46 '--write-file-only-if-changed', 48 '--write-file-only-if-changed',
47 '<(write_file_only_if_changed)', 49 '<(write_file_only_if_changed)',
48 '--', 50 '--',
49 # Generated files must be passed at command line 51 # Generated files must be passed at command line
50 '<@(core_generated_idl_files)', 52 '<@(core_generated_idl_files)',
51 ], 53 ],
52 'message': 'Computing global information about individual IDL files', 54 'message': 'Computing global information about individual IDL files',
53 }] 55 }]
54 }, 56 },
55 ################################################################################ 57 ################################################################################
56 ], # targets 58 ], # targets
57 } 59 }
OLDNEW
« no previous file with comments | « no previous file | Source/bindings/modules/generated.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698