| 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 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 748 outputs = [ | 748 outputs = [ |
| 749 "$root_build_dir/remoting/{{source_name_part}}", | 749 "$root_build_dir/remoting/{{source_name_part}}", |
| 750 ] | 750 ] |
| 751 | 751 |
| 752 args = [ | 752 args = [ |
| 753 "--define", | 753 "--define", |
| 754 "ME2ME_HOST_PATH=$me2me_host_path", | 754 "ME2ME_HOST_PATH=$me2me_host_path", |
| 755 "--define", | 755 "--define", |
| 756 "IT2ME_HOST_PATH=$it2me_host_path", | 756 "IT2ME_HOST_PATH=$it2me_host_path", |
| 757 "--variables", | 757 "--variables", |
| 758 branding_path, | 758 rebase_path(branding_path), |
| 759 "--template", | 759 "--template", |
| 760 "{{source}}", | 760 "{{source}}", |
| 761 "--locale_output", | 761 "--locale_output", |
| 762 "remoting/{{source_name_part}}", | 762 "remoting/{{source_name_part}}", |
| 763 "en", | 763 "en", |
| 764 ] | 764 ] |
| 765 } | 765 } |
| 766 | 766 |
| 767 # TODO(crbug.com/512899) This still needs to be ported to GN. | 767 # TODO(crbug.com/512899) This still needs to be ported to GN. |
| 768 group("remoting_infoplist_strings") { | 768 group("remoting_infoplist_strings") { |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1144 "--target_arch", | 1144 "--target_arch", |
| 1145 "$target_cpu", | 1145 "$target_cpu", |
| 1146 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip", | 1146 rebase_path("$root_out_dir/remoting-me2me-host-$current_os.zip", |
| 1147 root_build_dir), | 1147 root_build_dir), |
| 1148 rebase_path(outputs[0], root_build_dir), | 1148 rebase_path(outputs[0], root_build_dir), |
| 1149 ] | 1149 ] |
| 1150 } | 1150 } |
| 1151 } | 1151 } |
| 1152 } | 1152 } |
| 1153 } | 1153 } |
| OLD | NEW |