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

Unified Diff: content/content_tests.gypi

Issue 23526028: Move source files from webkit/support to content/test (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix ios? Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/content_shell.gypi ('k') | content/shell/browser/shell_browser_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/content_tests.gypi
diff --git a/content/content_tests.gypi b/content/content_tests.gypi
index e86f89b22b410cd6db55524f7971d0f88e5bdf7b..bb2581c19cc5ae7439163a4a66202d1f92fb61d5 100644
--- a/content/content_tests.gypi
+++ b/content/content_tests.gypi
@@ -13,6 +13,7 @@
'../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',
@@ -114,6 +115,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 +127,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 +143,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 +163,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"
stuartmorgan 2013/09/11 14:41:29 Ideally this step shouldn't be done on iOS, since
+ 'copies': [{
+ 'destination': '<(PRODUCT_DIR)/DumpRenderTree_resources',
+ 'files': [
+ '../webkit/tools/test_shell/resources/missingImage.gif',
+ '../webkit/tools/test_shell/resources/textAreaResizeCorner.png',
stuartmorgan 2013/09/11 14:41:29 Consider a variable for this array, rather than du
tfarina 2013/09/11 21:51:56 not sure how this improves anything.
+ ],
+ }],
+ }],
['OS == "ios"', {
'sources/': [
# iOS only needs a small portion of content; exclude all the
@@ -182,10 +215,13 @@
'../third_party/WebKit/public/blink_test_runner.gyp:blink_test_runner',
'../ui/surface/surface.gyp:surface',
'../webkit/common/gpu/webkit_gpu.gyp:webkit_gpu',
+ '../webkit/common/user_agent/webkit_user_agent.gyp:user_agent',
'../webkit/renderer/compositor_bindings/compositor_bindings.gyp:webkit_compositor_support',
- '../webkit/support/webkit_support.gyp:webkit_support_common',
+ '../webkit/renderer/webkit_renderer.gyp:webkit_renderer',
'../webkit/storage_browser.gyp:webkit_storage_browser',
'../webkit/storage_common.gyp:webkit_storage_common',
+ '../webkit/support/webkit_support.gyp:glue',
+ '../webkit/support/webkit_support.gyp:glue_child',
],
}],
['OS == "win" or toolkit_uses_gtk == 1', {
@@ -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': [
'..',
« no previous file with comments | « content/content_shell.gypi ('k') | content/shell/browser/shell_browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698