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

Unified Diff: mojo/public/html/BUILD.gn

Issue 652183003: [Mojo] Add HTML bindings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix up paths Created 6 years, 2 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 | « mojo/public/BUILD.gn ('k') | mojo/public/html/convert_amd_modules_to_html.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/html/BUILD.gn
diff --git a/mojo/public/html/BUILD.gn b/mojo/public/html/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..a580437579b72481de82da707f359bc37d47eaf8
--- /dev/null
+++ b/mojo/public/html/BUILD.gn
@@ -0,0 +1,25 @@
+# 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.
+
+action_foreach("html") {
+ script = "convert_amd_modules_to_html.py"
+ sources = [
+ "//mojo/public/js/bindings/buffer.js",
+ "//mojo/public/js/bindings/codec.js",
+ "//mojo/public/js/bindings/connection.js",
+ "//mojo/public/js/bindings/connector.js",
+ "//mojo/public/js/bindings/router.js",
+ "//mojo/public/js/bindings/unicode.js",
+ "//mojo/public/js/bindings/validator.js",
+ ]
+ outputs = [
+ "$target_gen_dir/{{source_name_part}}.html",
+ ]
+ args = [
+ "--input",
+ "{{source}}",
+ "--output",
+ rebase_path(target_gen_dir, root_build_dir) + "/{{source_name_part}}.html"
+ ]
+}
« no previous file with comments | « mojo/public/BUILD.gn ('k') | mojo/public/html/convert_amd_modules_to_html.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698