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

Unified Diff: scripts/slave/chromium/win_apply_syzyasan.py

Issue 2233733003: chromium: pass proper --src-dir to win_apply_syzyasan.py (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium/api.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/chromium/win_apply_syzyasan.py
diff --git a/scripts/slave/chromium/win_apply_syzyasan.py b/scripts/slave/chromium/win_apply_syzyasan.py
index 0eeb4bd594204eafdd5876e35a66833b8ef83907..ca439c88d0a264d9ada6f4a5951056ab6c0f659d 100755
--- a/scripts/slave/chromium/win_apply_syzyasan.py
+++ b/scripts/slave/chromium/win_apply_syzyasan.py
@@ -218,8 +218,10 @@ def main():
'--runtime_path', default=default_runtime_path,
help='Specify the path to the ASAN runtime DLL relative to '
'build-dir (%default).')
+ parser.add_option('--src-dir', help='path to the top-level sources directory')
options, args = parser.parse_args()
- options.build_dir = build_directory.GetBuildOutputDirectory()
+ options.build_dir = build_directory.GetBuildOutputDirectory(
+ src_dir=options.src_dir)
options.build_dir = os.path.abspath(options.build_dir)
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698