| OLD | NEW |
| 1 # DEPS file for gclient use in buildbot execution of gyp tests. | 1 # DEPS file for gclient use in buildbot execution of gyp tests. |
| 2 # | 2 # |
| 3 # (You don't need to use gclient for normal GYP development work.) | 3 # (You don't need to use gclient for normal GYP development work.) |
| 4 | 4 |
| 5 vars = { | 5 vars = { |
| 6 "chrome_trunk": "http://src.chromium.org/svn/trunk", | 6 "chromium_git": "https://chromium.googlesource.com/", |
| 7 "googlecode_url": "http://%s.googlecode.com/svn", | |
| 8 } | 7 } |
| 9 | 8 |
| 10 deps = { | 9 deps = { |
| 11 } | 10 } |
| 12 | 11 |
| 13 deps_os = { | 12 deps_os = { |
| 14 "win": { | 13 "win": { |
| 15 "third_party/cygwin": | 14 "third_party/cygwin": |
| 16 Var("chrome_trunk") + "/deps/third_party/cygwin@66844", | 15 Var("chromium_git") + "chromium/deps/cygwin@4fbd5b9", |
| 17 | 16 |
| 18 "third_party/python_26": | 17 "third_party/python_26": |
| 19 Var("chrome_trunk") + "/tools/third_party/python_26@89111", | 18 Var("chromium_git") + "chromium/deps/python_26@5bb4080", |
| 20 | 19 |
| 21 "src/third_party/pefile": | 20 "src/third_party/pefile": |
| 22 (Var("googlecode_url") % "pefile") + "/trunk@63", | 21 Var("chromium_git") + "external/pefile@72c6ae4", |
| 23 }, | 22 }, |
| 24 } | 23 } |
| OLD | NEW |