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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/bindings/scripts/BUILD.gn
diff --git a/sky/engine/bindings/scripts/BUILD.gn b/sky/engine/bindings/scripts/BUILD.gn
deleted file mode 100644
index 23c0f56e3d8d8ed822185e0bf8e24c96d5fca93a..0000000000000000000000000000000000000000
--- a/sky/engine/bindings/scripts/BUILD.gn
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import("//sky/engine/bindings/bindings.gni")
-import("//sky/engine/bindings/scripts/scripts.gni")
-import("//sky/engine/bindings/templates/templates.gni")
-
-visibility = [ "//sky/*" ]
-
-# This separate pre-caching step is required to use lex/parse table
-# caching in PLY, since PLY itself does not check if the cache is
-# valid, and thus may end up using a stale cache if this step hasn't
-# been run to update it.
-#
-# This action's dependencies *is* the cache validation.
-#
-# GYP version: scripts.gyp:cached_lex_yacc_tables
-action("cached_lex_yacc_tables") {
- script = "blink_idl_parser.py"
-
- inputs = idl_lexer_parser_files
- outputs = [
- "$bindings_scripts_output_dir/lextab.py",
- "$bindings_scripts_output_dir/parsetab.pickle",
- ]
-
- args = [ rebase_path(bindings_scripts_output_dir, root_build_dir) ]
-}
-
-# A separate pre-caching step is *required* to use bytecode caching in
-# Jinja (which improves speed significantly), as the bytecode cache is
-# not concurrency-safe on write; details in code_generator_v8.py.
-#
-# GYP version: scripts.gyp:cached_jinja_templates
-action("cached_jinja_templates") {
- script = "code_generator_v8.py"
-
- inputs = jinja_module_files + [ "code_generator_v8.py" ] +
- code_generator_template_files
-
- # Dummy file to track dependency.
- stamp_file = "$bindings_scripts_output_dir/cached_jinja_templates.stamp"
- outputs = [
- stamp_file,
- ]
-
- args = [
- rebase_path(bindings_scripts_output_dir, root_build_dir),
- rebase_path(stamp_file, root_build_dir),
- ]
-}
« 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