Commit 8f7af5fb authored by Michael Achenbach's avatar Michael Achenbach Committed by Commit Bot

[build] Manuelly roll and fix build

Manually rolls:
https://chromium.googlesource.com/chromium/src/build/+log/5488ca8df..53a7b319

Fixes gyp build after:

https: //codereview.chromium.org/2900193003
Change-Id: I0249aa7d1c40bcb1533c56577bfbda4aedd8cbf9
Reviewed-on: https://chromium-review.googlesource.com/518144Reviewed-by: 's avatarJochen Eisinger <jochen@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#45564}
parent e822488d
......@@ -8,7 +8,7 @@ vars = {
deps = {
"v8/build":
Var("chromium_url") + "/chromium/src/build.git" + "@" + "5488ca8df80a453c5c686e61be9c953f690a5463",
Var("chromium_url") + "/chromium/src/build.git" + "@" + "53a7b319829ddaed28556ccb281630b7fca167ca",
"v8/tools/gyp":
Var("chromium_url") + "/external/gyp.git" + "@" + "eb296f67da078ec01f5e3a9ea9cdc6d26d680161",
"v8/third_party/icu":
......
......@@ -696,12 +696,15 @@
['sysroot!="" and clang==1', {
'target_conditions': [
['_toolset=="target"', {
'variables': {
'ld_paths': ['<!(<(DEPTH)/build/linux/sysroot_ld_path.sh <(sysroot))'],
},
'cflags': [
'--sysroot=<(sysroot)',
],
'ldflags': [
'--sysroot=<(sysroot)',
'<!(<(DEPTH)/build/linux/sysroot_ld_path.sh <(sysroot))',
'<!(<(base_dir)/gypfiles/sysroot_ld_flags.sh <@(ld_paths))',
],
}]]
}],
......
#!/bin/sh
# Copyright 2017 the V8 project authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This is for backwards-compatibility after:
# https://codereview.chromium.org/2900193003
for entry in $@; do
echo -L$entry
echo -Wl,-rpath-link=$entry
done | xargs echo
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