From 54dc88724e7e13bb06293a66eac71238983000fd Mon Sep 17 00:00:00 2001 From: Scott Graham Date: Fri, 12 Jan 2018 10:25:34 -0800 Subject: [PATCH] fuchsia: Fix run when gn binary path non-absolute Oops. I thought GN abspath()d this in the regen rule, but it does not. Bug: crashpad:196 Change-Id: I33dadc5502a5e56f20ba7e4c0403fbc138f052c9 Reviewed-on: https://chromium-review.googlesource.com/864629 Reviewed-by: Mark Mentovai Commit-Queue: Scott Graham --- build/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/run_tests.py b/build/run_tests.py index b33478cf..c25f5590 100755 --- a/build/run_tests.py +++ b/build/run_tests.py @@ -56,7 +56,7 @@ def _FindGNFromBinaryDir(binary_dir): if line.startswith(' command = '): gn_command_line_parts = line.strip().split(' ') if len(gn_command_line_parts) > 2: - return gn_command_line_parts[2] + return os.path.join(binary_dir, gn_command_line_parts[2]) return None