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

Unified Diff: remoting/webapp/BUILD.gn

Issue 774353003: gn format // (the rest) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase net Created 6 years 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/resources/BUILD.gn ('k') | sandbox/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/BUILD.gn
diff --git a/remoting/webapp/BUILD.gn b/remoting/webapp/BUILD.gn
index 3e4754bfe5dfde63c11c88bd2c983beb3b12a268..9fd9c6ade90fedad89a7d9ad733730d895ce38ed 100644
--- a/remoting/webapp/BUILD.gn
+++ b/remoting/webapp/BUILD.gn
@@ -37,6 +37,7 @@ action("html") {
"error.js",
"event_handlers.js",
"plugin_settings.js",
+
# TODO(garykac) Split out UI client stuff from remoting.js.
"remoting.js",
"typecheck.js",
@@ -59,6 +60,7 @@ action("html") {
# Client JavaScript files.
remoting_webapp_js_client_files = [
"client_plugin.js",
+
# TODO(garykac) For client_screen:
# * Split out pin/access code stuff into separate file.
# * Move client logic into session_connector
@@ -73,13 +75,10 @@ action("html") {
]
# gnubby authentication JavaScript files.
- remoting_webapp_js_gnubby_auth_files = [
- "gnubby_auth_handler.js",
- ]
+ remoting_webapp_js_gnubby_auth_files = [ "gnubby_auth_handler.js" ]
+
# cast extension handler JavaScript files.
- remoting_webapp_js_cast_extension_files = [
- "cast_extension_handler.js",
- ]
+ remoting_webapp_js_cast_extension_files = [ "cast_extension_handler.js" ]
# Host JavaScript files.
# Includes both it2me and me2me files.
@@ -132,9 +131,7 @@ action("html") {
]
# Remoting WCS container JavaScript files.
- remoting_webapp_js_wcs_container_files = [
- "wcs_sandbox_container.js",
- ]
+ remoting_webapp_js_wcs_container_files = [ "wcs_sandbox_container.js" ]
# Browser test JavaScript files (uncomment if used below).
#remoting_webapp_js_browser_test_files = [
@@ -151,23 +148,20 @@ action("html") {
# Otherwise, Jscompile will complain.
remoting_webapp_js_core_files +
remoting_webapp_js_auth_client2host_files +
- remoting_webapp_js_auth_google_files +
- remoting_webapp_js_client_files +
+ remoting_webapp_js_auth_google_files + remoting_webapp_js_client_files +
remoting_webapp_js_gnubby_auth_files +
- remoting_webapp_js_cast_extension_files +
- remoting_webapp_js_host_files +
- remoting_webapp_js_logging_files +
- remoting_webapp_js_ui_files +
+ remoting_webapp_js_cast_extension_files + remoting_webapp_js_host_files +
+ remoting_webapp_js_logging_files + remoting_webapp_js_ui_files +
remoting_webapp_js_ui_host_control_files +
remoting_webapp_js_ui_host_display_files +
remoting_webapp_js_wcs_container_files
- # Uncomment this line to include browser test files in the web app
- # to expedite debugging or local development.
- #+ remoting_webapp_js_browser_test_files
- inputs = [ remoting_webapp_template_main ] +
- remoting_webapp_template_files +
- remoting_webapp_main_html_js_files
+ # Uncomment this line to include browser test files in the web app
+ # to expedite debugging or local development.
+ #+ remoting_webapp_js_browser_test_files
+
+ inputs = [ remoting_webapp_template_main ] + remoting_webapp_template_files +
+ remoting_webapp_main_html_js_files
outputs = [
"$root_gen_dir/main.html",
@@ -186,11 +180,12 @@ action("html") {
rebase_path(remoting_webapp_template_main, template_rel_dir),
]
args += [ "--template" ] +
- rebase_path(remoting_webapp_template_files, template_rel_dir)
+ rebase_path(remoting_webapp_template_files, template_rel_dir)
args += [ "--js" ] +
- rebase_path(remoting_webapp_main_html_js_files, template_rel_dir)
- args += [ "--dir-for-templates",
- rebase_path(template_rel_dir, root_build_dir) ]
+ rebase_path(remoting_webapp_main_html_js_files, template_rel_dir)
+ args += [
+ "--dir-for-templates",
+ rebase_path(template_rel_dir, root_build_dir),
+ ]
}
-
# TODO(GYP) wcs_sandbox.html
« no previous file with comments | « remoting/resources/BUILD.gn ('k') | sandbox/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698