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

Unified Diff: scripts/slave/recipe_modules/chromium/api.py

Issue 575733003: Run gyp_flag_compare.py on Linux GN bots (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: ws Created 6 years, 3 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/recipes/chromium_gn.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 9173de384d56a02179657b042b07d0c8c4df90b8..f6242b7129ca12ff9c4d58ff5c896e120724050c 100644
--- a/scripts/slave/recipe_modules/chromium/api.py
+++ b/scripts/slave/recipe_modules/chromium/api.py
@@ -430,6 +430,16 @@ class ChromiumApi(recipe_api.RecipeApi):
'--args=%s' % ' '.join(gn_args),
])
+ def run_gn_compare(self):
+ """Run the gyp/GN flag comparison tool to generate a report on flag
+ differences between the builds."""
+ self.m.python(
+ name='gyp_flag_compare',
+ script=self.m.path['checkout'].join('tools/gn/bin/gyp_flag_compare.py'),
+ args=[
+ 'chrome', # TODO(scottmg): all, configurable, etc.
+ ])
+
def taskkill(self):
self.m.python(
'taskkill',
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium_gn.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698