| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/config/win/manifest.gni") | 7 import("//build/config/win/manifest.gni") |
| 8 import("//build/util/version.gni") | 8 import("//build/util/version.gni") |
| 9 import("//remoting/remoting_enable.gni") | 9 import("//remoting/remoting_enable.gni") |
| 10 import("//remoting/remoting_locales.gni") | 10 import("//remoting/remoting_locales.gni") |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 args = [ | 61 args = [ |
| 62 "credits", | 62 "credits", |
| 63 rebase_path(about_credits_file, root_build_dir), | 63 rebase_path(about_credits_file, root_build_dir), |
| 64 "--file-template", | 64 "--file-template", |
| 65 rebase_path("installer/credits.tmpl", root_build_dir), | 65 rebase_path("installer/credits.tmpl", root_build_dir), |
| 66 "--entry-template", | 66 "--entry-template", |
| 67 rebase_path("installer/credits_entry.tmpl", root_build_dir), | 67 rebase_path("installer/credits_entry.tmpl", root_build_dir), |
| 68 ] | 68 ] |
| 69 } | 69 } |
| 70 | 70 |
| 71 if (is_mac) { # TODO(GYP) Mac build of remoting host. | 71 if (is_mac) { |
| 72 # TODO(GYP) Mac build of remoting host, https://crbug.com/611859 |
| 73 # If you fix this, also enable in //remoting/remoting_enable.gni |
| 74 # on mac. |
| 72 group("host") { | 75 group("host") { |
| 73 } | 76 } |
| 74 group("test_support") { | 77 group("test_support") { |
| 75 } | 78 } |
| 76 group("unit_tests") { | 79 group("unit_tests") { |
| 77 } | 80 } |
| 78 } else { | 81 } else { |
| 79 # This must be a static library instead of a source set because | 82 # This must be a static library instead of a source set because |
| 80 # remoting_unittests requires that remoting_me2me_host.cc not be pulled in, | 83 # remoting_unittests requires that remoting_me2me_host.cc not be pulled in, |
| 81 # which in turn depends on remoting_me2me_host_static which isn't part of that | 84 # which in turn depends on remoting_me2me_host_static which isn't part of that |
| (...skipping 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1153 "--target_arch", | 1156 "--target_arch", |
| 1154 msi_script_arch, | 1157 msi_script_arch, |
| 1155 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip", | 1158 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip", |
| 1156 root_build_dir), | 1159 root_build_dir), |
| 1157 rebase_path(outputs[0], root_build_dir), | 1160 rebase_path(outputs[0], root_build_dir), |
| 1158 ] | 1161 ] |
| 1159 } | 1162 } |
| 1160 } | 1163 } |
| 1161 } | 1164 } |
| 1162 } | 1165 } |
| OLD | NEW |