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

Side by Side Diff: remoting/webapp/build_template.gni

Issue 1464873002: Run gn --format over all .gn files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # Keep in sync with 'remoting_webapp' target in remoting/remoting_client.gypi. 5 # Keep in sync with 'remoting_webapp' target in remoting/remoting_client.gypi.
6 6
7 import("//build/config/chrome_build.gni") 7 import("//build/config/chrome_build.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/util/version.gni") 9 import("//build/util/version.gni")
10 import("//remoting/remoting_locales.gni") 10 import("//remoting/remoting_locales.gni")
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 inputs = [ rebase_path("crd/manifest.json.jinja2", root_build_dir) ] + 210 inputs = [ rebase_path("crd/manifest.json.jinja2", root_build_dir) ] +
211 remoting_version_files + 211 remoting_version_files +
212 rebase_path(remoting_webapp_crd_files, root_build_dir) + 212 rebase_path(remoting_webapp_crd_files, root_build_dir) +
213 extra_files + dr_generated_html_files 213 extra_files + dr_generated_html_files
214 214
215 outputs = [ 215 outputs = [
216 zip_path, 216 zip_path,
217 ] 217 ]
218 218
219 deps = [ 219 deps = [
220 ":$background_html",
220 ":$locales_listfile", 221 ":$locales_listfile",
221 ":$background_html", 222 ":$main_html",
222 ":$message_window_html", 223 ":$message_window_html",
224 ":$public_session_html",
223 ":$wcs_sandbox_html", 225 ":$wcs_sandbox_html",
224 ":$public_session_html",
225 ":$main_html",
226 "//remoting/resources", 226 "//remoting/resources",
227 "//remoting/webapp:credits", 227 "//remoting/webapp:credits",
228 ] 228 ]
229 229
230 if (enable_pnacl) { 230 if (enable_pnacl) {
231 deps += [ "${pexe_label}($pnacl_tc)" ] 231 deps += [ "${pexe_label}($pnacl_tc)" ]
232 if (is_debug) { 232 if (is_debug) {
233 deps += [ "${pexe_label}_debug($pnacl_tc)" ] 233 deps += [ "${pexe_label}_debug($pnacl_tc)" ]
234 } 234 }
235 } 235 }
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 ar_shared_resource_files + ar_all_js_files + ar_generated_html_files 504 ar_shared_resource_files + ar_all_js_files + ar_generated_html_files
505 505
506 inputs = [ rebase_path(ar_manifest, root_build_dir) ] + 506 inputs = [ rebase_path(ar_manifest, root_build_dir) ] +
507 remoting_version_files + ar_webapp_files 507 remoting_version_files + ar_webapp_files
508 508
509 outputs = [ 509 outputs = [
510 zip_path, 510 zip_path,
511 ] 511 ]
512 512
513 deps = [ 513 deps = [
514 ":$locales_listfile",
515 ":$background_html", 514 ":$background_html",
516 ":$feedback_consent_html", 515 ":$feedback_consent_html",
517 ":$loading_window_html", 516 ":$loading_window_html",
517 ":$locales_listfile",
518 ":$main_html",
518 ":$message_window_html", 519 ":$message_window_html",
519 ":$wcs_sandbox_html", 520 ":$wcs_sandbox_html",
520 ":$main_html",
521 "//remoting/resources", 521 "//remoting/resources",
522 "//remoting/webapp:credits", 522 "//remoting/webapp:credits",
523 ] 523 ]
524 524
525 # Create a file that contains a list of all the resource files needed 525 # Create a file that contains a list of all the resource files needed
526 # to build the webapp. This is needed to avoid problems on platforms that 526 # to build the webapp. This is needed to avoid problems on platforms that
527 # limit the size of a command line. 527 # limit the size of a command line.
528 file_list = "$target_gen_dir/${target_name}_files.txt" 528 file_list = "$target_gen_dir/${target_name}_files.txt"
529 files = [] 529 files = []
530 files += rebase_path(ar_webapp_files, root_build_dir) 530 files += rebase_path(ar_webapp_files, root_build_dir)
(...skipping 10 matching lines...) Expand all
541 args += [ 541 args += [
542 "--files_listfile", 542 "--files_listfile",
543 rebase_path(file_list, root_build_dir), 543 rebase_path(file_list, root_build_dir),
544 ] 544 ]
545 args += [ 545 args += [
546 "--locales_listfile", 546 "--locales_listfile",
547 rebase_path(locales_listfile_output, root_build_dir), 547 rebase_path(locales_listfile_output, root_build_dir),
548 ] 548 ]
549 } 549 }
550 } 550 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698