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

Unified Diff: build/all.gyp

Issue 26570007: Add minidump_stackwalk and chrome to chromium_gpu*_builder targets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add chrome dependency Created 7 years, 2 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 | chrome/chrome_tests.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/all.gyp
diff --git a/build/all.gyp b/build/all.gyp
index c477ff88d8b12b75528eaadd3dfb3e5d343ac3f0..e2cced937739d7380ae89801a62752566817000a 100644
--- a/build/all.gyp
+++ b/build/all.gyp
@@ -394,7 +394,7 @@
'target_name': 'chromium_gpu_builder',
'type': 'none',
'dependencies': [
- '../chrome/chrome.gyp:gpu_tests',
+ '../chrome/chrome.gyp:chrome',
'../chrome/chrome.gyp:performance_browser_tests',
'../chrome/chrome.gyp:performance_ui_tests',
'../content/content.gyp:content_browsertests',
@@ -407,13 +407,23 @@
'../gpu/gles2_conform_test/gles2_conform_test.gyp:gles2_conform_test',
],
}], # internal_gles2_conform
+ ['OS!="ios" and OS!="win"', {
+ 'dependencies': [
+ '../breakpad/breakpad.gyp:minidump_stackwalk',
+ ],
+ }],
+ ['OS=="linux"', {
+ 'dependencies': [
+ '../chrome/chrome.gyp:linux_symbols'
+ ],
+ }],
],
}, # target_name: chromium_gpu_builder
{
'target_name': 'chromium_gpu_debug_builder',
'type': 'none',
'dependencies': [
- '../chrome/chrome.gyp:gpu_tests',
+ '../chrome/chrome.gyp:chrome',
'../content/content.gyp:content_browsertests',
'../content/content.gyp:content_gl_tests',
'../gpu/gpu.gyp:gl_tests',
@@ -424,6 +434,16 @@
'../gpu/gles2_conform_test/gles2_conform_test.gyp:gles2_conform_test',
],
}], # internal_gles2_conform
+ ['OS!="ios" and OS!="win"', {
+ 'dependencies': [
+ '../breakpad/breakpad.gyp:minidump_stackwalk',
+ ],
+ }],
+ ['OS=="linux"', {
+ 'dependencies': [
+ '../chrome/chrome.gyp:linux_symbols'
+ ],
+ }],
],
}, # target_name: chromium_gpu_debug_builder
{
« no previous file with comments | « no previous file | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698