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

Side by Side Diff: DEPS

Issue 6893080: NaCl: Pull in NaCl's integrated runtime (IRT) library via DEPS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 8 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 | build/download_nacl_irt.py » ('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": "84939", 7 "webkit_revision": "84939",
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 # These hashes need to be updated when nacl_revision is changed.
11 "nacl_irt_hash_x86_32": "22aa515c504417708751f081f4b4325c0cebb1c7",
12 "nacl_irt_hash_x86_64": "3f345b96ba52220f404140d73f75d5443818774a",
10 "nacl_revision": "5062", 13 "nacl_revision": "5062",
11 "nacl_tools_revision": "5025", 14 "nacl_tools_revision": "5025",
12 "libjingle_revision": "55", 15 "libjingle_revision": "55",
13 "libvpx_revision": "81610", 16 "libvpx_revision": "81610",
14 "ffmpeg_revision": "82962", 17 "ffmpeg_revision": "82962",
15 "skia_revision": "1144", 18 "skia_revision": "1144",
16 "v8_revision": "7673", 19 "v8_revision": "7673",
17 } 20 }
18 21
19 deps = { 22 deps = {
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 "v8", 352 "v8",
350 ] 353 ]
351 354
352 355
353 hooks = [ 356 hooks = [
354 { 357 {
355 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 358 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
356 "pattern": ".", 359 "pattern": ".",
357 "action": ["python", "src/build/gyp_chromium"], 360 "action": ["python", "src/build/gyp_chromium"],
358 }, 361 },
362 {
363 # This downloads binaries for Native Client's integrated runtime (IRT)
364 # library, which is built as NaCl untrusted code.
365 "pattern": ".",
366 "action": ["python", "src/build/download_nacl_irt.py",
Mark Mentovai 2011/04/28 18:41:16 What’s this about?
367 "--nacl_revision", Var("nacl_revision"),
368 "--file_hash", "x86_32", Var("nacl_irt_hash_x86_32"),
369 "--file_hash", "x86_64", Var("nacl_irt_hash_x86_64")],
370 },
359 ] 371 ]
OLDNEW
« no previous file with comments | « no previous file | build/download_nacl_irt.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698