Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(259)

Side by Side Diff: DEPS

Issue 8268006: Roll skia to r2478 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | skia/skia.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 vars = { 1 vars = {
2 # Use this googlecode_url variable only if there is an internal mirror for it. 2 # Use this googlecode_url variable only if there is an internal mirror for it.
3 # If you do not know, use the full path while defining your new deps entry. 3 # If you do not know, use the full path while defining your new deps entry.
4 "googlecode_url": "http://%s.googlecode.com/svn", 4 "googlecode_url": "http://%s.googlecode.com/svn",
5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", 5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk",
6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", 6 "nacl_trunk": "http://src.chromium.org/native_client/trunk",
7 "webkit_revision": "97352", 7 "webkit_revision": "97352",
8 "chromium_git": "http://git.chromium.org/git", 8 "chromium_git": "http://git.chromium.org/git",
9 "swig_revision": "69281", 9 "swig_revision": "69281",
10 "nacl_revision": "6909", 10 "nacl_revision": "6909",
(...skipping 11 matching lines...) Expand all
22 "nacl_toolchain_win_x86_newlib_hash": 22 "nacl_toolchain_win_x86_newlib_hash":
23 "7730f4515c745c0c012df4a1080be9a46ffcda47", 23 "7730f4515c745c0c012df4a1080be9a46ffcda47",
24 "nacl_toolchain_linux_x86_newlib_hash": 24 "nacl_toolchain_linux_x86_newlib_hash":
25 "596aa5b812ec4b24160ed7ce55b3fd141f929fbf", 25 "596aa5b812ec4b24160ed7ce55b3fd141f929fbf",
26 "nacl_toolchain_revision": "6757", 26 "nacl_toolchain_revision": "6757",
27 27
28 "libjingle_revision": "85", 28 "libjingle_revision": "85",
29 "libvpx_revision": "103347", 29 "libvpx_revision": "103347",
30 "ffmpeg_revision": "105133", 30 "ffmpeg_revision": "105133",
31 "sfntly_revision": "98", 31 "sfntly_revision": "98",
32 "skia_revision": "2465", 32 "skia_revision": "2478",
33 "v8_revision": "9442", 33 "v8_revision": "9442",
34 "webrtc_revision": "711", 34 "webrtc_revision": "711",
35 35
36 # Note: On most bots, clang is not checked out via DEPS but by 36 # Note: On most bots, clang is not checked out via DEPS but by
37 # tools/clang/scripts/update.sh. The script reads this line here. 37 # tools/clang/scripts/update.sh. The script reads this line here.
38 # Do NOT CHANGE this if you don't know what you're doing -- see 38 # Do NOT CHANGE this if you don't know what you're doing -- see
39 # http://code.google.com/p/chromium/wiki/UpdatingClang 39 # http://code.google.com/p/chromium/wiki/UpdatingClang
40 "clang_revision": "140930", 40 "clang_revision": "140930",
41 } 41 }
42 42
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"), 107 Var("nacl_trunk") + "/src/native_client@" + Var("nacl_revision"),
108 108
109 "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin": 109 "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin":
110 Var("nacl_trunk") + "/src/native_client/tests/prebuilt@" + 110 Var("nacl_trunk") + "/src/native_client/tests/prebuilt@" +
111 Var("nacl_revision"), 111 Var("nacl_revision"),
112 112
113 "src/third_party/sfntly/src/sfntly": 113 "src/third_party/sfntly/src/sfntly":
114 (Var("googlecode_url") % "sfntly") + "/trunk/cpp/src/sfntly@" + 114 (Var("googlecode_url") % "sfntly") + "/trunk/cpp/src/sfntly@" +
115 Var("sfntly_revision"), 115 Var("sfntly_revision"),
116 116
117 "src/third_party/skia/gpu":
118 (Var("googlecode_url") % "skia") + "/trunk/gpu@" + Var("skia_revision"),
119
120 "src/third_party/skia/src": 117 "src/third_party/skia/src":
121 (Var("googlecode_url") % "skia") + "/trunk/src@" + Var("skia_revision"), 118 (Var("googlecode_url") % "skia") + "/trunk/src@" + Var("skia_revision"),
122 119
123 "src/third_party/skia/include": 120 "src/third_party/skia/include":
124 (Var("googlecode_url") % "skia") + "/trunk/include@" + Var("skia_revision"), 121 (Var("googlecode_url") % "skia") + "/trunk/include@" + Var("skia_revision"),
125 122
126 "src/third_party/skia/third_party/glu": 123 "src/third_party/skia/third_party/glu":
127 (Var("googlecode_url") % "skia") + "/trunk/third_party/glu@" + Var("skia_rev ision"), 124 (Var("googlecode_url") % "skia") + "/trunk/third_party/glu@" + Var("skia_rev ision"),
128 125
129 "src/third_party/WebKit/LayoutTests": 126 "src/third_party/WebKit/LayoutTests":
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 # which takes ~20s, but clang speeds up builds by more than 20s. 434 # which takes ~20s, but clang speeds up builds by more than 20s.
438 "pattern": ".", 435 "pattern": ".",
439 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], 436 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"],
440 }, 437 },
441 { 438 {
442 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 439 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
443 "pattern": ".", 440 "pattern": ".",
444 "action": ["python", "src/build/gyp_chromium"], 441 "action": ["python", "src/build/gyp_chromium"],
445 }, 442 },
446 ] 443 ]
OLDNEW
« no previous file with comments | « no previous file | skia/skia.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698