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

Side by Side 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: 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'All', 8 'target_name': 'All',
9 'type': 'none', 9 'type': 'none',
10 'xcode_create_dependents_test_runner': 1, 10 'xcode_create_dependents_test_runner': 1,
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 'dependencies': [ 388 'dependencies': [
389 '../chrome/chrome.gyp:linux_symbols' 389 '../chrome/chrome.gyp:linux_symbols'
390 ], 390 ],
391 }], 391 }],
392 ], 392 ],
393 }, # target_name: chromium_builder_perf 393 }, # target_name: chromium_builder_perf
394 { 394 {
395 'target_name': 'chromium_gpu_builder', 395 'target_name': 'chromium_gpu_builder',
396 'type': 'none', 396 'type': 'none',
397 'dependencies': [ 397 'dependencies': [
398 '../chrome/chrome.gyp:gpu_tests',
399 '../chrome/chrome.gyp:performance_browser_tests', 398 '../chrome/chrome.gyp:performance_browser_tests',
400 '../chrome/chrome.gyp:performance_ui_tests', 399 '../chrome/chrome.gyp:performance_ui_tests',
401 '../content/content.gyp:content_browsertests', 400 '../content/content.gyp:content_browsertests',
402 '../content/content.gyp:content_gl_tests', 401 '../content/content.gyp:content_gl_tests',
403 '../gpu/gpu.gyp:gl_tests', 402 '../gpu/gpu.gyp:gl_tests',
404 ], 403 ],
405 'conditions': [ 404 'conditions': [
406 ['internal_gles2_conform_tests', { 405 ['internal_gles2_conform_tests', {
407 'dependencies': [ 406 'dependencies': [
408 '../gpu/gles2_conform_test/gles2_conform_test.gyp:gles2_conform_ test', 407 '../gpu/gles2_conform_test/gles2_conform_test.gyp:gles2_conform_ test',
409 ], 408 ],
410 }], # internal_gles2_conform 409 }], # internal_gles2_conform
410 ['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
411 'dependencies': [
412 '../breakpad/breakpad.gyp:minidump_stackwalk',
413 ],
414 }],
415 ['OS=="linux"', {
416 'dependencies': [
417 '../chrome/chrome.gyp:linux_symbols'
418 ],
419 }],
411 ], 420 ],
412 }, # target_name: chromium_gpu_builder 421 }, # target_name: chromium_gpu_builder
413 { 422 {
414 'target_name': 'chromium_gpu_debug_builder', 423 'target_name': 'chromium_gpu_debug_builder',
415 'type': 'none', 424 'type': 'none',
416 'dependencies': [ 425 'dependencies': [
417 '../chrome/chrome.gyp:gpu_tests',
418 '../content/content.gyp:content_browsertests', 426 '../content/content.gyp:content_browsertests',
419 '../content/content.gyp:content_gl_tests', 427 '../content/content.gyp:content_gl_tests',
420 '../gpu/gpu.gyp:gl_tests', 428 '../gpu/gpu.gyp:gl_tests',
421 ], 429 ],
422 'conditions': [ 430 'conditions': [
423 ['internal_gles2_conform_tests', { 431 ['internal_gles2_conform_tests', {
424 'dependencies': [ 432 'dependencies': [
425 '../gpu/gles2_conform_test/gles2_conform_test.gyp:gles2_conform_ test', 433 '../gpu/gles2_conform_test/gles2_conform_test.gyp:gles2_conform_ test',
426 ], 434 ],
427 }], # internal_gles2_conform 435 }], # internal_gles2_conform
436 ['OS!="ios" and OS!="win"', {
437 'dependencies': [
438 '../breakpad/breakpad.gyp:minidump_stackwalk',
439 ],
440 }],
441 ['OS=="linux"', {
442 'dependencies': [
443 '../chrome/chrome.gyp:linux_symbols'
444 ],
445 }],
428 ], 446 ],
429 }, # target_name: chromium_gpu_debug_builder 447 }, # target_name: chromium_gpu_debug_builder
430 { 448 {
431 'target_name': 'chromium_builder_qa', 449 'target_name': 'chromium_builder_qa',
432 'type': 'none', 450 'type': 'none',
433 'dependencies': [ 451 'dependencies': [
434 '../chrome/chrome.gyp:chrome', 452 '../chrome/chrome.gyp:chrome',
435 # Dependencies of pyauto_functional tests. 453 # Dependencies of pyauto_functional tests.
436 '../remoting/remoting.gyp:remoting_webapp', 454 '../remoting/remoting.gyp:remoting_webapp',
437 ], 455 ],
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
962 '../chrome/chrome.gyp:interactive_ui_tests_run', 980 '../chrome/chrome.gyp:interactive_ui_tests_run',
963 '../chrome/chrome.gyp:sync_integration_tests_run', 981 '../chrome/chrome.gyp:sync_integration_tests_run',
964 '../chrome/chrome.gyp:unit_tests_run', 982 '../chrome/chrome.gyp:unit_tests_run',
965 '../net/net.gyp:net_unittests_run', 983 '../net/net.gyp:net_unittests_run',
966 ], 984 ],
967 }, # target_name: chromium_swarm_tests 985 }, # target_name: chromium_swarm_tests
968 ], 986 ],
969 }], 987 }],
970 ], # conditions 988 ], # conditions
971 } 989 }
OLDNEW
« 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