Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Side by Side Diff: chrome/installer/mac/variables.sh

Issue 2832073002: Refactor mac signing scripts for development workflow (Closed)
Patch Set: Fix wrong requirement variable name Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/installer/mac/sign_versioned_dir.sh.in ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # This signs the main app and helper executable, and enables "rootless"
6 # protections. The main app does not use library validation because it has to
7 # load Flash player, plugins, etc.
8 enforcement_flags_app="restrict"
9
10 # All the helpers (crashpad, app_mode_loader, etc.), run under library
11 # validation as they should not run any code not signed by Google.
12 enforcement_flags_helpers="${enforcement_flags_app},library"
13
14 # The installer tools are signed with the kill bit as well, as they run on
15 # signing machines and should never be modified.
16 enforcement_flags_installer_tools="${enforcement_flags_helpers},kill"
17
18 # The designated requirement suffix used when signing Chrome's binaries. It
19 # contains the hash of the certificate used to sign Chrome. When transitioning
20 # signing certs, this may include the hash of both the old and new certificate.
21 requirement_suffix="\
22 and (certificate leaf = H\"85cee8254216185620ddc8851c7a9fc4dfe120ef\" or \
23 certificate leaf = H\"c9a99324ca3fcb23dbcc36bd5fd4f9753305130a\") \
24 "
OLDNEW
« no previous file with comments | « chrome/installer/mac/sign_versioned_dir.sh.in ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698