diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-02 16:05:55 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-02 16:05:55 +0000 |
commit | 572b77fa3c3a24276dd567f8305cff9fef5195eb (patch) | |
tree | 666d92ac3acfb007f16af2dc5f9f41f38303c379 /chrome | |
parent | 27c6115d06c4abf1f30d923202db07cf8a71b2cd (diff) | |
download | chromium_src-572b77fa3c3a24276dd567f8305cff9fef5195eb.zip chromium_src-572b77fa3c3a24276dd567f8305cff9fef5195eb.tar.gz chromium_src-572b77fa3c3a24276dd567f8305cff9fef5195eb.tar.bz2 |
Revert PPAPI change due to Linux compile failures.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64751 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/chrome.gyp | 2 | ||||
-rw-r--r-- | chrome/chrome_tests.gypi | 2 | ||||
-rw-r--r-- | chrome/renderer/DEPS | 1 | ||||
-rw-r--r-- | chrome/renderer/pepper_plugin_delegate_impl.cc | 2 | ||||
-rw-r--r-- | chrome/renderer/pepper_plugin_delegate_impl.h | 2 | ||||
-rw-r--r-- | chrome/test/ui/ppapi_uitest.cc | 1 |
6 files changed, 5 insertions, 5 deletions
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index 20742a1..47d1cd9 100644 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -1621,7 +1621,6 @@ '../ipc/ipc.gyp:*', '../media/media.gyp:*', '../net/net.gyp:*', - '../ppapi/ppapi.gyp:*', '../printing/printing.gyp:*', '../sdch/sdch.gyp:*', '../skia/skia.gyp:*', @@ -1639,6 +1638,7 @@ '../third_party/lzma_sdk/lzma_sdk.gyp:*', '../third_party/modp_b64/modp_b64.gyp:*', '../third_party/npapi/npapi.gyp:*', + '../third_party/ppapi/ppapi.gyp:*', '../third_party/sqlite/sqlite.gyp:*', '../third_party/zlib/zlib.gyp:*', '../webkit/support/webkit_support.gyp:*', diff --git a/chrome/chrome_tests.gypi b/chrome/chrome_tests.gypi index e165f41..0556402 100644 --- a/chrome/chrome_tests.gypi +++ b/chrome/chrome_tests.gypi @@ -458,7 +458,7 @@ # run time dependencies 'chrome_mesa', 'default_plugin/default_plugin.gyp:default_plugin', - '../ppapi/ppapi.gyp:ppapi_tests', + '../third_party/ppapi/ppapi.gyp:ppapi_tests', '../webkit/support/webkit_support.gyp:copy_npapi_layout_test_plugin', ], 'include_dirs': [ diff --git a/chrome/renderer/DEPS b/chrome/renderer/DEPS index 99df536..b7bf978 100644 --- a/chrome/renderer/DEPS +++ b/chrome/renderer/DEPS @@ -7,7 +7,6 @@ include_rules = [ "+media/ffmpeg", "+media/filters", "+media/video", - "+ppapi/c", "+sandbox/src", "+skia/include", "+webkit/extensions", diff --git a/chrome/renderer/pepper_plugin_delegate_impl.cc b/chrome/renderer/pepper_plugin_delegate_impl.cc index b8ab08d..ecaf0e4 100644 --- a/chrome/renderer/pepper_plugin_delegate_impl.cc +++ b/chrome/renderer/pepper_plugin_delegate_impl.cc @@ -25,7 +25,7 @@ #include "chrome/renderer/render_view.h" #include "chrome/renderer/webplugin_delegate_proxy.h" #include "grit/locale_settings.h" -#include "ppapi/c/dev/pp_video_dev.h" +#include "third_party/ppapi/c/dev/pp_video_dev.h" #include "third_party/WebKit/WebKit/chromium/public/WebFileChooserCompletion.h" #include "third_party/WebKit/WebKit/chromium/public/WebFileChooserParams.h" #include "third_party/WebKit/WebKit/chromium/public/WebPluginContainer.h" diff --git a/chrome/renderer/pepper_plugin_delegate_impl.h b/chrome/renderer/pepper_plugin_delegate_impl.h index 90c659a..a1fb6a0 100644 --- a/chrome/renderer/pepper_plugin_delegate_impl.h +++ b/chrome/renderer/pepper_plugin_delegate_impl.h @@ -12,7 +12,7 @@ #include "base/basictypes.h" #include "base/id_map.h" #include "base/weak_ptr.h" -#include "ppapi/c/pp_errors.h" +#include "third_party/ppapi/c/pp_errors.h" #include "webkit/glue/plugins/pepper_plugin_delegate.h" #include "webkit/glue/plugins/pepper_plugin_instance.h" diff --git a/chrome/test/ui/ppapi_uitest.cc b/chrome/test/ui/ppapi_uitest.cc index 36eeab8..195c5e0 100644 --- a/chrome/test/ui/ppapi_uitest.cc +++ b/chrome/test/ui/ppapi_uitest.cc @@ -57,6 +57,7 @@ class PPAPITest : public UITest { void RunTest(const std::string& test_case) { FilePath test_path; PathService::Get(base::DIR_SOURCE_ROOT, &test_path); + test_path = test_path.Append(FILE_PATH_LITERAL("third_party")); test_path = test_path.Append(FILE_PATH_LITERAL("ppapi")); test_path = test_path.Append(FILE_PATH_LITERAL("tests")); test_path = test_path.Append(FILE_PATH_LITERAL("test_case.html")); |