| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 '<@(core_global_constructors_generated_idl_files)', | 54 '<@(core_global_constructors_generated_idl_files)', |
| 55 '<@(core_global_constructors_generated_header_files)', | 55 '<@(core_global_constructors_generated_header_files)', |
| 56 ], | 56 ], |
| 57 }, | 57 }, |
| 58 'includes': ['../../bindings/scripts/global_constructors.gypi'], | 58 'includes': ['../../bindings/scripts/global_constructors.gypi'], |
| 59 }, | 59 }, |
| 60 ################################################################################ | 60 ################################################################################ |
| 61 { | 61 { |
| 62 'target_name': 'interfaces_info_individual_core', | 62 'target_name': 'interfaces_info_individual_core', |
| 63 'dependencies': [ | 63 'dependencies': [ |
| 64 '<(bindings_scripts_dir)/scripts.gyp:cached_lex_yacc_tables', |
| 64 '../../core/core_generated.gyp:generated_testing_idls', | 65 '../../core/core_generated.gyp:generated_testing_idls', |
| 65 'core_global_constructors_idls', | 66 'core_global_constructors_idls', |
| 66 ], | 67 ], |
| 67 'variables': { | 68 'variables': { |
| 69 'cache_directory': '<(bindings_core_output_dir)/../scripts', |
| 68 'static_idl_files': '<(core_static_idl_files)', | 70 'static_idl_files': '<(core_static_idl_files)', |
| 69 'generated_idl_files': '<(core_generated_idl_files)', | 71 'generated_idl_files': '<(core_generated_idl_files)', |
| 70 'output_file': | 72 'output_file': |
| 71 '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle', | 73 '<(bindings_core_output_dir)/InterfacesInfoCoreIndividual.pickle', |
| 72 }, | 74 }, |
| 73 'includes': ['../../bindings/scripts/interfaces_info_individual.gypi'], | 75 'includes': ['../../bindings/scripts/interfaces_info_individual.gypi'], |
| 74 }, | 76 }, |
| 75 ################################################################################ | 77 ################################################################################ |
| 76 ], # targets | 78 ], # targets |
| 77 } | 79 } |
| OLD | NEW |