Chromium Code Reviews| OLD | NEW | 
|---|---|
| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 52 'includes': ['../../bindings/scripts/global_constructors.gypi'], | 52 'includes': ['../../bindings/scripts/global_constructors.gypi'], | 
| 53 }, | 53 }, | 
| 54 ################################################################################ | 54 ################################################################################ | 
| 55 { | 55 { | 
| 56 'target_name': 'interfaces_info_individual_core', | 56 'target_name': 'interfaces_info_individual_core', | 
| 57 'dependencies': [ | 57 'dependencies': [ | 
| 58 '../../core/core_generated.gyp:generated_testing_idls', | 58 '../../core/core_generated.gyp:generated_testing_idls', | 
| 59 'core_global_constructors_idls', | 59 'core_global_constructors_idls', | 
| 60 ], | 60 ], | 
| 61 'variables': { | 61 'variables': { | 
| 62 'cache_directory': '<(bindings_core_output_dir)/../scripts', | |
| 
 
bashi
2014/10/21 05:46:55
'cache_directory' contains 'lextab.py', which is r
 
Jens Widell
2014/10/21 10:59:39
The gyp target that generates lextab.py is 'cache_
 
 | |
| 62 'static_idl_files': '<(core_static_idl_files)', | 63 'static_idl_files': '<(core_static_idl_files)', | 
| 63 'generated_idl_files': '<(core_generated_idl_files)', | 64 'generated_idl_files': '<(core_generated_idl_files)', | 
| 64 'output_file': | 65 'output_file': | 
| 65 '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle', | 66 '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle', | 
| 66 }, | 67 }, | 
| 67 'includes': ['../../bindings/scripts/interfaces_info_individual.gypi'], | 68 'includes': ['../../bindings/scripts/interfaces_info_individual.gypi'], | 
| 68 }, | 69 }, | 
| 69 ################################################################################ | 70 ################################################################################ | 
| 70 ], # targets | 71 ], # targets | 
| 71 } | 72 } | 
| OLD | NEW |