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

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: 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 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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 'dependencies': [ 387 'dependencies': [
388 '../chrome/chrome.gyp:linux_symbols' 388 '../chrome/chrome.gyp:linux_symbols'
389 ], 389 ],
390 }], 390 }],
391 ], 391 ],
392 }, # target_name: chromium_builder_perf 392 }, # target_name: chromium_builder_perf
393 { 393 {
394 'target_name': 'chromium_gpu_builder', 394 'target_name': 'chromium_gpu_builder',
395 'type': 'none', 395 'type': 'none',
396 'dependencies': [ 396 'dependencies': [
397 '../chrome/chrome.gyp:gpu_tests', 397 '../chrome/chrome.gyp:chrome',
398 '../chrome/chrome.gyp:performance_browser_tests', 398 '../chrome/chrome.gyp:performance_browser_tests',
399 '../chrome/chrome.gyp:performance_ui_tests', 399 '../chrome/chrome.gyp:performance_ui_tests',
400 '../content/content.gyp:content_browsertests', 400 '../content/content.gyp:content_browsertests',
401 '../content/content.gyp:content_gl_tests', 401 '../content/content.gyp:content_gl_tests',
402 '../gpu/gpu.gyp:gl_tests', 402 '../gpu/gpu.gyp:gl_tests',
403 ], 403 ],
404 'conditions': [ 404 'conditions': [
405 ['internal_gles2_conform_tests', { 405 ['internal_gles2_conform_tests', {
406 'dependencies': [ 406 'dependencies': [
407 '../gpu/gles2_conform_test/gles2_conform_test.gyp:gles2_conform_ test', 407 '../gpu/gles2_conform_test/gles2_conform_test.gyp:gles2_conform_ test',
408 ], 408 ],
409 }], # internal_gles2_conform 409 }], # internal_gles2_conform
410 ['OS!="ios" and OS!="win"', {
411 'dependencies': [
412 '../breakpad/breakpad.gyp:minidump_stackwalk',
413 ],
414 }],
415 ['OS=="linux"', {
416 'dependencies': [
417 '../chrome/chrome.gyp:linux_symbols'
418 ],
419 }],
410 ], 420 ],
411 }, # target_name: chromium_gpu_builder 421 }, # target_name: chromium_gpu_builder
412 { 422 {
413 'target_name': 'chromium_gpu_debug_builder', 423 'target_name': 'chromium_gpu_debug_builder',
414 'type': 'none', 424 'type': 'none',
415 'dependencies': [ 425 'dependencies': [
416 '../chrome/chrome.gyp:gpu_tests', 426 '../chrome/chrome.gyp:chrome',
417 '../content/content.gyp:content_browsertests', 427 '../content/content.gyp:content_browsertests',
418 '../content/content.gyp:content_gl_tests', 428 '../content/content.gyp:content_gl_tests',
419 '../gpu/gpu.gyp:gl_tests', 429 '../gpu/gpu.gyp:gl_tests',
420 ], 430 ],
421 'conditions': [ 431 'conditions': [
422 ['internal_gles2_conform_tests', { 432 ['internal_gles2_conform_tests', {
423 'dependencies': [ 433 'dependencies': [
424 '../gpu/gles2_conform_test/gles2_conform_test.gyp:gles2_conform_ test', 434 '../gpu/gles2_conform_test/gles2_conform_test.gyp:gles2_conform_ test',
425 ], 435 ],
426 }], # internal_gles2_conform 436 }], # internal_gles2_conform
437 ['OS!="ios" and OS!="win"', {
438 'dependencies': [
439 '../breakpad/breakpad.gyp:minidump_stackwalk',
440 ],
441 }],
442 ['OS=="linux"', {
443 'dependencies': [
444 '../chrome/chrome.gyp:linux_symbols'
445 ],
446 }],
427 ], 447 ],
428 }, # target_name: chromium_gpu_debug_builder 448 }, # target_name: chromium_gpu_debug_builder
429 { 449 {
430 'target_name': 'chromium_builder_qa', 450 'target_name': 'chromium_builder_qa',
431 'type': 'none', 451 'type': 'none',
432 'dependencies': [ 452 'dependencies': [
433 '../chrome/chrome.gyp:chrome', 453 '../chrome/chrome.gyp:chrome',
434 # Dependencies of pyauto_functional tests. 454 # Dependencies of pyauto_functional tests.
435 '../remoting/remoting.gyp:remoting_webapp', 455 '../remoting/remoting.gyp:remoting_webapp',
436 ], 456 ],
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
961 '../chrome/chrome.gyp:interactive_ui_tests_run', 981 '../chrome/chrome.gyp:interactive_ui_tests_run',
962 '../chrome/chrome.gyp:sync_integration_tests_run', 982 '../chrome/chrome.gyp:sync_integration_tests_run',
963 '../chrome/chrome.gyp:unit_tests_run', 983 '../chrome/chrome.gyp:unit_tests_run',
964 '../net/net.gyp:net_unittests_run', 984 '../net/net.gyp:net_unittests_run',
965 ], 985 ],
966 }, # target_name: chromium_swarm_tests 986 }, # target_name: chromium_swarm_tests
967 ], 987 ],
968 }], 988 }],
969 ], # conditions 989 ], # conditions
970 } 990 }
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