Commit ec608fec authored by Robert Sesek's avatar Robert Sesek Committed by Commit Bot

macOS Signing Scripts: Create the notarization sentinel file.

The internal signing scripts will look for the presence of the sentinel
(notarize_me.txt) as an indicator that the build should be submitted for
notarization.

Bug: 850199
Change-Id: I1c67a5c891b9d099510b1deaebce90378d134ca4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1679056Reviewed-by: default avatarMark Mentovai <mark@chromium.org>
Commit-Queue: Robert Sesek <rsesek@chromium.org>
Cr-Commit-Position: refs/heads/master@{#672583}
parent d516ca6f
...@@ -11,6 +11,7 @@ import("//chrome/process_version_rc_template.gni") ...@@ -11,6 +11,7 @@ import("//chrome/process_version_rc_template.gni")
group("mac") { group("mac") {
public_deps = [ public_deps = [
":copies", ":copies",
":notarization_sentinel",
] ]
} }
...@@ -62,6 +63,24 @@ copy("copy_signing") { ...@@ -62,6 +63,24 @@ copy("copy_signing") {
] ]
} }
action("notarization_sentinel") {
visibility = [ ":mac" ]
script = "//build/redirect_stdout.py"
_output = "$_packaging_dir/notarize_me.txt"
args = [
rebase_path(_output, root_out_dir),
"echo",
"yes",
]
outputs = [
_output,
]
}
copy("copies") { copy("copies") {
visibility = [ ":mac" ] visibility = [ ":mac" ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment