| 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://svn.code.sf.net/p/%(repo)s/code", | 8 "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code", |
| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", | 59 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", |
| 60 | 60 |
| 61 "src/testing/gtest": | 61 "src/testing/gtest": |
| 62 (Var("googlecode_url") % "googletest") + "/trunk@629", | 62 (Var("googlecode_url") % "googletest") + "/trunk@629", |
| 63 | 63 |
| 64 "src/testing/gmock": | 64 "src/testing/gmock": |
| 65 (Var("googlecode_url") % "googlemock") + "/trunk@410", | 65 (Var("googlecode_url") % "googlemock") + "/trunk@410", |
| 66 | 66 |
| 67 "src/third_party/angle_dx11": | 67 "src/third_party/angle_dx11": |
| 68 Var("chromium_git") + | 68 Var("chromium_git") + |
| 69 "/external/angle.git@41159326ab429bb88262f80118e79bb5a108f0db", | 69 "/external/angle.git@0bd6d117785f689aaa367bca4dc761f561e5b666", |
| 70 | 70 |
| 71 "src/third_party/trace-viewer": | 71 "src/third_party/trace-viewer": |
| 72 (Var("googlecode_url") % "trace-viewer") + "/trunk@942", | 72 (Var("googlecode_url") % "trace-viewer") + "/trunk@942", |
| 73 | 73 |
| 74 "src/third_party/WebKit": | 74 "src/third_party/WebKit": |
| 75 Var("webkit_trunk") + "@" + Var("webkit_revision"), | 75 Var("webkit_trunk") + "@" + Var("webkit_revision"), |
| 76 | 76 |
| 77 "src/third_party/icu": | 77 "src/third_party/icu": |
| 78 "/trunk/deps/third_party/icu46@219032", | 78 "/trunk/deps/third_party/icu46@219032", |
| 79 | 79 |
| (...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 "pattern": ".", | 619 "pattern": ".", |
| 620 "action": ["python", "src/build/gyp_chromium"], | 620 "action": ["python", "src/build/gyp_chromium"], |
| 621 }, | 621 }, |
| 622 { | 622 { |
| 623 # Check for landmines (reasons to clobber the build). | 623 # Check for landmines (reasons to clobber the build). |
| 624 "name": "landmines", | 624 "name": "landmines", |
| 625 "pattern": ".", | 625 "pattern": ".", |
| 626 "action": ["python", "src/build/landmines.py"], | 626 "action": ["python", "src/build/landmines.py"], |
| 627 }, | 627 }, |
| 628 ] | 628 ] |
| OLD | NEW |