Chromium Code Reviews| Index: build/all.gyp |
| diff --git a/build/all.gyp b/build/all.gyp |
| index d7ecdd63d81ed7b808133e5f6924130f04a385bb..9b158a01c5a4292c4e2bc2018e588bfe6680b717 100644 |
| --- a/build/all.gyp |
| +++ b/build/all.gyp |
| @@ -395,7 +395,6 @@ |
| 'target_name': 'chromium_gpu_builder', |
| 'type': 'none', |
| 'dependencies': [ |
| - '../chrome/chrome.gyp:gpu_tests', |
| '../chrome/chrome.gyp:performance_browser_tests', |
| '../chrome/chrome.gyp:performance_ui_tests', |
| '../content/content.gyp:content_browsertests', |
| @@ -408,13 +407,22 @@ |
| '../gpu/gles2_conform_test/gles2_conform_test.gyp:gles2_conform_test', |
| ], |
| }], # internal_gles2_conform |
| + ['OS!="ios" and OS!="win"', { |
|
Ken Russell (switch to Gerrit)
2013/10/16 22:52:55
Here and below, I think this should be more explic
Zhenyao Mo
2013/10/16 22:58:56
I followed what chromium_builder_perf is doing (se
|
| + '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', |
| '../content/content.gyp:content_browsertests', |
| '../content/content.gyp:content_gl_tests', |
| '../gpu/gpu.gyp:gl_tests', |
| @@ -425,6 +433,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 |
| { |