| 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 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 532 "@35319f42106fab09ae8ccb639b8e74406120e1c4", | 532 "@35319f42106fab09ae8ccb639b8e74406120e1c4", |
| 533 | 533 |
| 534 # Note that this is different from Android's freetype repo. | 534 # Note that this is different from Android's freetype repo. |
| 535 "src/third_party/freetype2/src": | 535 "src/third_party/freetype2/src": |
| 536 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + | 536 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + |
| 537 "@d699c2994ecc178c4ed05ac2086061b2034c2178", | 537 "@d699c2994ecc178c4ed05ac2086061b2034c2178", |
| 538 | 538 |
| 539 # Build tools for targeting ChromeOS. | 539 # Build tools for targeting ChromeOS. |
| 540 "src/third_party/chromite": | 540 "src/third_party/chromite": |
| 541 Var("chromiumos_git") + "/chromite.git" + | 541 Var("chromiumos_git") + "/chromite.git" + |
| 542 "@97a529d65b4a36298c735f008eb55a8bc900e119", | 542 "@785fedc51fc430445d8f397440012ea3b489bac9", |
| 543 | 543 |
| 544 # Dependency of chromite.git. | 544 # Dependency of chromite.git. |
| 545 "src/third_party/pyelftools": | 545 "src/third_party/pyelftools": |
| 546 Var("chromiumos_git") + "/third_party/pyelftools.git" + | 546 Var("chromiumos_git") + "/third_party/pyelftools.git" + |
| 547 "@bdc1d380acd88d4bfaf47265008091483b0d614e", | 547 "@bdc1d380acd88d4bfaf47265008091483b0d614e", |
| 548 }, | 548 }, |
| 549 "android": { | 549 "android": { |
| 550 "src/third_party/android_tools": | 550 "src/third_party/android_tools": |
| 551 Var("chromium_git") + "/android_tools.git" + | 551 Var("chromium_git") + "/android_tools.git" + |
| 552 "@b12d410c0ee23385da78e6c9f353d28fd992e0bd", | 552 "@b12d410c0ee23385da78e6c9f353d28fd992e0bd", |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 680 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 681 "pattern": ".", | 681 "pattern": ".", |
| 682 "action": ["python", "src/build/gyp_chromium"], | 682 "action": ["python", "src/build/gyp_chromium"], |
| 683 }, | 683 }, |
| 684 { | 684 { |
| 685 # Check for landmines (reasons to clobber the build). | 685 # Check for landmines (reasons to clobber the build). |
| 686 "pattern": ".", | 686 "pattern": ".", |
| 687 "action": ["python", "src/build/landmines.py"], | 687 "action": ["python", "src/build/landmines.py"], |
| 688 }, | 688 }, |
| 689 ] | 689 ] |
| OLD | NEW |