| 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://src.chromium.org/blink/trunk", | 9 "webkit_trunk": "http://src.chromium.org/blink/trunk", |
| 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 # the commit queue can handle CLs rolling openssl | 48 # the commit queue can handle CLs rolling openssl |
| 49 # and whatever else without interference from each other. | 49 # and whatever else without interference from each other. |
| 50 "openssl_revision": "194187", | 50 "openssl_revision": "194187", |
| 51 } | 51 } |
| 52 | 52 |
| 53 deps = { | 53 deps = { |
| 54 "src/breakpad/src": | 54 "src/breakpad/src": |
| 55 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1182", | 55 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1182", |
| 56 | 56 |
| 57 "src/googleurl": | 57 "src/googleurl": |
| 58 (Var("googlecode_url") % "google-url") + "/trunk@183", | 58 (Var("googlecode_url") % "google-url") + "/trunk@185", |
| 59 | 59 |
| 60 "src/sdch/open-vcdiff": | 60 "src/sdch/open-vcdiff": |
| 61 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", | 61 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", |
| 62 | 62 |
| 63 "src/testing/gtest": | 63 "src/testing/gtest": |
| 64 (Var("googlecode_url") % "googletest") + "/trunk@629", | 64 (Var("googlecode_url") % "googletest") + "/trunk@629", |
| 65 | 65 |
| 66 "src/testing/gmock": | 66 "src/testing/gmock": |
| 67 (Var("googlecode_url") % "googlemock") + "/trunk@410", | 67 (Var("googlecode_url") % "googlemock") + "/trunk@410", |
| 68 | 68 |
| (...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 673 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 674 "pattern": ".", | 674 "pattern": ".", |
| 675 "action": ["python", "src/build/gyp_chromium"], | 675 "action": ["python", "src/build/gyp_chromium"], |
| 676 }, | 676 }, |
| 677 { | 677 { |
| 678 # Check for landmines (reasons to clobber the build). | 678 # Check for landmines (reasons to clobber the build). |
| 679 "pattern": ".", | 679 "pattern": ".", |
| 680 "action": ["python", "src/build/landmines.py"], | 680 "action": ["python", "src/build/landmines.py"], |
| 681 }, | 681 }, |
| 682 ] | 682 ] |
| OLD | NEW |