| 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 import("//third_party/WebKit/Source/config.gni") | 5 import("//third_party/WebKit/Source/config.gni") |
| 6 | 6 |
| 7 # All paths in this file should be absolute so targets in any directory can use | 7 # All paths in this file should be absolute so targets in any directory can use |
| 8 # them without worrying about the current directory. | 8 # them without worrying about the current directory. |
| 9 _scripts_dir = "//third_party/WebKit/Source/build/scripts" | 9 _scripts_dir = "//third_party/WebKit/Source/build/scripts" |
| 10 | 10 |
| 11 scripts_for_in_files = [ | 11 scripts_for_in_files = [ |
| 12 # jinja2/__init__.py contains version string, so sufficient as | 12 # jinja2/__init__.py contains version string, so sufficient as |
| 13 # dependency for whole jinja2 package | 13 # dependency for whole jinja2 package |
| 14 "//third_party/jinja2/__init__.py", | 14 "//third_party/jinja2/__init__.py", |
| 15 "//third_party/markupsafe/__init__.py", # jinja2 dep | 15 "//third_party/markupsafe/__init__.py", # jinja2 dep |
| 16 "$_scripts_dir/hasher.py", | 16 "$_scripts_dir/hasher.py", |
| 17 "$_scripts_dir/in_file.py", | 17 "$_scripts_dir/in_file.py", |
| 18 "$_scripts_dir/in_generator.py", | 18 "$_scripts_dir/in_generator.py", |
| 19 "$_scripts_dir/license.py", | 19 "$_scripts_dir/license.py", |
| 20 "$_scripts_dir/name_macros.py", | |
| 21 "$_scripts_dir/name_utilities.py", | 20 "$_scripts_dir/name_utilities.py", |
| 22 "$_scripts_dir/template_expander.py", | 21 "$_scripts_dir/template_expander.py", |
| 23 "$_scripts_dir/templates/macros.tmpl", | 22 "$_scripts_dir/templates/macros.tmpl", |
| 24 ] | 23 ] |
| 25 | 24 |
| 26 css_properties_files = scripts_for_in_files + [ | 25 css_properties_files = scripts_for_in_files + [ |
| 27 "$_scripts_dir/css_properties.py", | 26 "$_scripts_dir/css_properties.py", |
| 28 ] | 27 ] |
| 29 | 28 |
| 30 make_event_factory_files = scripts_for_in_files + [ | 29 make_event_factory_files = scripts_for_in_files + [ |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 outputs = [ invoker.output_file ] | 183 outputs = [ invoker.output_file ] |
| 185 | 184 |
| 186 args = [ | 185 args = [ |
| 187 rebase_path(invoker.input_file, root_build_dir), | 186 rebase_path(invoker.input_file, root_build_dir), |
| 188 rebase_path(invoker.output_file, root_build_dir), | 187 rebase_path(invoker.output_file, root_build_dir), |
| 189 ] | 188 ] |
| 190 | 189 |
| 191 deps = make_core_generated_deps | 190 deps = make_core_generated_deps |
| 192 } | 191 } |
| 193 } | 192 } |
| OLD | NEW |