diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-18 01:50:31 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-18 01:50:31 +0000 |
commit | 9ca245e3b2d0e2271c7124d3aceb8179903718e2 (patch) | |
tree | aa5fdbad23bd9a91cb117c1610064242d8a00985 /ppapi/ppapi_shared_proxy.gypi | |
parent | a2f013ebcd62eae5238ca4ee84b9d21e34197fd8 (diff) | |
download | chromium_src-9ca245e3b2d0e2271c7124d3aceb8179903718e2.zip chromium_src-9ca245e3b2d0e2271c7124d3aceb8179903718e2.tar.gz chromium_src-9ca245e3b2d0e2271c7124d3aceb8179903718e2.tar.bz2 |
Implement a proxy for URL util. Some of the implementation that doesn't need to
be proxied moved into a new shared_impl file, which required a decent amount of
glue to make it callable from both the implementation and the proxy. The payoff
here is only marginal since the code is fairly simple, but I decided this is
still better than duplication.
This also includes some comments from my audio patch that I forgot in that CL.
BUG=none
TEST=ppapi_tests run out of process pass
Review URL: http://codereview.chromium.org/6676045
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78646 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/ppapi_shared_proxy.gypi')
-rw-r--r-- | ppapi/ppapi_shared_proxy.gypi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ppapi/ppapi_shared_proxy.gypi b/ppapi/ppapi_shared_proxy.gypi index 84f92b5..3915647 100644 --- a/ppapi/ppapi_shared_proxy.gypi +++ b/ppapi/ppapi_shared_proxy.gypi @@ -10,6 +10,7 @@ 'dependencies': [ 'ppapi_c', '../base/base.gyp:base', + '../build/temp_gyp/googleurl.gyp:googleurl', '../skia/skia.gyp:skia', '../third_party/icu/icu.gyp:icuuc', ], @@ -23,6 +24,8 @@ 'shared_impl/char_set_impl.h', 'shared_impl/image_data_impl.cc', 'shared_impl/image_data_impl.h', + 'shared_impl/url_util_impl.cc', + 'shared_impl/url_util_impl.h', ], 'conditions': [ ['OS=="win"', { @@ -132,6 +135,8 @@ 'proxy/ppb_url_request_info_proxy.h', 'proxy/ppb_url_response_info_proxy.cc', 'proxy/ppb_url_response_info_proxy.h', + 'proxy/ppb_url_util_proxy.cc', + 'proxy/ppb_url_util_proxy.h', 'proxy/ppb_var_deprecated_proxy.cc', 'proxy/ppb_var_deprecated_proxy.h', 'proxy/ppp_class_proxy.cc', |