| 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("//build/toolchain/toolchain.gni") | 5 import("//build/toolchain/toolchain.gni") |
| 6 import("//third_party/WebKit/Source/config.gni") | 6 import("//third_party/WebKit/Source/config.gni") |
| 7 | 7 |
| 8 # All paths in this file should be absolute so targets in any directory can use | 8 # All paths in this file should be absolute so targets in any directory can use |
| 9 # them without worrying about the current directory. | 9 # them without worrying about the current directory. |
| 10 _scripts_dir = "//third_party/WebKit/Source/build/scripts" | 10 _scripts_dir = "//third_party/WebKit/Source/build/scripts" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "$_scripts_dir/templates/macros.tmpl", | 23 "$_scripts_dir/templates/macros.tmpl", |
| 24 ] | 24 ] |
| 25 | 25 |
| 26 css_properties_files = | 26 css_properties_files = |
| 27 scripts_for_in_files + [ "$_scripts_dir/css_properties.py" ] | 27 scripts_for_in_files + [ "$_scripts_dir/css_properties.py" ] |
| 28 | 28 |
| 29 make_css_property_api_files = [ | 29 make_css_property_api_files = [ |
| 30 "$_scripts_dir/templates/CSSPropertyAPI.h.tmpl", | 30 "$_scripts_dir/templates/CSSPropertyAPI.h.tmpl", |
| 31 "$_scripts_dir/templates/CSSPropertyAPIFiles.h.tmpl", | 31 "$_scripts_dir/templates/CSSPropertyAPIFiles.h.tmpl", |
| 32 "$_scripts_dir/templates/CSSPropertyDescriptor.cpp.tmpl", | 32 "$_scripts_dir/templates/CSSPropertyDescriptor.cpp.tmpl", |
| 33 "$_scripts_dir/templates/CSSPropertyDescriptor.h.tmpl", |
| 33 ] | 34 ] |
| 34 | 35 |
| 35 make_event_factory_files = scripts_for_in_files + [ | 36 make_event_factory_files = scripts_for_in_files + [ |
| 36 "$_scripts_dir/make_event_factory.py", | 37 "$_scripts_dir/make_event_factory.py", |
| 37 "$_scripts_dir/templates/EventFactory.cpp.tmpl", | 38 "$_scripts_dir/templates/EventFactory.cpp.tmpl", |
| 38 ] | 39 ] |
| 39 | 40 |
| 40 make_names_files = scripts_for_in_files + [ | 41 make_names_files = scripts_for_in_files + [ |
| 41 "$_scripts_dir/make_names.py", | 42 "$_scripts_dir/make_names.py", |
| 42 "$_scripts_dir/templates/MakeNames.cpp.tmpl", | 43 "$_scripts_dir/templates/MakeNames.cpp.tmpl", |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 other_inputs = make_event_factory_files | 216 other_inputs = make_event_factory_files |
| 216 forward_variables_from(invoker, | 217 forward_variables_from(invoker, |
| 217 [ | 218 [ |
| 218 "deps", | 219 "deps", |
| 219 "in_files", | 220 "in_files", |
| 220 "outputs", | 221 "outputs", |
| 221 "visibility", | 222 "visibility", |
| 222 ]) | 223 ]) |
| 223 } | 224 } |
| 224 } | 225 } |
| OLD | NEW |