Commit f654a07b authored by Nico Weber's avatar Nico Weber

mac: Bundle llvm-otool and llvm-objdump when we bundle otool.

otool is a symlink to llvm-otool, and llvm-otool shells out to
llvm-objdump.

TBR=creis

Bug: 998873
Change-Id: I65e1d7cd3d1cad1985f2d01c52195d510dbcf0c0
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1803766
Commit-Queue: Nico Weber <thakis@chromium.org>
Reviewed-by: default avatarMark Mentovai <mark@chromium.org>
Cr-Commit-Position: refs/heads/master@{#696664}
parent 4da89d81
......@@ -954,7 +954,13 @@ group("content_shell_crash_test") {
"//testing/xvfb.py",
]
if (is_mac && !use_system_xcode) {
data += [ mac_bin_path + "otool" ]
data += [
# Scripts call otool, which is a symlink to llvm-otool, so we need both.
# llvm-otool shells out to llvm-objdump, so that's needed as well.
mac_bin_path + "llvm-objdump",
mac_bin_path + "llvm-otool",
mac_bin_path + "otool",
]
}
if (is_posix) {
data += [
......
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