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

Side by Side Diff: build/all.gyp

Issue 1640243002: command_buffer_gles2: Add test command_buffer_gles2_test for command_buffer_gles2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
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 596 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 'dependencies': [ 607 'dependencies': [
608 '../chrome/chrome.gyp:chrome', 608 '../chrome/chrome.gyp:chrome',
609 '../chrome/chrome.gyp:performance_browser_tests', 609 '../chrome/chrome.gyp:performance_browser_tests',
610 '../content/content_shell_and_tests.gyp:content_browsertests', 610 '../content/content_shell_and_tests.gyp:content_browsertests',
611 '../content/content_shell_and_tests.gyp:content_gl_tests', 611 '../content/content_shell_and_tests.gyp:content_gl_tests',
612 '../gpu/gles2_conform_support/gles2_conform_test.gyp:gles2_conform_t est', 612 '../gpu/gles2_conform_support/gles2_conform_test.gyp:gles2_conform_t est',
613 '../gpu/khronos_glcts_support/khronos_glcts_test.gyp:khronos_glcts_t est', 613 '../gpu/khronos_glcts_support/khronos_glcts_test.gyp:khronos_glcts_t est',
614 '../gpu/gpu.gyp:gl_tests', 614 '../gpu/gpu.gyp:gl_tests',
615 '../gpu/gpu.gyp:angle_unittests', 615 '../gpu/gpu.gyp:angle_unittests',
616 '../gpu/gpu.gyp:gpu_unittests', 616 '../gpu/gpu.gyp:gpu_unittests',
617 '../gpu/gpu.gyp:command_buffer_gles2_tests',
617 '../third_party/catapult/telemetry/telemetry.gyp:*', 618 '../third_party/catapult/telemetry/telemetry.gyp:*',
618 ], 619 ],
619 'conditions': [ 620 'conditions': [
620 ['OS!="ios" and OS!="win"', { 621 ['OS!="ios" and OS!="win"', {
621 'dependencies': [ 622 'dependencies': [
622 '../breakpad/breakpad.gyp:minidump_stackwalk', 623 '../breakpad/breakpad.gyp:minidump_stackwalk',
623 ], 624 ],
624 }], 625 }],
625 ['OS=="linux"', { 626 ['OS=="linux"', {
626 'dependencies': [ 627 'dependencies': [
(...skipping 17 matching lines...) Expand all
644 'type': 'none', 645 'type': 'none',
645 'dependencies': [ 646 'dependencies': [
646 '../chrome/chrome.gyp:chrome', 647 '../chrome/chrome.gyp:chrome',
647 '../content/content_shell_and_tests.gyp:content_browsertests', 648 '../content/content_shell_and_tests.gyp:content_browsertests',
648 '../content/content_shell_and_tests.gyp:content_gl_tests', 649 '../content/content_shell_and_tests.gyp:content_gl_tests',
649 '../gpu/gles2_conform_support/gles2_conform_test.gyp:gles2_conform_t est', 650 '../gpu/gles2_conform_support/gles2_conform_test.gyp:gles2_conform_t est',
650 '../gpu/khronos_glcts_support/khronos_glcts_test.gyp:khronos_glcts_t est', 651 '../gpu/khronos_glcts_support/khronos_glcts_test.gyp:khronos_glcts_t est',
651 '../gpu/gpu.gyp:gl_tests', 652 '../gpu/gpu.gyp:gl_tests',
652 '../gpu/gpu.gyp:angle_unittests', 653 '../gpu/gpu.gyp:angle_unittests',
653 '../gpu/gpu.gyp:gpu_unittests', 654 '../gpu/gpu.gyp:gpu_unittests',
655 '../gpu/gpu.gyp:command_buffer_gles2_tests',
654 '../third_party/catapult/telemetry/telemetry.gyp:*', 656 '../third_party/catapult/telemetry/telemetry.gyp:*',
655 ], 657 ],
656 'conditions': [ 658 'conditions': [
657 ['OS!="ios" and OS!="win"', { 659 ['OS!="ios" and OS!="win"', {
658 'dependencies': [ 660 'dependencies': [
659 '../breakpad/breakpad.gyp:minidump_stackwalk', 661 '../breakpad/breakpad.gyp:minidump_stackwalk',
660 ], 662 ],
661 }], 663 }],
662 ['OS=="linux"', { 664 ['OS=="linux"', {
663 'dependencies': [ 665 'dependencies': [
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after
1435 'dependencies': [ 1437 'dependencies': [
1436 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', 1438 '../ui/views/examples/examples.gyp:views_examples_with_content_exe',
1437 '../ui/views/views.gyp:views', 1439 '../ui/views/views.gyp:views',
1438 '../ui/views/views.gyp:views_unittests', 1440 '../ui/views/views.gyp:views_unittests',
1439 ], 1441 ],
1440 }, # target_name: macviews_builder 1442 }, # target_name: macviews_builder
1441 ], # targets 1443 ], # targets
1442 }], # os=='mac' and toolkit_views==1 1444 }], # os=='mac' and toolkit_views==1
1443 ], # conditions 1445 ], # conditions
1444 } 1446 }
OLDNEW
« base/at_exit.cc ('K') | « base/at_exit.cc ('k') | gpu/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698