OLD | NEW |
1 # When adding a new dependency, please update the top-level .gitignore file | 1 # When adding a new dependency, please update the top-level .gitignore file |
2 # to list the dependency's destination directory. | 2 # to list the dependency's destination directory. |
3 | 3 |
4 vars = { | 4 vars = { |
5 # Use this googlecode_url variable only if there is an internal mirror for it. | 5 # Use this googlecode_url variable only if there is an internal mirror for it. |
6 # If you do not know, use the full path while defining your new deps entry. | 6 # If you do not know, use the full path while defining your new deps entry. |
7 "googlecode_url": "http://%s.googlecode.com/svn", | 7 "googlecode_url": "http://%s.googlecode.com/svn", |
8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
(...skipping 15 matching lines...) Expand all Loading... |
26 # These two FFmpeg variables must be updated together. One is used for SVN | 26 # These two FFmpeg variables must be updated together. One is used for SVN |
27 # checkouts and the other for Git checkouts. | 27 # checkouts and the other for Git checkouts. |
28 "ffmpeg_revision": "150165", | 28 "ffmpeg_revision": "150165", |
29 "ffmpeg_hash": "2079ffae30f8da6c6eed985cce00e04c31b40888", | 29 "ffmpeg_hash": "2079ffae30f8da6c6eed985cce00e04c31b40888", |
30 | 30 |
31 "sfntly_revision": "134", | 31 "sfntly_revision": "134", |
32 "skia_revision": "5120", | 32 "skia_revision": "5120", |
33 # Three lines of non-changing comments so that | 33 # Three lines of non-changing comments so that |
34 # the commit queue can handle CLs rolling Skia | 34 # the commit queue can handle CLs rolling Skia |
35 # and V8 without interference from each other. | 35 # and V8 without interference from each other. |
36 "v8_revision": "12253", | 36 "v8_revision": "12323", |
37 "webrtc_revision": "2565", | 37 "webrtc_revision": "2565", |
38 "jsoncpp_revision": "248", | 38 "jsoncpp_revision": "248", |
39 "nss_revision": "145873", | 39 "nss_revision": "145873", |
40 } | 40 } |
41 | 41 |
42 deps = { | 42 deps = { |
43 "src/breakpad/src": | 43 "src/breakpad/src": |
44 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1008", | 44 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1008", |
45 | 45 |
46 "src/googleurl": | 46 "src/googleurl": |
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
594 "pattern": ".", | 594 "pattern": ".", |
595 "action": ["python", "src/build/util/lastchange.py", | 595 "action": ["python", "src/build/util/lastchange.py", |
596 "-o", "src/build/util/LASTCHANGE"], | 596 "-o", "src/build/util/LASTCHANGE"], |
597 }, | 597 }, |
598 { | 598 { |
599 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 599 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
600 "pattern": ".", | 600 "pattern": ".", |
601 "action": ["python", "src/build/gyp_chromium"], | 601 "action": ["python", "src/build/gyp_chromium"], |
602 }, | 602 }, |
603 ] | 603 ] |
OLD | NEW |