Chromium Code Reviews| 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 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 509 | 509 |
| 510 "src/third_party/gold": | 510 "src/third_party/gold": |
| 511 "/trunk/deps/third_party/gold@149858", | 511 "/trunk/deps/third_party/gold@149858", |
| 512 | 512 |
| 513 "src/third_party/libmtp": | 513 "src/third_party/libmtp": |
| 514 "/trunk/deps/third_party/libmtp@149713", | 514 "/trunk/deps/third_party/libmtp@149713", |
| 515 | 515 |
| 516 # For Chromium OS. | 516 # For Chromium OS. |
| 517 "src/third_party/cros_system_api": | 517 "src/third_party/cros_system_api": |
| 518 Var("chromiumos_git") + "/platform/system_api.git" + | 518 Var("chromiumos_git") + "/platform/system_api.git" + |
| 519 "@f648289dfe3c51cb5e4b93b0b5e1642978df0295", | 519 "@5795e9bd3edb8a979318a08a79abd1bb1329c864", |
|
satorux1
2012/09/01 01:03:50
It's safer to land this part in a separate patch.
Lei Zhang
2012/09/04 20:09:38
Sure, can do.
| |
| 520 }, | 520 }, |
| 521 "android": { | 521 "android": { |
| 522 "src/third_party/freetype": | 522 "src/third_party/freetype": |
| 523 Var("chromium_git") + "/chromium/src/third_party/freetype.git" + | 523 Var("chromium_git") + "/chromium/src/third_party/freetype.git" + |
| 524 "@41c2c4116acca09389cc5fe2ea393eaada546422", | 524 "@41c2c4116acca09389cc5fe2ea393eaada546422", |
| 525 | 525 |
| 526 "src/third_party/aosp": | 526 "src/third_party/aosp": |
| 527 "/trunk/deps/third_party/aosp@148330", | 527 "/trunk/deps/third_party/aosp@148330", |
| 528 | 528 |
| 529 "src/third_party/android_tools": | 529 "src/third_party/android_tools": |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 597 "pattern": ".", | 597 "pattern": ".", |
| 598 "action": ["python", "src/build/util/lastchange.py", | 598 "action": ["python", "src/build/util/lastchange.py", |
| 599 "-o", "src/build/util/LASTCHANGE"], | 599 "-o", "src/build/util/LASTCHANGE"], |
| 600 }, | 600 }, |
| 601 { | 601 { |
| 602 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 602 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 603 "pattern": ".", | 603 "pattern": ".", |
| 604 "action": ["python", "src/build/gyp_chromium"], | 604 "action": ["python", "src/build/gyp_chromium"], |
| 605 }, | 605 }, |
| 606 ] | 606 ] |
| OLD | NEW |