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

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

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: remove workaround now that pnacl-finalize handles --strip-unneeded 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 ":$background_html", 221 ":$background_html",
222 ":$message_window_html", 222 ":$message_window_html",
223 ":$wcs_sandbox_html", 223 ":$wcs_sandbox_html",
224 ":$public_session_html", 224 ":$public_session_html",
225 ":$main_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 += [ "//remoting/client/plugin:remoting_client_plugin_newlib(//build/ toolchain/nacl:newlib_pnacl)" ] 231 deps += [ "//remoting/client/plugin:remoting_client_plugin(//build/toolcha in/nacl:newlib_pnacl)" ]
232 } 232 }
233 233
234 # Create a file that contains a list of all the resource files needed 234 # Create a file that contains a list of all the resource files needed
235 # to build the webapp. This is needed to avoid problems on platforms that 235 # to build the webapp. This is needed to avoid problems on platforms that
236 # limit the size of a command line. 236 # limit the size of a command line.
237 file_list = "$target_gen_dir/${target_name}_files.txt" 237 file_list = "$target_gen_dir/${target_name}_files.txt"
238 files = [] 238 files = []
239 files += rebase_path(dr_generated_html_files, root_build_dir) 239 files += rebase_path(dr_generated_html_files, root_build_dir)
240 files += rebase_path(remoting_webapp_crd_files, root_build_dir) 240 files += rebase_path(remoting_webapp_crd_files, root_build_dir)
241 files += rebase_path(extra_files, root_build_dir) 241 files += rebase_path(extra_files, root_build_dir)
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 args += [ 538 args += [
539 "--files_listfile", 539 "--files_listfile",
540 rebase_path(file_list, root_build_dir), 540 rebase_path(file_list, root_build_dir),
541 ] 541 ]
542 args += [ 542 args += [
543 "--locales_listfile", 543 "--locales_listfile",
544 rebase_path(locales_listfile_output, root_build_dir), 544 rebase_path(locales_listfile_output, root_build_dir),
545 ] 545 ]
546 } 546 }
547 } 547 }
OLDNEW
« remoting/client/plugin/BUILD.gn ('K') | « remoting/client/plugin/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698