| 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 = [ |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "$root_out_dir/goobsdiff", | 64 "$root_out_dir/goobsdiff", |
| 65 "$root_out_dir/goobspatch", | 65 "$root_out_dir/goobspatch", |
| 66 "$root_out_dir/liblzma_decompress.dylib", | 66 "$root_out_dir/liblzma_decompress.dylib", |
| 67 "$root_out_dir/xz", | 67 "$root_out_dir/xz", |
| 68 "$root_out_dir/xzdec", | 68 "$root_out_dir/xzdec", |
| 69 "dirdiffer.sh", | 69 "dirdiffer.sh", |
| 70 "dirpatcher.sh", | 70 "dirpatcher.sh", |
| 71 "dmgdiffer.sh", | 71 "dmgdiffer.sh", |
| 72 "pkg-dmg", | 72 "pkg-dmg", |
| 73 "sign_installer_tools.sh", | 73 "sign_installer_tools.sh", |
| 74 "variables.sh", |
| 74 ] | 75 ] |
| 75 | 76 |
| 76 if (is_chrome_branded) { | 77 if (is_chrome_branded) { |
| 77 sources += [ "keystone_install.sh" ] | 78 sources += [ "keystone_install.sh" ] |
| 78 } | 79 } |
| 79 | 80 |
| 80 if (is_chrome_branded) { | 81 if (is_chrome_branded) { |
| 81 sources += [ | 82 sources += [ |
| 82 "//chrome/app/theme/google_chrome/mac/app_canary.icns", | 83 "//chrome/app/theme/google_chrome/mac/app_canary.icns", |
| 83 "//chrome/app/theme/google_chrome/mac/document_canary.icns", | 84 "//chrome/app/theme/google_chrome/mac/document_canary.icns", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 104 sources = [ | 105 sources = [ |
| 105 "internal/keychain_reauthorizers/com.google.Chrome", | 106 "internal/keychain_reauthorizers/com.google.Chrome", |
| 106 "internal/keychain_reauthorizers/com.google.Chrome.canary", | 107 "internal/keychain_reauthorizers/com.google.Chrome.canary", |
| 107 ] | 108 ] |
| 108 | 109 |
| 109 outputs = [ | 110 outputs = [ |
| 110 "$_packaging_dir/keychain_reauthorizers/{{source_file_part}}", | 111 "$_packaging_dir/keychain_reauthorizers/{{source_file_part}}", |
| 111 ] | 112 ] |
| 112 } | 113 } |
| 113 } | 114 } |
| OLD | NEW |