| 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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 "@94831a5a958ea6029aaf0c900b5187726557aacf", | 436 "@94831a5a958ea6029aaf0c900b5187726557aacf", |
| 437 | 437 |
| 438 # Note that this is different from Android's freetype repo. | 438 # Note that this is different from Android's freetype repo. |
| 439 "src/third_party/freetype2/src": | 439 "src/third_party/freetype2/src": |
| 440 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + | 440 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + |
| 441 "@d699c2994ecc178c4ed05ac2086061b2034c2178", | 441 "@d699c2994ecc178c4ed05ac2086061b2034c2178", |
| 442 | 442 |
| 443 # Build tools for targeting ChromeOS. | 443 # Build tools for targeting ChromeOS. |
| 444 "src/third_party/chromite": | 444 "src/third_party/chromite": |
| 445 Var("chromiumos_git") + "/chromite.git" + | 445 Var("chromiumos_git") + "/chromite.git" + |
| 446 "@214fb6506eda13715edd74087adf367a29809a3c", | 446 "@cbdd21c5ea76aa93ba4619a6d253697765f4de1f", |
| 447 | 447 |
| 448 # Dependency of chromite.git. | 448 # Dependency of chromite.git. |
| 449 "src/third_party/pyelftools": | 449 "src/third_party/pyelftools": |
| 450 Var("chromiumos_git") + "/third_party/pyelftools.git" + | 450 Var("chromiumos_git") + "/third_party/pyelftools.git" + |
| 451 "@bdc1d380acd88d4bfaf47265008091483b0d614e", | 451 "@bdc1d380acd88d4bfaf47265008091483b0d614e", |
| 452 | 452 |
| 453 "src/third_party/undoview": | 453 "src/third_party/undoview": |
| 454 "/trunk/deps/third_party/undoview@119694", | 454 "/trunk/deps/third_party/undoview@119694", |
| 455 }, | 455 }, |
| 456 "android": { | 456 "android": { |
| (...skipping 162 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 |