Chromium Code Reviews| Index: content/content_tests.gypi |
| diff --git a/content/content_tests.gypi b/content/content_tests.gypi |
| index e86f89b22b410cd6db55524f7971d0f88e5bdf7b..5311e8f69aa83c30cf461ab6e3e0730d946fb0b9 100644 |
| --- a/content/content_tests.gypi |
| +++ b/content/content_tests.gypi |
| @@ -13,9 +13,14 @@ |
| '../skia/skia.gyp:skia', |
| '../testing/gmock.gyp:gmock', |
| '../testing/gtest.gyp:gtest', |
| + '../ui/ui.gyp:ui', |
| '../ui/ui.gyp:ui_resources', |
| '../ui/ui.gyp:ui_test_support', |
| '../url/url.gyp:url_lib', |
| + '../webkit/common/user_agent/webkit_user_agent.gyp:user_agent', |
| + '../webkit/renderer/webkit_renderer.gyp:webkit_renderer', |
| + '../webkit/support/webkit_support.gyp:glue', |
| + '../webkit/support/webkit_support.gyp:glue_child', |
|
stuartmorgan
2013/09/10 23:04:44
These webkit deps...
|
| 'content_app_both', |
| 'content_browser', |
| 'content_common', |
| @@ -114,6 +119,10 @@ |
| 'test/mock_keyboard_driver_win.h', |
| 'test/mock_render_process.cc', |
| 'test/mock_render_process.h', |
| + 'test/mock_webclipboard_impl.cc', |
| + 'test/mock_webclipboard_impl.h', |
| + 'test/net/url_request_abort_on_end_job.cc', |
| + 'test/net/url_request_abort_on_end_job.h', |
| 'test/net/url_request_failed_job.cc', |
| 'test/net/url_request_failed_job.h', |
| 'test/net/url_request_mock_http_job.cc', |
| @@ -122,8 +131,6 @@ |
| 'test/net/url_request_prepackaged_interceptor.h', |
| 'test/net/url_request_slow_download_job.cc', |
| 'test/net/url_request_slow_download_job.h', |
| - 'test/net/url_request_abort_on_end_job.cc', |
| - 'test/net/url_request_abort_on_end_job.h', |
| 'test/ppapi_unittest.cc', |
| 'test/ppapi_unittest.h', |
| 'test/test_content_browser_client.cc', |
| @@ -140,6 +147,19 @@ |
| 'test/test_web_contents.h', |
| 'test/test_web_contents_view.cc', |
| 'test/test_web_contents_view.h', |
| + 'test/test_webkit_platform_support.cc', |
| + 'test/test_webkit_platform_support.h', |
| + 'test/web_gesture_curve_mock.cc', |
| + 'test/web_gesture_curve_mock.h', |
| + 'test/web_layer_tree_view_impl_for_testing.cc', |
| + 'test/web_layer_tree_view_impl_for_testing.h', |
| + 'test/webkit_support.cc', |
| + 'test/webkit_support.h', |
| + 'test/webkit_support_glue.cc', |
| + 'test/weburl_loader_mock.cc', |
| + 'test/weburl_loader_mock.h', |
| + 'test/weburl_loader_mock_factory.cc', |
| + 'test/weburl_loader_mock_factory.h', |
| # TODO(phajdan.jr): Those files should be moved to webkit |
| # test support target. |
| @@ -147,6 +167,23 @@ |
| '../webkit/browser/appcache/appcache_test_helper.h', |
| ], |
| 'conditions': [ |
| + ['OS=="mac"', { |
| + 'copies': [{ |
| + 'destination': '<(SHARED_INTERMEDIATE_DIR)/webkit', |
| + 'files': [ |
| + '../webkit/tools/test_shell/resources/missingImage.png', |
| + '../webkit/tools/test_shell/resources/textAreaResizeCorner.png', |
| + ], |
| + }], |
| + },{ # OS!="mac" |
| + 'copies': [{ |
| + 'destination': '<(PRODUCT_DIR)/DumpRenderTree_resources', |
| + 'files': [ |
| + '../webkit/tools/test_shell/resources/missingImage.gif', |
| + '../webkit/tools/test_shell/resources/textAreaResizeCorner.png', |
| + ], |
| + }], |
| + }], |
| ['OS == "ios"', { |
| 'sources/': [ |
| # iOS only needs a small portion of content; exclude all the |
| @@ -183,7 +220,6 @@ |
| '../ui/surface/surface.gyp:surface', |
| '../webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', |
| '../webkit/renderer/compositor_bindings/compositor_bindings.gyp:webkit_compositor_support', |
| - '../webkit/support/webkit_support.gyp:webkit_support_common', |
| '../webkit/storage_browser.gyp:webkit_storage_browser', |
| '../webkit/storage_common.gyp:webkit_storage_common', |
|
stuartmorgan
2013/09/10 23:04:44
... need to go here.
|
| ], |
| @@ -1059,7 +1095,7 @@ |
| 'target_name': 'content_webkit_unit_test_support', |
| 'type': 'static_library', |
| 'dependencies': [ |
| - '../webkit/support/webkit_support.gyp:webkit_support', |
| + 'test_support_content', |
| ], |
| 'include_dirs': [ |
| '..', |