Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//remoting/build/config/remoting_build.gni") | 5 import("//remoting/build/config/remoting_build.gni") |
| 6 | 6 |
| 7 import("//build/config/zip.gni") | 7 import("//build/config/zip.gni") |
| 8 | 8 |
| 9 copy("remoting_native_messaging_host_rename") { | 9 copy("remoting_native_messaging_host_rename") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 43 inputs = _installer_mac_files | 43 inputs = _installer_mac_files |
| 44 | 44 |
| 45 zip_path = "$root_build_dir/remoting-me2me-host-mac.zip" | 45 zip_path = "$root_build_dir/remoting-me2me-host-mac.zip" |
| 46 | 46 |
| 47 outputs = [ | 47 outputs = [ |
| 48 "$root_build_dir/remoting-me2me-host-mac.zip", | 48 "$root_build_dir/remoting-me2me-host-mac.zip", |
| 49 ] | 49 ] |
| 50 | 50 |
| 51 script = "//remoting/host/installer/build-installer-archive.py" | 51 script = "//remoting/host/installer/build-installer-archive.py" |
| 52 | 52 |
| 53 # TODO(GYP) TODO(crbug.com/622415): Fill these in. | |
|
Jamie
2016/10/17 22:57:45
Please update/close crbug.com/622415 as appropriat
| |
| 54 host_name_nospace = host_name | |
| 55 host_service_name_nospace = host_service_name | |
| 56 host_uninstaller_name_nospace = host_uninstaller_name | |
| 57 | |
| 58 args = [ | 53 args = [ |
| 59 rebase_path("$target_gen_dir/remoting_installation", root_build_dir), | 54 rebase_path("$target_gen_dir/remoting_installation", root_build_dir), |
| 60 rebase_path(zip_path, root_build_dir), | 55 rebase_path(zip_path, root_build_dir), |
| 61 "--source-file-roots", | 56 "--source-file-roots", |
| 62 rebase_path("//remoting/host/installer/mac/", root_build_dir), | 57 rebase_path("//remoting/host/installer/mac/", root_build_dir), |
| 63 rebase_path("//chrome/installer/mac", root_build_dir), | 58 rebase_path("//chrome/installer/mac", root_build_dir), |
| 64 "--source-files", | 59 "--source-files", |
| 65 ] + rebase_path(_installer_mac_files, root_build_dir) + [ | 60 ] + rebase_path(_installer_mac_files, root_build_dir) + [ |
| 66 "--generated-files", | 61 "--generated-files", |
| 67 "remoting_host_prefpane.prefPane", | 62 "remoting_host_prefpane.prefPane", |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 172 | 167 |
| 173 bundle_data("remoting_host_uninstaller_resources") { | 168 bundle_data("remoting_host_uninstaller_resources") { |
| 174 sources = [ | 169 sources = [ |
| 175 "uninstaller/remoting_uninstaller.icns", | 170 "uninstaller/remoting_uninstaller.icns", |
| 176 ] | 171 ] |
| 177 | 172 |
| 178 outputs = [ | 173 outputs = [ |
| 179 "{{bundle_resources_dir}}/{{source_file_part}}", | 174 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 180 ] | 175 ] |
| 181 } | 176 } |
| OLD | NEW |