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

Unified Diff: remoting/webapp/build_template.gni

Issue 1830113004: Temporarily disable remoting_client_plugin_newlib on win in GN builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/build_template.gni
diff --git a/remoting/webapp/build_template.gni b/remoting/webapp/build_template.gni
index 48dc9c6d9e657512ff1f07cac725a54404f55882..3fcf0aa7b9cc7cec386fd7078b82b4f22ea3ede1 100644
--- a/remoting/webapp/build_template.gni
+++ b/remoting/webapp/build_template.gni
@@ -225,7 +225,8 @@ template("desktop_remoting_webapp") {
"$target_gen_dir/credits.html",
]
- if (enable_nacl) {
+ # TODO(crbug.com/584516) - fix OOM issues and re-enable on win.
+ if (enable_nacl && !is_win) {
pnacl_tc = "//build/toolchain/nacl:newlib_pnacl"
pexe_label = "//remoting/client/plugin:remoting_client_plugin_newlib"
pexe_dir = get_label_info("${pexe_label}($pnacl_tc)", "root_out_dir")
@@ -256,7 +257,8 @@ template("desktop_remoting_webapp") {
"//remoting/webapp:credits",
]
- if (enable_nacl) {
+ # TODO(crbug.com/584516) - fix OOM issues and re-enable on win.
+ if (enable_nacl && !is_win) {
deps += [ "${pexe_label}($pnacl_tc)" ]
if (is_debug) {
deps += [ "${pexe_label}_debug($pnacl_tc)" ]
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698