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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 "ffmpeg_hash": "425c0ec6975cba904785e4277454c2ecdd694fbf", | 55 "ffmpeg_hash": "425c0ec6975cba904785e4277454c2ecdd694fbf", |
56 | 56 |
57 "sfntly_revision": "128", | 57 "sfntly_revision": "128", |
58 "skia_revision": "4234", | 58 "skia_revision": "4234", |
59 # Three lines of non-changing comments so that | 59 # Three lines of non-changing comments so that |
60 # the commit queue can handle CLs rolling Skia | 60 # the commit queue can handle CLs rolling Skia |
61 # and V8 without interference from each other. | 61 # and V8 without interference from each other. |
62 "v8_revision": "11759", | 62 "v8_revision": "11759", |
63 "webrtc_revision": "2388", | 63 "webrtc_revision": "2388", |
64 "jsoncpp_revision": "248", | 64 "jsoncpp_revision": "248", |
65 "nss_revision": "141064", | 65 "nss_revision": "142187", |
66 "rlz_revision": "130", | 66 "rlz_revision": "130", |
67 } | 67 } |
68 | 68 |
69 deps = { | 69 deps = { |
70 "src/breakpad/src": | 70 "src/breakpad/src": |
71 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@939", | 71 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@939", |
72 | 72 |
73 "src/googleurl": | 73 "src/googleurl": |
74 (Var("googlecode_url") % "google-url") + "/trunk@175", | 74 (Var("googlecode_url") % "google-url") + "/trunk@175", |
75 | 75 |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
547 "pattern": ".", | 547 "pattern": ".", |
548 "action": ["python", "src/build/util/lastchange.py", | 548 "action": ["python", "src/build/util/lastchange.py", |
549 "-o", "src/build/util/LASTCHANGE"], | 549 "-o", "src/build/util/LASTCHANGE"], |
550 }, | 550 }, |
551 { | 551 { |
552 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 552 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
553 "pattern": ".", | 553 "pattern": ".", |
554 "action": ["python", "src/build/gyp_chromium"], | 554 "action": ["python", "src/build/gyp_chromium"], |
555 }, | 555 }, |
556 ] | 556 ] |
OLD | NEW |