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

Side by Side Diff: DEPS

Issue 7848010: Add a copy of the SMHasher library. MurmurHash3 will be used by SafeBrowsing phishing detection. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 9 years, 3 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 | third_party/smhasher/LICENSE » ('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": "94807", 7 "webkit_revision": "94807",
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": "6641", 10 "nacl_revision": "6641",
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"), 266 Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"),
267 "src/third_party/scons-2.0.1": 267 "src/third_party/scons-2.0.1":
268 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" + 268 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" +
269 Var("nacl_tools_revision"), 269 Var("nacl_tools_revision"),
270 270
271 "src/third_party/webrtc": 271 "src/third_party/webrtc":
272 (Var("googlecode_url") % "webrtc") + "/trunk/src@" + Var("webrtc_revision"), 272 (Var("googlecode_url") % "webrtc") + "/trunk/src@" + Var("webrtc_revision"),
273 273
274 "src/third_party/mozc/session": 274 "src/third_party/mozc/session":
275 (Var("googlecode_url") % "mozc") + "/trunk/src/session@58", 275 (Var("googlecode_url") % "mozc") + "/trunk/src/session@58",
276
277 "src/third_party/smhasher/src":
278 "http://smhasher.googlecode.com/svn/trunk@136",
276 } 279 }
277 280
278 281
279 deps_os = { 282 deps_os = {
280 "win": { 283 "win": {
281 "src/chrome/tools/test/reference_build/chrome_win": 284 "src/chrome/tools/test/reference_build/chrome_win":
282 "/trunk/deps/reference_builds/chrome_win@89574", 285 "/trunk/deps/reference_builds/chrome_win@89574",
283 286
284 "src/third_party/cygwin": 287 "src/third_party/cygwin":
285 "/trunk/deps/third_party/cygwin@66844", 288 "/trunk/deps/third_party/cygwin@66844",
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 # which takes ~20s, but clang speeds up builds by more than 20s. 431 # which takes ~20s, but clang speeds up builds by more than 20s.
429 "pattern": ".", 432 "pattern": ".",
430 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], 433 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"],
431 }, 434 },
432 { 435 {
433 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 436 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
434 "pattern": ".", 437 "pattern": ".",
435 "action": ["python", "src/build/gyp_chromium"], 438 "action": ["python", "src/build/gyp_chromium"],
436 }, 439 },
437 ] 440 ]
OLDNEW
« no previous file with comments | « no previous file | third_party/smhasher/LICENSE » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698