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

Unified Diff: remoting/client/plugin/BUILD.gn

Issue 1432603003: GN: Avoid nontrivial shell commands in gcc_toolchain tool("link") (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn set-but-unused nit Created 5 years, 1 month 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 | « build/toolchain/nacl_toolchain.gni ('k') | remoting/webapp/build_template.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/plugin/BUILD.gn
diff --git a/remoting/client/plugin/BUILD.gn b/remoting/client/plugin/BUILD.gn
index 9f3d8ceb5057e381d7082f976cfc75b2d6852439..01432fdb0982a10dafd915a330e8905c78a6bb8c 100644
--- a/remoting/client/plugin/BUILD.gn
+++ b/remoting/client/plugin/BUILD.gn
@@ -5,6 +5,7 @@
assert(is_nacl,
"These targets must only be built using the untrusted NaCl toolchains.")
+import("//build/config/features.gni")
import("//remoting/remoting_srcs.gni")
config("enable_linker_optimization") {
@@ -40,3 +41,17 @@ executable("remoting_client_plugin_newlib") {
include_dirs = [ "//ppapi/lib/gl/include" ]
}
+
+if (enable_pnacl && is_debug) {
+ copy("remoting_client_plugin_newlib_debug") {
+ public_deps = [
+ ":remoting_client_plugin_newlib",
+ ]
+ sources = [
+ "$root_out_dir/exe.unstripped/remoting_client_plugin_newlib.pexe",
+ ]
+ outputs = [
+ "$root_out_dir/remoting_client_plugin_newlib.pexe.debug",
+ ]
+ }
+}
« no previous file with comments | « build/toolchain/nacl_toolchain.gni ('k') | remoting/webapp/build_template.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698