| 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("//build/util/branding.gni") | 5 import("//build/util/branding.gni") |
| 6 import("//build/util/version.gni") | 6 import("//build/util/version.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 | 8 |
| 9 group("mac") { | 9 group("mac") { |
| 10 public_deps = [ | 10 public_deps = [ |
| 11 ":copies", | 11 ":copies", |
| 12 ":make_signers", | 12 ":make_signers", |
| 13 "app:downloader", |
| 13 ] | 14 ] |
| 14 } | 15 } |
| 15 | 16 |
| 16 _packaging_dir = "$root_out_dir/$chrome_product_full_name Packaging" | 17 _packaging_dir = "$root_out_dir/$chrome_product_full_name Packaging" |
| 17 | 18 |
| 18 action("make_signers") { | 19 action("make_signers") { |
| 19 visibility = [ ":mac" ] | 20 visibility = [ ":mac" ] |
| 20 | 21 |
| 21 script = "//build/gn_run_binary.py" | 22 script = "//build/gn_run_binary.py" |
| 22 shell_script = "//chrome/installer/mac/make_signers.sh" | 23 shell_script = "//chrome/installer/mac/make_signers.sh" |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "internal/chrome_dmg_dsstore", | 82 "internal/chrome_dmg_dsstore", |
| 82 "internal/chrome_dmg_icon.icns", | 83 "internal/chrome_dmg_icon.icns", |
| 83 "internal/generate_dmgs", | 84 "internal/generate_dmgs", |
| 84 ] | 85 ] |
| 85 } | 86 } |
| 86 | 87 |
| 87 outputs = [ | 88 outputs = [ |
| 88 "$_packaging_dir/{{source_file_part}}", | 89 "$_packaging_dir/{{source_file_part}}", |
| 89 ] | 90 ] |
| 90 } | 91 } |
| OLD | NEW |