diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-30 23:29:50 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-30 23:29:50 +0000 |
commit | 4a04889139472080d9be371c2c0f618c4da4e7a0 (patch) | |
tree | 56aa5d18e5e77b6248bd7293f7b43f2f95c713d0 /cc/cc_tests.gyp | |
parent | fe9d2edcd0ca528f1489fdb2df7ba5b9563f5f60 (diff) | |
download | chromium_src-4a04889139472080d9be371c2c0f618c4da4e7a0.zip chromium_src-4a04889139472080d9be371c2c0f618c4da4e7a0.tar.gz chromium_src-4a04889139472080d9be371c2c0f618c4da4e7a0.tar.bz2 |
Remove WebKit::Platform dependencies from cc
This removes all dependencies on the static WebKit::Platform pointer from cc.
The biggest change is implementing cc::Thread on top of base::MessageLoopProxy
instead of WebKit::WebThread. For the main thread cc::Thread simply binds to
the current thread's MessageLoopProxy. For the impl thread, the bindings layer
(specifically webkit/compositor_bindings/web_compositor_impl) extracts the
MessageLoopProxy out of the passed in WebThread.
BUG=144539
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=165050
Review URL: https://codereview.chromium.org/11344004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165060 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/cc_tests.gyp')
-rw-r--r-- | cc/cc_tests.gyp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/cc/cc_tests.gyp b/cc/cc_tests.gyp index 1c48219..26fb00a 100644 --- a/cc/cc_tests.gyp +++ b/cc/cc_tests.gyp @@ -39,9 +39,7 @@ 'scrollbar_animation_controller_linear_fade_unittest.cc', 'solid_color_layer_impl_unittest.cc', 'resource_update_controller_unittest.cc', - 'thread_task_unittest.cc', 'tiled_layer_impl_unittest.cc', - 'timer_unittest.cc', 'content_layer_unittest.cc', 'float_quad_unittest.cc', 'layer_unittest.cc', @@ -79,7 +77,6 @@ 'test/test_common.h', 'test/tiled_layer_test_common.cc', 'test/tiled_layer_test_common.h', - 'test/web_compositor_initializer.h', ], }, 'targets': [ @@ -132,13 +129,9 @@ '../third_party/WebKit/Source/WTF/WTF.gyp/WTF.gyp:wtf', '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit_wtf_support', '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', - '../webkit/compositor_bindings/compositor_bindings.gyp:webkit_compositor_support', - '../webkit/support/webkit_support.gyp:glue', ], 'sources': [ '<@(cc_tests_support_files)', - 'test/test_webkit_platform.cc', - 'test/test_webkit_platform.h', ], }, ], |