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

Unified Diff: scripts/slave/recipe_modules/chromium/api.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
Index: scripts/slave/recipe_modules/chromium/api.py
diff --git a/scripts/slave/recipe_modules/chromium/api.py b/scripts/slave/recipe_modules/chromium/api.py
index b4c6bf84c0186579e64a72ad01e7605b150572ad..fe534cafe188c94860b11801f553a22b5f828e8a 100644
--- a/scripts/slave/recipe_modules/chromium/api.py
+++ b/scripts/slave/recipe_modules/chromium/api.py
@@ -704,7 +704,10 @@ class ChromiumApi(recipe_api.RecipeApi):
pass
def apply_syzyasan(self):
- args = ['--target', self.c.BUILD_CONFIG]
+ args = [
+ '--src-dir', self.m.path['checkout'],
+ '--target', self.c.BUILD_CONFIG,
+ ]
self.m.python(
'apply_syzyasan',
self.package_repo_resource(

Powered by Google App Engine
This is Rietveld 408576698