diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-21 03:43:39 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-21 03:43:39 +0000 |
commit | a19c9b67f33da94fa5116966e5730fd6efd50005 (patch) | |
tree | ddfb7f14f03f23fa342d6eecc51af22c02a6ec27 /DEPS | |
parent | f4452670c8ca44c6c478997167e030b49500ed83 (diff) | |
download | chromium_src-a19c9b67f33da94fa5116966e5730fd6efd50005.zip chromium_src-a19c9b67f33da94fa5116966e5730fd6efd50005.tar.gz chromium_src-a19c9b67f33da94fa5116966e5730fd6efd50005.tar.bz2 |
Add gpu/ files from the public skia project into the chrome build. This is in
preparation for experimenting with them to gpu-accelerate various aspects of
chrome's drawing. In this initial patch, the files will be built, but not
called.
Now with dependency on gpu lib for sharedlib build on linux
TEST=be sure that page rendering, and <canvas> rendering, look the same as before
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=71998
Review URL: http://codereview.chromium.org/6357006
Patch from Mike Reed <reed@google.com>.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72103 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'DEPS')
-rw-r--r-- | DEPS | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -11,7 +11,7 @@ vars = { "libjingle_revision": "50", "libvpx_revision": "65287", "ffmpeg_revision": "71842", - "skia_revision": "699", + "skia_revision": "716", } deps = { @@ -66,6 +66,9 @@ deps = { Var("nacl_trunk") + "/src/native_client/tests/prebuilt@" + Var("nacl_revision"), + "src/third_party/skia/gpu": + (Var("googlecode_url") % "skia") + "/trunk/gpu@" + Var("skia_revision"), + "src/third_party/skia/src": (Var("googlecode_url") % "skia") + "/trunk/src@" + Var("skia_revision"), |