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

Side by Side Diff: content/content_tests.gypi

Issue 10916334: Enable webgl conformance tests under content/test/gpu in content_browsertests (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fix the issue for android bot Created 8 years, 3 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
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': 'test_support_content', 8 'target_name': 'test_support_content',
9 'type': 'static_library', 9 'type': 'static_library',
10 'defines!': ['CONTENT_IMPLEMENTATION'], 10 'defines!': ['CONTENT_IMPLEMENTATION'],
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 '../ipc/ipc.gyp:test_support_ipc', 611 '../ipc/ipc.gyp:test_support_ipc',
612 '../net/net.gyp:net_test_support', 612 '../net/net.gyp:net_test_support',
613 '../ppapi/ppapi_internal.gyp:ppapi_host', 613 '../ppapi/ppapi_internal.gyp:ppapi_host',
614 '../ppapi/ppapi_internal.gyp:ppapi_proxy', 614 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
615 '../ppapi/ppapi_internal.gyp:ppapi_ipc', 615 '../ppapi/ppapi_internal.gyp:ppapi_ipc',
616 '../ppapi/ppapi_internal.gyp:ppapi_shared', 616 '../ppapi/ppapi_internal.gyp:ppapi_shared',
617 '../ppapi/ppapi_internal.gyp:ppapi_unittest_shared', 617 '../ppapi/ppapi_internal.gyp:ppapi_unittest_shared',
618 '../skia/skia.gyp:skia', 618 '../skia/skia.gyp:skia',
619 '../testing/gmock.gyp:gmock', 619 '../testing/gmock.gyp:gmock',
620 '../testing/gtest.gyp:gtest', 620 '../testing/gtest.gyp:gtest',
621 '../third_party/mesa/mesa.gyp:osmesa',
621 '../ui/ui.gyp:ui', 622 '../ui/ui.gyp:ui',
622 '../webkit/support/webkit_support.gyp:forms', 623 '../webkit/support/webkit_support.gyp:forms',
623 '../webkit/support/webkit_support.gyp:glue', 624 '../webkit/support/webkit_support.gyp:glue',
624 ], 625 ],
625 'include_dirs': [ 626 'include_dirs': [
626 '..', 627 '..',
627 ], 628 ],
629 'includes': [
630 'test/gpu/test_support_gpu.gypi',
631 ],
628 'defines': [ 632 'defines': [
629 'HAS_OUT_OF_PROC_TEST_RUNNER', 633 'HAS_OUT_OF_PROC_TEST_RUNNER',
630 ], 634 ],
631 'sources': [ 635 'sources': [
632 'browser/accessibility/cross_platform_accessibility_browsertest.cc', 636 'browser/accessibility/cross_platform_accessibility_browsertest.cc',
633 'browser/accessibility/dump_accessibility_tree_browsertest.cc', 637 'browser/accessibility/dump_accessibility_tree_browsertest.cc',
634 'browser/accessibility/dump_accessibility_tree_helper.cc', 638 'browser/accessibility/dump_accessibility_tree_helper.cc',
635 'browser/accessibility/dump_accessibility_tree_helper.h', 639 'browser/accessibility/dump_accessibility_tree_helper.h',
636 'browser/accessibility/dump_accessibility_tree_helper_mac.mm', 640 'browser/accessibility/dump_accessibility_tree_helper_mac.mm',
637 'browser/accessibility/dump_accessibility_tree_helper_win.cc', 641 'browser/accessibility/dump_accessibility_tree_helper_win.cc',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 'renderer/render_view_browsertest.cc', 677 'renderer/render_view_browsertest.cc',
674 'renderer/render_view_browsertest_mac.mm', 678 'renderer/render_view_browsertest_mac.mm',
675 'renderer/renderer_accessibility_browsertest.cc', 679 'renderer/renderer_accessibility_browsertest.cc',
676 'test/content_browser_test.h', 680 'test/content_browser_test.h',
677 'test/content_browser_test.cc', 681 'test/content_browser_test.cc',
678 'test/content_browser_test_utils.cc', 682 'test/content_browser_test_utils.cc',
679 'test/content_browser_test_utils.h', 683 'test/content_browser_test_utils.h',
680 'test/content_browser_test_utils_mac.mm', 684 'test/content_browser_test_utils_mac.mm',
681 'test/content_browser_test_test.cc', 685 'test/content_browser_test_test.cc',
682 'test/content_test_launcher.cc', 686 'test/content_test_launcher.cc',
687 'test/gpu/webgl_conformance_tests.cc',
688 'test/gpu/webgl_conformance_test_list_autogen.h',
683 'test/layout_browsertest.cc', 689 'test/layout_browsertest.cc',
684 'test/layout_browsertest.h', 690 'test/layout_browsertest.h',
685 'test/layout_test_http_server.cc', 691 'test/layout_test_http_server.cc',
686 'test/layout_test_http_server.h', 692 'test/layout_test_http_server.h',
687 ], 693 ],
688 'conditions': [ 694 'conditions': [
689 ['OS=="win"', { 695 ['OS=="win"', {
690 'resource_include_dirs': [ 696 'resource_include_dirs': [
691 '<(SHARED_INTERMEDIATE_DIR)/webkit', 697 '<(SHARED_INTERMEDIATE_DIR)/webkit',
692 ], 698 ],
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
909 '-buildfile', 915 '-buildfile',
910 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml', 916 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml',
911 ] 917 ]
912 } 918 }
913 ], 919 ],
914 }, 920 },
915 ], 921 ],
916 }], 922 }],
917 ], 923 ],
918 } 924 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698