OLD | NEW |
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 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 5 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
8 "webkit_revision": "107876", | 8 "webkit_revision": "107876", |
9 "chromium_git": "http://git.chromium.org/git", | 9 "chromium_git": "http://git.chromium.org/git", |
10 "swig_revision": "69281", | 10 "swig_revision": "69281", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 "ffmpeg_revision": "122092", | 44 "ffmpeg_revision": "122092", |
45 "sfntly_revision": "118", | 45 "sfntly_revision": "118", |
46 "skia_revision": "3196", | 46 "skia_revision": "3196", |
47 # Three lines of non-changing comments so that | 47 # Three lines of non-changing comments so that |
48 # the commit queue can handle CLs rolling Skia | 48 # the commit queue can handle CLs rolling Skia |
49 # and V8 without interference from each other. | 49 # and V8 without interference from each other. |
50 "v8_revision": "10729", | 50 "v8_revision": "10729", |
51 "webrtc_revision": "1538", | 51 "webrtc_revision": "1538", |
52 "jsoncpp_revision": "248", | 52 "jsoncpp_revision": "248", |
53 "nss_revision": "122236", | 53 "nss_revision": "122236", |
54 "rlz_revision": "52", | 54 "rlz_revision": "53", |
55 } | 55 } |
56 | 56 |
57 deps = { | 57 deps = { |
58 "src/breakpad/src": | 58 "src/breakpad/src": |
59 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@915", | 59 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@915", |
60 | 60 |
61 "src/build/util/support": | 61 "src/build/util/support": |
62 "/trunk/deps/support@20411", | 62 "/trunk/deps/support@20411", |
63 | 63 |
64 "src/googleurl": | 64 "src/googleurl": |
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
514 "pattern": ".", | 514 "pattern": ".", |
515 "action": ["python", "src/build/util/lastchange.py", | 515 "action": ["python", "src/build/util/lastchange.py", |
516 "-o", "src/build/util/LASTCHANGE"], | 516 "-o", "src/build/util/LASTCHANGE"], |
517 }, | 517 }, |
518 { | 518 { |
519 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 519 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
520 "pattern": ".", | 520 "pattern": ".", |
521 "action": ["python", "src/build/gyp_chromium"], | 521 "action": ["python", "src/build/gyp_chromium"], |
522 }, | 522 }, |
523 ] | 523 ] |
OLD | NEW |