| 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.
|
|
|