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

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

Issue 1058633004: Added GYP defines to dump linux symbols for gpu perf bots and trybots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Configured android testers to target platform "android" Created 5 years, 9 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 | « scripts/slave/recipe_modules/chromium/config.py ('k') | scripts/slave/recipes/android/tester.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/gpu/api.py
diff --git a/scripts/slave/recipe_modules/gpu/api.py b/scripts/slave/recipe_modules/gpu/api.py
index a621a9d180f0be50a08e80f0e8bff26745bc3c01..8d6d3dc4f7df211ce86b5dd05fbe2995dd593b75 100644
--- a/scripts/slave/recipe_modules/gpu/api.py
+++ b/scripts/slave/recipe_modules/gpu/api.py
@@ -64,6 +64,10 @@ class GpuApi(recipe_api.RecipeApi):
self.m.chromium.c.gyp_env.GYP_DEFINES.pop('use_ash', None)
self.m.chromium.c.gyp_env.GYP_DEFINES.pop('use_aura', None)
+ # To print out callstacks on linux bots, we must output symbols as well.
+ if self.m.platform.is_linux:
+ self.m.chromium.c.gyp_env.GYP_DEFINES['linux_dump_symbols'] = 1
+
# Enable archiving the GPU tests' isolates in chrome_tests.gypi.
# The non-GPU trybots build the "all" target, and these tests
# shouldn't be built or run on those bots.
« no previous file with comments | « scripts/slave/recipe_modules/chromium/config.py ('k') | scripts/slave/recipes/android/tester.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698