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

Side by Side Diff: content/content_tests.gypi

Issue 11362161: Use the WebTestProxy for layout tests in content_shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: version that doesn't expose RenderViewImpl in public API Created 8 years, 1 month 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 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 '../third_party/libvpx/libvpx.gyp:libvpx', 591 '../third_party/libvpx/libvpx.gyp:libvpx',
592 ], 592 ],
593 }], 593 }],
594 ['OS == "android" and gtest_target_type == "shared_library"', { 594 ['OS == "android" and gtest_target_type == "shared_library"', {
595 'dependencies': [ 595 'dependencies': [
596 '../testing/android/native_test.gyp:native_test_native_code', 596 '../testing/android/native_test.gyp:native_test_native_code',
597 ], 597 ],
598 }], 598 }],
599 ], 599 ],
600 }, 600 },
601 {
602 'target_name': 'content_layouttest_support',
603 'conditions': [
604 ['component=="shared_library" or OS=="ios"', {
605 'type': 'none',
606 }, {
607 'type': 'static_library',
608 'variables': {
609 'chromium_code': 1,
610 },
611 'dependencies': [
612 'content_renderer',
613 '<(webkit_src_dir)/Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRende rTree.gyp:TestRunner',
614 ],
615 'include_dirs': [
616 '..',
617 ],
618 'sources': [
619 'public/test/content_layouttest_support.h',
620 'test/content_layouttest_support.cc',
621 ],
622 }],
623 ],
624 },
601 ], 625 ],
602 'conditions': [ 626 'conditions': [
603 ['OS!="ios"', { 627 ['OS!="ios"', {
604 'targets': [ 628 'targets': [
605 { 629 {
606 'target_name': 'content_browsertests', 630 'target_name': 'content_browsertests',
607 'type': 'executable', 631 'type': 'executable',
608 'defines!': ['CONTENT_IMPLEMENTATION'], 632 'defines!': ['CONTENT_IMPLEMENTATION'],
609 'dependencies': [ 633 'dependencies': [
610 'content_common', 634 'content_common',
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
922 'java_in_dir': '../content/shell/android/javatests', 946 'java_in_dir': '../content/shell/android/javatests',
923 'resource_dir': '../res', 947 'resource_dir': '../res',
924 'additional_src_dirs': ['../content/public/android/javatests/'], 948 'additional_src_dirs': ['../content/public/android/javatests/'],
925 }, 949 },
926 'includes': [ '../build/java_apk.gypi' ], 950 'includes': [ '../build/java_apk.gypi' ],
927 }, 951 },
928 ], 952 ],
929 }], 953 }],
930 ], 954 ],
931 } 955 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698