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

Side by Side Diff: content/content_tests.gypi

Issue 221993002: Split content_shell dependencies for layout tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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/content_shell.gypi ('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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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': 'layout_tests_support_content',
jam 2014/04/02 17:43:20 call this target layouttest_support_content to mat
Primiano Tucci (use gerrit) 2014/04/02 18:22:35 Done.
9 'type': 'static_library',
10 'conditions': [
11 ['OS=="android"', {
12 'dependencies': [
13 'layout_tests_support_content_jni_headers',
14 ],
15 }],
16 ],
17 'dependencies': [
18 '../skia/skia.gyp:skia',
19 '../v8/tools/gyp/v8.gyp:v8',
20 '../webkit/common/webkit_common.gyp:webkit_common',
21 ],
22 'include_dirs': [
23 '..',
24 ],
25 'sources': [
26 'public/test/layouttest_support.h',
27 'public/test/nested_message_pump_android.cc',
28 'public/test/nested_message_pump_android.h',
29 'shell/browser/shell_layout_tests_android.cc',
jam 2014/04/02 17:43:20 these two files in shell/ should be in content_she
Primiano Tucci (use gerrit) 2014/04/02 18:22:35 Done.
30 'shell/browser/shell_layout_tests_android.h',
31 'test/layouttest_support.cc',
32 'test/mock_webclipboard_impl.cc',
33 'test/mock_webclipboard_impl.h',
34 'test/test_media_stream_client.cc',
35 'test/test_media_stream_client.h',
36 ],
37 },
38 {
8 'target_name': 'test_support_content', 39 'target_name': 'test_support_content',
9 'type': 'static_library', 40 'type': 'static_library',
10 'dependencies': [ 41 'dependencies': [
11 '../net/net.gyp:net_test_support', 42 '../net/net.gyp:net_test_support',
12 '../skia/skia.gyp:skia', 43 '../skia/skia.gyp:skia',
13 '../testing/gmock.gyp:gmock', 44 '../testing/gmock.gyp:gmock',
14 '../testing/gtest.gyp:gtest', 45 '../testing/gtest.gyp:gtest',
15 '../ui/accessibility/accessibility.gyp:ax_gen', 46 '../ui/accessibility/accessibility.gyp:ax_gen',
16 '../ui/base/ui_base.gyp:ui_base', 47 '../ui/base/ui_base.gyp:ui_base',
17 '../ui/events/events.gyp:dom4_keycode_converter', 48 '../ui/events/events.gyp:dom4_keycode_converter',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 'public/test/mock_download_manager.cc', 82 'public/test/mock_download_manager.cc',
52 'public/test/mock_download_manager.h', 83 'public/test/mock_download_manager.h',
53 'public/test/mock_notification_observer.cc', 84 'public/test/mock_notification_observer.cc',
54 'public/test/mock_notification_observer.h', 85 'public/test/mock_notification_observer.h',
55 'public/test/mock_render_process_host.cc', 86 'public/test/mock_render_process_host.cc',
56 'public/test/mock_render_process_host.h', 87 'public/test/mock_render_process_host.h',
57 'public/test/mock_render_thread.cc', 88 'public/test/mock_render_thread.cc',
58 'public/test/mock_render_thread.h', 89 'public/test/mock_render_thread.h',
59 'public/test/mock_resource_context.cc', 90 'public/test/mock_resource_context.cc',
60 'public/test/mock_resource_context.h', 91 'public/test/mock_resource_context.h',
61 'public/test/nested_message_pump_android.cc',
62 'public/test/nested_message_pump_android.h',
63 'public/test/render_view_test.cc', 92 'public/test/render_view_test.cc',
64 'public/test/render_view_test.h', 93 'public/test/render_view_test.h',
65 'public/test/render_widget_test.cc', 94 'public/test/render_widget_test.cc',
66 'public/test/render_widget_test.h', 95 'public/test/render_widget_test.h',
67 'public/test/sandbox_file_system_test_helper.cc', 96 'public/test/sandbox_file_system_test_helper.cc',
68 'public/test/sandbox_file_system_test_helper.h', 97 'public/test/sandbox_file_system_test_helper.h',
69 'public/test/test_browser_context.cc', 98 'public/test/test_browser_context.cc',
70 'public/test/test_browser_context.h', 99 'public/test/test_browser_context.h',
71 'public/test/test_browser_thread.cc', 100 'public/test/test_browser_thread.cc',
72 'public/test/test_browser_thread.h', 101 'public/test/test_browser_thread.h',
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 ], 319 ],
291 }], 320 }],
292 ['OS!="android" and OS!="ios"', { 321 ['OS!="android" and OS!="ios"', {
293 'dependencies': [ 322 'dependencies': [
294 '../third_party/libvpx/libvpx.gyp:libvpx', 323 '../third_party/libvpx/libvpx.gyp:libvpx',
295 ], 324 ],
296 }], 325 }],
297 ['OS=="android"', { 326 ['OS=="android"', {
298 'dependencies': [ 327 'dependencies': [
299 '../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs', 328 '../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs',
300 'test_support_content_jni_headers',
301 ], 329 ],
302 }], 330 }],
303 ], 331 ],
304 }, 332 },
305 { 333 {
306 'target_name': 'content_unittests', 334 'target_name': 'content_unittests',
307 'type': '<(gtest_target_type)', 335 'type': '<(gtest_target_type)',
308 'dependencies': [ 336 'dependencies': [
309 'content.gyp:content_browser', 337 'content.gyp:content_browser',
310 'content.gyp:content_common', 338 'content.gyp:content_common',
(...skipping 1264 matching lines...) Expand 10 before | Expand all | Expand 10 after
1575 'test_suite_name': 'video_decode_accelerator_unittest', 1603 'test_suite_name': 'video_decode_accelerator_unittest',
1576 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)content_u nittests<(SHARED_LIB_SUFFIX)', 1604 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)content_u nittests<(SHARED_LIB_SUFFIX)',
1577 }, 1605 },
1578 'includes': [ '../build/apk_test.gypi' ], 1606 'includes': [ '../build/apk_test.gypi' ],
1579 }, 1607 },
1580 ], 1608 ],
1581 }], 1609 }],
1582 ['OS == "android"', { 1610 ['OS == "android"', {
1583 'targets': [ 1611 'targets': [
1584 { 1612 {
1585 'target_name': 'test_support_content_jni_headers', 1613 'target_name': 'layout_tests_support_content_jni_headers',
1586 'type': 'none', 1614 'type': 'none',
1587 'sources': [ 1615 'sources': [
1588 'public/test/android/javatests/src/org/chromium/content/browser/test /NestedSystemMessageHandler.java', 1616 'public/test/android/javatests/src/org/chromium/content/browser/test /NestedSystemMessageHandler.java',
1617 'shell/android/java/src/org/chromium/content_shell/ShellLayoutTestUt ils.java',
jam 2014/04/02 17:43:20 ditto: this should stay in content_shell's gypi
1589 ], 1618 ],
1590 'variables': { 1619 'variables': {
1591 'jni_gen_package': 'content/public/test', 1620 'jni_gen_package': 'content/public/test',
1592 'jni_generator_ptr_type': 'long', 1621 'jni_generator_ptr_type': 'long',
1593 }, 1622 },
1594 'includes': [ '../build/jni_generator.gypi' ], 1623 'includes': [ '../build/jni_generator.gypi' ],
1595 }, 1624 },
1596 { 1625 {
1597 'target_name': 'content_java_test_support', 1626 'target_name': 'content_java_test_support',
1598 'type': 'none', 1627 'type': 'none',
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
1772 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 1801 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
1773 }, 1802 },
1774 ], 1803 ],
1775 }], 1804 }],
1776 ], 1805 ],
1777 }, 1806 },
1778 ], 1807 ],
1779 }], 1808 }],
1780 ], 1809 ],
1781 } 1810 }
OLDNEW
« no previous file with comments | « content/content_shell.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698