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

Side by Side Diff: content/content_tests.gypi

Issue 10834034: Move accessibility browser tests to content_browsertests. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 4 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 | « content/browser/accessibility/dump_accessibility_tree_browsertest.cc ('k') | 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 '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 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 '../ui/ui.gyp:ui', 543 '../ui/ui.gyp:ui',
544 '../webkit/support/webkit_support.gyp:glue', 544 '../webkit/support/webkit_support.gyp:glue',
545 ], 545 ],
546 'include_dirs': [ 546 'include_dirs': [
547 '..', 547 '..',
548 ], 548 ],
549 'defines': [ 549 'defines': [
550 'HAS_OUT_OF_PROC_TEST_RUNNER', 550 'HAS_OUT_OF_PROC_TEST_RUNNER',
551 ], 551 ],
552 'sources': [ 552 'sources': [
553 'browser/accessibility/cross_platform_accessibility_browsertest.cc',
554 'browser/accessibility/dump_accessibility_tree_browsertest.cc',
555 'browser/accessibility/dump_accessibility_tree_helper.cc',
556 'browser/accessibility/dump_accessibility_tree_helper.h',
557 'browser/accessibility/dump_accessibility_tree_helper_mac.mm',
558 'browser/accessibility/dump_accessibility_tree_helper_win.cc',
553 'browser/appcache/appcache_browsertest.cc', 559 'browser/appcache/appcache_browsertest.cc',
554 'browser/audio_browsertest.cc', 560 'browser/audio_browsertest.cc',
555 'browser/child_process_security_policy_browsertest.cc', 561 'browser/child_process_security_policy_browsertest.cc',
556 'browser/device_orientation/device_orientation_browsertest.cc', 562 'browser/device_orientation/device_orientation_browsertest.cc',
557 'browser/dom_storage/dom_storage_browsertest.cc', 563 'browser/dom_storage/dom_storage_browsertest.cc',
558 'browser/download/mhtml_generation_browsertest.cc', 564 'browser/download/mhtml_generation_browsertest.cc',
559 'browser/fileapi/file_system_browsertest.cc', 565 'browser/fileapi/file_system_browsertest.cc',
560 'browser/in_process_webkit/indexed_db_layout_browsertest.cc', 566 'browser/in_process_webkit/indexed_db_layout_browsertest.cc',
561 'browser/media_browsertest.cc', 567 'browser/media_browsertest.cc',
562 'browser/plugin_browsertest.cc', 568 'browser/plugin_browsertest.cc',
(...skipping 28 matching lines...) Expand all
591 # their various targets (net.gyp:net_resources, etc.), 597 # their various targets (net.gyp:net_resources, etc.),
592 # but that causes errors in other targets when 598 # but that causes errors in other targets when
593 # resulting .res files get referenced multiple times. 599 # resulting .res files get referenced multiple times.
594 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.rc', 600 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.rc',
595 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_chromium_resources.rc', 601 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_chromium_resources.rc',
596 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources.rc', 602 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_resources.rc',
597 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_en-US.rc', 603 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_en-US.rc',
598 ], 604 ],
599 'dependencies': [ 605 'dependencies': [
600 '<(DEPTH)/net/net.gyp:net_resources', 606 '<(DEPTH)/net/net.gyp:net_resources',
607 '<(DEPTH)/third_party/iaccessible2/iaccessible2.gyp:iaccessible2',
601 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_resources', 608 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_resources',
602 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_strings', 609 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_strings',
603 ], 610 ],
604 'configurations': { 611 'configurations': {
605 'Debug_Base': { 612 'Debug_Base': {
606 'msvs_settings': { 613 'msvs_settings': {
607 'VCLinkerTool': { 614 'VCLinkerTool': {
608 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', 615 'LinkIncremental': '<(msvs_large_module_debug_link_mode)',
609 }, 616 },
610 }, 617 },
611 }, 618 },
612 }, 619 },
613 }], 620 }],
614 ['OS=="win" and win_use_allocator_shim==1', { 621 ['OS=="win" and win_use_allocator_shim==1', {
615 'dependencies': [ 622 'dependencies': [
616 '../base/allocator/allocator.gyp:allocator', 623 '../base/allocator/allocator.gyp:allocator',
617 ], 624 ],
618 }], 625 }],
626 ['OS=="linux"', {
627 'sources!': [
628 'browser/accessibility/dump_accessibility_tree_browsertest.cc',
629 'browser/accessibility/dump_accessibility_tree_helper.cc',
630 ],
631 }],
619 ['OS=="mac"', { 632 ['OS=="mac"', {
620 'dependencies': [ 633 'dependencies': [
621 'content_shell', # Needed for Content Shell.app's Helper. 634 'content_shell', # Needed for Content Shell.app's Helper.
622 ], 635 ],
623 }], 636 }],
624 ['use_aura==1', { 637 ['use_aura==1', {
625 'sources!': [ 638 'sources!': [
639 'browser/accessibility/dump_accessibility_tree_browsertest.cc',
640 'browser/accessibility/dump_accessibility_tree_helper_win.cc',
641 'browser/accessibility/dump_accessibility_tree_helper.cc',
626 'browser/plugin_browsertest.cc', 642 'browser/plugin_browsertest.cc',
627 ], 643 ],
628 }], 644 }],
629 ['target_arch!="arm"', { 645 ['target_arch!="arm"', {
630 'dependencies': [ 646 'dependencies': [
631 # Runtime dependencies 647 # Runtime dependencies
632 '../webkit/webkit.gyp:copy_npapi_test_plugin', 648 '../webkit/webkit.gyp:copy_npapi_test_plugin',
633 '../webkit/webkit.gyp:pull_in_copy_TestNetscapePlugIn', 649 '../webkit/webkit.gyp:pull_in_copy_TestNetscapePlugIn',
634 ], 650 ],
635 }], 651 }],
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', 752 '<(PRODUCT_DIR)/lib.java/chromium_content.jar',
737 '<(PRODUCT_DIR)/lib.java/chromium_net.jar', 753 '<(PRODUCT_DIR)/lib.java/chromium_net.jar',
738 ], 754 ],
739 }, 755 },
740 'includes': [ '../build/apk_test.gypi' ], 756 'includes': [ '../build/apk_test.gypi' ],
741 }, 757 },
742 ], 758 ],
743 }], 759 }],
744 ], 760 ],
745 } 761 }
OLDNEW
« no previous file with comments | « content/browser/accessibility/dump_accessibility_tree_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698