| 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 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 "@132604f107368f617a3073ba2d515b78641ceeed", | 543 "@132604f107368f617a3073ba2d515b78641ceeed", |
| 544 | 544 |
| 545 # Used on Linux only. CrOS already has a copy. | 545 # Used on Linux only. CrOS already has a copy. |
| 546 "src/third_party/cros_dbus_cplusplus/source": | 546 "src/third_party/cros_dbus_cplusplus/source": |
| 547 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + | 547 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + |
| 548 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", | 548 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", |
| 549 | 549 |
| 550 # For Linux and Chromium OS. | 550 # For Linux and Chromium OS. |
| 551 "src/third_party/cros_system_api": | 551 "src/third_party/cros_system_api": |
| 552 Var("chromiumos_git") + "/platform/system_api.git" + | 552 Var("chromiumos_git") + "/platform/system_api.git" + |
| 553 "@6ead34613a4a1ac1911af2ecbbddd204d15305ab", | 553 "@229425b55e789a8d5dd8a76e48115b47506910da", |
| 554 | 554 |
| 555 # Note that this is different from Android's freetype repo. | 555 # Note that this is different from Android's freetype repo. |
| 556 "src/third_party/freetype2/src": | 556 "src/third_party/freetype2/src": |
| 557 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + | 557 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + |
| 558 "@d699c2994ecc178c4ed05ac2086061b2034c2178", | 558 "@d699c2994ecc178c4ed05ac2086061b2034c2178", |
| 559 }, | 559 }, |
| 560 "android": { | 560 "android": { |
| 561 "src/third_party/android_tools": | 561 "src/third_party/android_tools": |
| 562 Var("chromium_git") + "/android_tools.git" + | 562 Var("chromium_git") + "/android_tools.git" + |
| 563 "@4745ecc25a0a36c24e355ee3e6bd87f63b6a48c7", | 563 "@4745ecc25a0a36c24e355ee3e6bd87f63b6a48c7", |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 675 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 676 "pattern": ".", | 676 "pattern": ".", |
| 677 "action": ["python", "src/build/gyp_chromium"], | 677 "action": ["python", "src/build/gyp_chromium"], |
| 678 }, | 678 }, |
| 679 { | 679 { |
| 680 # Check for landmines (reasons to clobber the build). | 680 # Check for landmines (reasons to clobber the build). |
| 681 "pattern": ".", | 681 "pattern": ".", |
| 682 "action": ["python", "src/build/landmines.py"], | 682 "action": ["python", "src/build/landmines.py"], |
| 683 }, | 683 }, |
| 684 ] | 684 ] |
| OLD | NEW |