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

Side by Side Diff: build/all.gyp

Issue 2091153003: Delete the chromium_gpu_builder and chromium_gpu_debug_builder targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
« no previous file with comments | « no previous file | no next file » | 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 'variables': { 6 'variables': {
7 # A hook that can be overridden in other repositories to add additional 7 # A hook that can be overridden in other repositories to add additional
8 # compilation targets to 'All'. 8 # compilation targets to 'All'.
9 'app_targets%': [], 9 'app_targets%': [],
10 # For Android-specific targets. 10 # For Android-specific targets.
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 }], 579 }],
580 ['OS=="win"', { 580 ['OS=="win"', {
581 'dependencies': [ 581 'dependencies': [
582 '../chrome/installer/mini_installer.gyp:mini_installer', 582 '../chrome/installer/mini_installer.gyp:mini_installer',
583 '../gpu/gpu.gyp:angle_perftests', 583 '../gpu/gpu.gyp:angle_perftests',
584 ], 584 ],
585 }], 585 }],
586 ], 586 ],
587 }, # target_name: chromium_builder_perf 587 }, # target_name: chromium_builder_perf
588 { 588 {
589 'target_name': 'chromium_gpu_builder',
590 'type': 'none',
591 'dependencies': [
592 '../chrome/chrome.gyp:chrome',
593 '../chrome/chrome.gyp:performance_browser_tests',
594 '../content/content_shell_and_tests.gyp:content_browsertests',
595 '../gpu/gles2_conform_support/gles2_conform_test.gyp:gles2_conform_t est',
596 '../gpu/khronos_glcts_support/khronos_glcts_test.gyp:khronos_glcts_t est',
597 '../gpu/gpu.gyp:gl_tests',
598 '../gpu/gpu.gyp:angle_unittests',
599 '../gpu/gpu.gyp:gpu_unittests',
600 '../gpu/gpu.gyp:command_buffer_gles2_tests',
601 '../third_party/catapult/telemetry/telemetry.gyp:*',
602 ],
603 'conditions': [
604 ['OS!="ios" and OS!="win"', {
605 'dependencies': [
606 '../breakpad/breakpad.gyp:minidump_stackwalk',
607 ],
608 }],
609 ['OS=="linux"', {
610 'dependencies': [
611 '../chrome/chrome.gyp:linux_symbols'
612 ],
613 }],
614 ],
615 }, # target_name: chromium_gpu_builder
616 {
617 'target_name': 'chromium_gpu_debug_builder',
618 'type': 'none',
619 'dependencies': [
620 '../chrome/chrome.gyp:chrome',
621 '../content/content_shell_and_tests.gyp:content_browsertests',
622 '../gpu/gles2_conform_support/gles2_conform_test.gyp:gles2_conform_t est',
623 '../gpu/khronos_glcts_support/khronos_glcts_test.gyp:khronos_glcts_t est',
624 '../gpu/gpu.gyp:gl_tests',
625 '../gpu/gpu.gyp:angle_unittests',
626 '../gpu/gpu.gyp:gpu_unittests',
627 '../gpu/gpu.gyp:command_buffer_gles2_tests',
628 '../third_party/catapult/telemetry/telemetry.gyp:*',
629 ],
630 'conditions': [
631 ['OS!="ios" and OS!="win"', {
632 'dependencies': [
633 '../breakpad/breakpad.gyp:minidump_stackwalk',
634 ],
635 }],
636 ['OS=="linux"', {
637 'dependencies': [
638 '../chrome/chrome.gyp:linux_symbols'
639 ],
640 }],
641 ],
642 }, # target_name: chromium_gpu_debug_builder
643 {
644 # This target contains everything we need to run tests on the special 589 # This target contains everything we need to run tests on the special
645 # device-equipped WebRTC bots. We have device-requiring tests in 590 # device-equipped WebRTC bots. We have device-requiring tests in
646 # browser_tests and content_browsertests. 591 # browser_tests and content_browsertests.
647 'target_name': 'chromium_builder_webrtc', 592 'target_name': 'chromium_builder_webrtc',
648 'type': 'none', 593 'type': 'none',
649 'dependencies': [ 594 'dependencies': [
650 'chromium_builder_perf', 595 'chromium_builder_perf',
651 '../chrome/chrome.gyp:browser_tests', 596 '../chrome/chrome.gyp:browser_tests',
652 '../content/content_shell_and_tests.gyp:content_browsertests', 597 '../content/content_shell_and_tests.gyp:content_browsertests',
653 '../content/content_shell_and_tests.gyp:content_unittests', 598 '../content/content_shell_and_tests.gyp:content_unittests',
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after
1335 'dependencies': [ 1280 'dependencies': [
1336 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', 1281 '../ui/views/examples/examples.gyp:views_examples_with_content_exe',
1337 '../ui/views/views.gyp:views', 1282 '../ui/views/views.gyp:views',
1338 '../ui/views/views.gyp:views_unittests', 1283 '../ui/views/views.gyp:views_unittests',
1339 ], 1284 ],
1340 }, # target_name: macviews_builder 1285 }, # target_name: macviews_builder
1341 ], # targets 1286 ], # targets
1342 }], # os=='mac' and toolkit_views==1 1287 }], # os=='mac' and toolkit_views==1
1343 ], # conditions 1288 ], # conditions
1344 } 1289 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698