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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
547 "@132604f107368f617a3073ba2d515b78641ceeed", | 547 "@132604f107368f617a3073ba2d515b78641ceeed", |
548 | 548 |
549 # Used on Linux only. CrOS already has a copy. | 549 # Used on Linux only. CrOS already has a copy. |
550 "src/third_party/cros_dbus_cplusplus/source": | 550 "src/third_party/cros_dbus_cplusplus/source": |
551 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + | 551 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + |
552 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", | 552 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", |
553 | 553 |
554 # For Linux and Chromium OS. | 554 # For Linux and Chromium OS. |
555 "src/third_party/cros_system_api": | 555 "src/third_party/cros_system_api": |
556 Var("chromiumos_git") + "/platform/system_api.git" + | 556 Var("chromiumos_git") + "/platform/system_api.git" + |
557 "@5359aa6474f64debce42a1e774120382a76c3730", | 557 "@8757d8d77f6ca424d24d0c33fb6956082032c2a5", |
satorux1
2013/03/22 02:00:12
it's probably safer to update DEPS in a separate p
keybuk
2013/03/22 17:29:32
getting updated in https://codereview.chromium.org
| |
558 | 558 |
559 # Note that this is different from Android's freetype repo. | 559 # Note that this is different from Android's freetype repo. |
560 "src/third_party/freetype2/src": | 560 "src/third_party/freetype2/src": |
561 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + | 561 Var("chromium_git") + "/chromium/src/third_party/freetype2.git" + |
562 "@d699c2994ecc178c4ed05ac2086061b2034c2178", | 562 "@d699c2994ecc178c4ed05ac2086061b2034c2178", |
563 }, | 563 }, |
564 "android": { | 564 "android": { |
565 "src/third_party/android_tools": | 565 "src/third_party/android_tools": |
566 Var("chromium_git") + "/android_tools.git" + | 566 Var("chromium_git") + "/android_tools.git" + |
567 "@02d3db3c400baa959883006dc697c6cbd70c5194", | 567 "@02d3db3c400baa959883006dc697c6cbd70c5194", |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
686 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 686 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
687 "pattern": ".", | 687 "pattern": ".", |
688 "action": ["python", "src/build/gyp_chromium"], | 688 "action": ["python", "src/build/gyp_chromium"], |
689 }, | 689 }, |
690 { | 690 { |
691 # Check for landmines (reasons to clobber the build). | 691 # Check for landmines (reasons to clobber the build). |
692 "pattern": ".", | 692 "pattern": ".", |
693 "action": ["python", "src/build/landmines.py"], | 693 "action": ["python", "src/build/landmines.py"], |
694 }, | 694 }, |
695 ] | 695 ] |
OLD | NEW |