Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
michael@0 | 1 | # DEPS file for gclient use in buildbot execution of gyp tests. |
michael@0 | 2 | # |
michael@0 | 3 | # (You don't need to use gclient for normal GYP development work.) |
michael@0 | 4 | |
michael@0 | 5 | vars = { |
michael@0 | 6 | "chrome_trunk": "http://src.chromium.org/svn/trunk", |
michael@0 | 7 | "googlecode_url": "http://%s.googlecode.com/svn", |
michael@0 | 8 | } |
michael@0 | 9 | |
michael@0 | 10 | deps = { |
michael@0 | 11 | "scons": |
michael@0 | 12 | Var("chrome_trunk") + "/src/third_party/scons@44099", |
michael@0 | 13 | } |
michael@0 | 14 | |
michael@0 | 15 | deps_os = { |
michael@0 | 16 | "win": { |
michael@0 | 17 | "third_party/cygwin": |
michael@0 | 18 | Var("chrome_trunk") + "/deps/third_party/cygwin@66844", |
michael@0 | 19 | |
michael@0 | 20 | "third_party/python_26": |
michael@0 | 21 | Var("chrome_trunk") + "/tools/third_party/python_26@89111", |
michael@0 | 22 | |
michael@0 | 23 | "src/third_party/pefile": |
michael@0 | 24 | (Var("googlecode_url") % "pefile") + "/trunk@63", |
michael@0 | 25 | }, |
michael@0 | 26 | } |