| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'bindings_scripts_dir': '.', | 7 'bindings_scripts_dir': '.', |
| 8 'bindings_scripts_output_dir': '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/sc
ripts', | 8 'bindings_scripts_output_dir': '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/sc
ripts', |
| 9 'jinja_module_files': [ | 9 'jinja_module_files': [ |
| 10 # jinja2/__init__.py contains version string, so sufficient for package | 10 # jinja2/__init__.py contains version string, so sufficient for package |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 'idl_compiler.py', | 27 'idl_compiler.py', |
| 28 # Blink IDL front end (ex-lexer/parser) | 28 # Blink IDL front end (ex-lexer/parser) |
| 29 'idl_definitions.py', | 29 'idl_definitions.py', |
| 30 'idl_reader.py', | 30 'idl_reader.py', |
| 31 'idl_types.py', | 31 'idl_types.py', |
| 32 'idl_validator.py', | 32 'idl_validator.py', |
| 33 'interface_dependency_resolver.py', | 33 'interface_dependency_resolver.py', |
| 34 # V8 code generator | 34 # V8 code generator |
| 35 'code_generator_v8.py', | 35 'code_generator_v8.py', |
| 36 'v8_attributes.py', | 36 'v8_attributes.py', |
| 37 'v8_blink_in_js.py', |
| 37 'v8_callback_interface.py', | 38 'v8_callback_interface.py', |
| 38 'v8_globals.py', | 39 'v8_globals.py', |
| 39 'v8_interface.py', | 40 'v8_interface.py', |
| 40 'v8_methods.py', | 41 'v8_methods.py', |
| 41 'v8_types.py', | 42 'v8_types.py', |
| 42 'v8_utilities.py', | 43 'v8_utilities.py', |
| 43 ], | 44 ], |
| 44 | 45 |
| 45 'conditions': [ | 46 'conditions': [ |
| 46 # These scripts can skip writing generated files if they are identical | 47 # These scripts can skip writing generated files if they are identical |
| 47 # to the already existing files, which avoids further build steps, like | 48 # to the already existing files, which avoids further build steps, like |
| 48 # recompilation. However, a dependency (earlier build step) having a | 49 # recompilation. However, a dependency (earlier build step) having a |
| 49 # newer timestamp than an output (later build step) confuses some build | 50 # newer timestamp than an output (later build step) confuses some build |
| 50 # systems, so only use this on ninja, which explicitly supports this use | 51 # systems, so only use this on ninja, which explicitly supports this use |
| 51 # case (gyp turns all actions into ninja restat rules). | 52 # case (gyp turns all actions into ninja restat rules). |
| 52 ['"<(GENERATOR)"=="ninja"', { | 53 ['"<(GENERATOR)"=="ninja"', { |
| 53 'write_file_only_if_changed': '1', | 54 'write_file_only_if_changed': '1', |
| 54 }, { | 55 }, { |
| 55 'write_file_only_if_changed': '0', | 56 'write_file_only_if_changed': '0', |
| 56 }], | 57 }], |
| 57 ], | 58 ], |
| 58 }, | 59 }, |
| 59 } | 60 } |
| OLD | NEW |