Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(487)

Side by Side Diff: sky/engine/build/scripts/scripts.gni

Issue 879743004: Remove the EventFactory machinery. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/engine/build/scripts/make_event_factory.py ('k') | sky/engine/build/scripts/scripts.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//sky/engine/config.gni") 5 import("//sky/engine/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 = "//sky/engine/build/scripts" 9 _scripts_dir = "//sky/engine/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", 20 "$_scripts_dir/name_macros.py",
21 "$_scripts_dir/name_utilities.py", 21 "$_scripts_dir/name_utilities.py",
22 "$_scripts_dir/template_expander.py", 22 "$_scripts_dir/template_expander.py",
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_event_factory_files = scripts_for_in_files + [ 29 make_event_factory_files =
30 "$_scripts_dir/make_event_factory.py", 30 scripts_for_in_files + [ "$_scripts_dir/make_event_factory.py" ]
31 "$_scripts_dir/templates/EventFactory.cpp.tmpl",
32 ]
33 31
34 make_names_files = scripts_for_in_files + [ 32 make_names_files = scripts_for_in_files + [
35 "$_scripts_dir/make_names.py", 33 "$_scripts_dir/make_names.py",
36 "$_scripts_dir/templates/MakeNames.cpp.tmpl", 34 "$_scripts_dir/templates/MakeNames.cpp.tmpl",
37 "$_scripts_dir/templates/MakeNames.h.tmpl", 35 "$_scripts_dir/templates/MakeNames.h.tmpl",
38 ] 36 ]
39 37
40 make_qualified_names_files = 38 make_qualified_names_files =
41 scripts_for_in_files + [ 39 scripts_for_in_files + [
42 "$_scripts_dir/make_qualified_names.py", 40 "$_scripts_dir/make_qualified_names.py",
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 ] 241 ]
244 242
245 args = [ 243 args = [
246 rebase_path(invoker.input_file, root_build_dir), 244 rebase_path(invoker.input_file, root_build_dir),
247 rebase_path(invoker.output_file, root_build_dir), 245 rebase_path(invoker.output_file, root_build_dir),
248 ] 246 ]
249 247
250 deps = make_core_generated_deps 248 deps = make_core_generated_deps
251 } 249 }
252 } 250 }
OLDNEW
« no previous file with comments | « sky/engine/build/scripts/make_event_factory.py ('k') | sky/engine/build/scripts/scripts.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698