diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-30 22:59:56 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-30 22:59:56 +0000 |
commit | e5e9c02081e6b37f49febeba87863a1dac598949 (patch) | |
tree | 3e2c4fcd2926cc064fd7937e3cdee49e9ef62fd6 /cc/cc_tests.gyp | |
parent | 760d9886b9d56182f6c91944e06f250df6677d33 (diff) | |
download | chromium_src-e5e9c02081e6b37f49febeba87863a1dac598949.zip chromium_src-e5e9c02081e6b37f49febeba87863a1dac598949.tar.gz chromium_src-e5e9c02081e6b37f49febeba87863a1dac598949.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
Review URL: https://codereview.chromium.org/11344004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165050 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/cc_tests.gyp')
-rw-r--r-- | cc/cc_tests.gyp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cc/cc_tests.gyp b/cc/cc_tests.gyp index 1c48219..b4ef116 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', @@ -132,13 +130,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', ], }, ], |