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

Side by Side Diff: sky/engine/bindings/scripts/BUILD.gn

Issue 922053002: Remove unused V8 integration code in Sky (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/bindings/idl.gni ('k') | sky/engine/bindings/scripts/__init__.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//sky/engine/bindings/bindings.gni")
6 import("//sky/engine/bindings/scripts/scripts.gni")
7 import("//sky/engine/bindings/templates/templates.gni")
8
9 visibility = [ "//sky/*" ]
10
11 # This separate pre-caching step is required to use lex/parse table
12 # caching in PLY, since PLY itself does not check if the cache is
13 # valid, and thus may end up using a stale cache if this step hasn't
14 # been run to update it.
15 #
16 # This action's dependencies *is* the cache validation.
17 #
18 # GYP version: scripts.gyp:cached_lex_yacc_tables
19 action("cached_lex_yacc_tables") {
20 script = "blink_idl_parser.py"
21
22 inputs = idl_lexer_parser_files
23 outputs = [
24 "$bindings_scripts_output_dir/lextab.py",
25 "$bindings_scripts_output_dir/parsetab.pickle",
26 ]
27
28 args = [ rebase_path(bindings_scripts_output_dir, root_build_dir) ]
29 }
30
31 # A separate pre-caching step is *required* to use bytecode caching in
32 # Jinja (which improves speed significantly), as the bytecode cache is
33 # not concurrency-safe on write; details in code_generator_v8.py.
34 #
35 # GYP version: scripts.gyp:cached_jinja_templates
36 action("cached_jinja_templates") {
37 script = "code_generator_v8.py"
38
39 inputs = jinja_module_files + [ "code_generator_v8.py" ] +
40 code_generator_template_files
41
42 # Dummy file to track dependency.
43 stamp_file = "$bindings_scripts_output_dir/cached_jinja_templates.stamp"
44 outputs = [
45 stamp_file,
46 ]
47
48 args = [
49 rebase_path(bindings_scripts_output_dir, root_build_dir),
50 rebase_path(stamp_file, root_build_dir),
51 ]
52 }
OLDNEW
« no previous file with comments | « sky/engine/bindings/idl.gni ('k') | sky/engine/bindings/scripts/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698