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": "108393", | 8 "webkit_revision": "108393", |
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 # and V8 without interference from each other. | 49 # and V8 without interference from each other. |
50 "v8_revision": "10776", | 50 "v8_revision": "10776", |
51 "webrtc_revision": "1538", | 51 "webrtc_revision": "1538", |
52 "jsoncpp_revision": "248", | 52 "jsoncpp_revision": "248", |
53 "nss_revision": "122528", | 53 "nss_revision": "122528", |
54 "rlz_revision": "59", | 54 "rlz_revision": "59", |
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@922", |
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": |
65 (Var("googlecode_url") % "google-url") + "/trunk@168", | 65 (Var("googlecode_url") % "google-url") + "/trunk@168", |
66 | 66 |
67 "src/seccompsandbox": | 67 "src/seccompsandbox": |
68 (Var("googlecode_url") % "seccompsandbox") + "/trunk@178", | 68 (Var("googlecode_url") % "seccompsandbox") + "/trunk@178", |
69 | 69 |
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 "pattern": ".", | 508 "pattern": ".", |
509 "action": ["python", "src/build/util/lastchange.py", | 509 "action": ["python", "src/build/util/lastchange.py", |
510 "-o", "src/build/util/LASTCHANGE"], | 510 "-o", "src/build/util/LASTCHANGE"], |
511 }, | 511 }, |
512 { | 512 { |
513 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 513 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
514 "pattern": ".", | 514 "pattern": ".", |
515 "action": ["python", "src/build/gyp_chromium"], | 515 "action": ["python", "src/build/gyp_chromium"], |
516 }, | 516 }, |
517 ] | 517 ] |
OLD | NEW |