| 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 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 make_qualified_names_files = scripts_for_in_files + [ | 41 make_qualified_names_files = scripts_for_in_files + [ |
| 42 "$_scripts_dir/make_qualified_names.py", | 42 "$_scripts_dir/make_qualified_names.py", |
| 43 "$_scripts_dir/templates/MakeQualifiedNames.cpp.tmpl", | 43 "$_scripts_dir/templates/MakeQualifiedNames.cpp.tmpl", |
| 44 "$_scripts_dir/templates/MakeQualifiedNames.h.tmpl", | 44 "$_scripts_dir/templates/MakeQualifiedNames.h.tmpl", |
| 45 ] | 45 ] |
| 46 | 46 |
| 47 make_element_factory_files = make_qualified_names_files + [ | 47 make_element_factory_files = make_qualified_names_files + [ |
| 48 "$_scripts_dir/make_element_factory.py", | 48 "$_scripts_dir/make_element_factory.py", |
| 49 "$_scripts_dir/templates/ElementFactory.cpp.tmpl", | 49 "$_scripts_dir/templates/ElementFactory.cpp.tmpl", |
| 50 "$_scripts_dir/templates/ElementFactory.h.tmpl", | 50 "$_scripts_dir/templates/ElementFactory.h.tmpl", |
| 51 "$_scripts_dir/templates/ElementWrapperFactory.cpp.tmpl", | |
| 52 "$_scripts_dir/templates/ElementWrapperFactory.h.tmpl", | |
| 53 ] | 51 ] |
| 54 | 52 |
| 55 make_element_type_helpers_files = make_qualified_names_files + [ | 53 make_element_type_helpers_files = make_qualified_names_files + [ |
| 56 "$_scripts_dir/make_element_type_helpers.py", | 54 "$_scripts_dir/make_element_type_helpers.py", |
| 57 "$_scripts_dir/templates/ElementTypeHelpers.h.tmpl", | 55 "$_scripts_dir/templates/ElementTypeHelpers.h.tmpl", |
| 58 ] | 56 ] |
| 59 | 57 |
| 60 # The executables are relative to the build directory. Don't rebase it because | 58 # The executables are relative to the build directory. Don't rebase it because |
| 61 # on Posix we want to run the system one on the path. | 59 # on Posix we want to run the system one on the path. |
| 62 if (is_win) { | 60 if (is_win) { |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 outputs = [ invoker.output_file ] | 184 outputs = [ invoker.output_file ] |
| 187 | 185 |
| 188 args = [ | 186 args = [ |
| 189 rebase_path(invoker.input_file, root_build_dir), | 187 rebase_path(invoker.input_file, root_build_dir), |
| 190 rebase_path(invoker.output_file, root_build_dir), | 188 rebase_path(invoker.output_file, root_build_dir), |
| 191 ] | 189 ] |
| 192 | 190 |
| 193 deps = make_core_generated_deps | 191 deps = make_core_generated_deps |
| 194 } | 192 } |
| 195 } | 193 } |
| 196 | |
| OLD | NEW |