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

Unified Diff: remoting/remoting_options.gni

Issue 1426113002: port remoting_me2me_host_archive to GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: import chrome_build.gni in remoting_options.gni 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 side-by-side diff with in-line comments
Download patch
Index: remoting/remoting_options.gni
diff --git a/remoting/remoting_options.gni b/remoting/remoting_options.gni
index 2185f21a89770de6c9e58141e0a6a2ed4ee3f691..5f3d5b953a3d3d7ed7ab14bf7e201eeb79283c0c 100644
--- a/remoting/remoting_options.gni
+++ b/remoting/remoting_options.gni
@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//build/config/chrome_build.gni")
+
# These arguments can be overridden from the command line (see "gn help args").
declare_args() {
# Set this to run the jscompile checks after building the webapp.
@@ -26,7 +28,11 @@ if (is_win) {
remoting_rdp_session = 1
-branding_path = "../remoting/branding_<(branding)"
+if (is_chrome_branded) {
+ branding_path = rebase_path("//remoting/branding_Chrome", root_build_dir)
+} else {
+ branding_path = rebase_path("//remoting/branding_Chromium", root_build_dir)
+}
# The ar_service_environment variable is used to define the target
# environment for the app being built.
« remoting/BUILD.gn ('K') | « remoting/remoting_host.gypi ('k') | remoting/webapp/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698