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

Unified Diff: remoting/webapp/build_template.gni

Issue 1370283004: [Chromoting] Remote Assistance in Public Session. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@PublicSession
Patch Set: Rebase Created 5 years, 3 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/webapp/base/js/ui_mode.js ('k') | remoting/webapp/crd/html/public_session.css » ('j') | 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 7053cd60e8dad308f2d42057e22e1fae065accc0..3b8d9509f2ccb89951fc5f2f8caa3114315cec46 100644
--- a/remoting/webapp/build_template.gni
+++ b/remoting/webapp/build_template.gni
@@ -168,6 +168,17 @@ template("desktop_remoting_webapp") {
html_output = main_html_output
}
+ public_session_html = target_name + "_public_session_html"
+ public_session_html_output =
+ "$target_gen_dir/html/$target_name/public_session.html"
+
+ build_webapp_html(public_session_html) {
+ html_template_file = remoting_webapp_template_public_session
+ html_template_include_files = remoting_webapp_public_session_template_files
+ js_files = remoting_webapp_public_session_html_all_js_files
+ html_output = public_session_html_output
+ }
+
action(target_name) {
script = "//remoting/webapp/build-webapp.py"
@@ -181,6 +192,7 @@ template("desktop_remoting_webapp") {
message_window_html_output,
wcs_sandbox_html_output,
main_html_output,
+ public_session_html_output,
"$target_gen_dir/credits.html",
]
@@ -209,15 +221,14 @@ template("desktop_remoting_webapp") {
":$background_html",
":$message_window_html",
":$wcs_sandbox_html",
+ ":$public_session_html",
":$main_html",
"//remoting/resources",
"//remoting/webapp:credits",
]
if (enable_pnacl) {
- deps += [
- "//remoting/client/plugin:remoting_client_plugin_newlib(//build/toolchain/nacl:newlib_pnacl)",
- ]
+ deps += [ "//remoting/client/plugin:remoting_client_plugin_newlib(//build/toolchain/nacl:newlib_pnacl)" ]
}
# Create a file that contains a list of all the resource files needed
« no previous file with comments | « remoting/webapp/base/js/ui_mode.js ('k') | remoting/webapp/crd/html/public_session.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698