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

Unified Diff: remoting/tools/javascript_key_tester/BUILD.gn

Issue 1305863002: GN: Enable PNaCl plugin compilation for the key_tester app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 | « remoting/BUILD.gn ('k') | remoting/tools/javascript_key_tester/pnacl/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/tools/javascript_key_tester/BUILD.gn
diff --git a/remoting/tools/javascript_key_tester/BUILD.gn b/remoting/tools/javascript_key_tester/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..bd9195304e1ad80c29913844c56d0696662bb3f3
--- /dev/null
+++ b/remoting/tools/javascript_key_tester/BUILD.gn
@@ -0,0 +1,48 @@
+# Copyright 2015 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("//build/config/features.gni")
+
+if (enable_pnacl) {
+ group("javascript_key_tester") {
+ deps = [
+ ":javascript_key_tester_copies",
+ ]
+ }
+
+ copy("javascript_key_tester_copies") {
+ pexe_dir = get_label_info(
+ "pnacl:remoting_key_tester_newlib(//native_client/build/toolchain/nacl:newlib_pnacl)",
+ "root_out_dir")
+
+ sources = [
+ "$pexe_dir/remoting_key_tester_newlib.pexe",
+ "background.js",
+ "chord_tracker.js",
+ "event_listeners.js",
+ "icon_128.png",
+ "main.css",
+ "main.html",
+ "main.js",
+ "manifest.json",
+ "pnacl/remoting_key_tester.nmf",
+ ]
+
+ outputs = [
+ "$target_out_dir/remoting/key_tester/{{source_file_part}}",
+ ]
+
+ deps = [
+ ":javascript_key_tester_jscompile",
+ "pnacl:remoting_key_tester_newlib(//native_client/build/toolchain/nacl:newlib_pnacl)",
+ ]
+ }
+
+ group("javascript_key_tester_jscompile") {
+ # TODO(GYP): crbug.com/471926 add support for run_jscompile=true.
+ run_jscompile = false
+ if (run_jscompile) {
+ }
+ }
+}
« no previous file with comments | « remoting/BUILD.gn ('k') | remoting/tools/javascript_key_tester/pnacl/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698