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 "chrome_trunk": "http://src.chromium.org/svn/trunk", |
7 "googlecode_url": "http://%s.googlecode.com/svn", | 7 "googlecode_url": "http://%s.googlecode.com/svn", |
8 } | 8 } |
9 | 9 |
10 deps = { | 10 deps = { |
11 "scons": | |
12 Var("chrome_trunk") + "/src/third_party/scons@44099", | |
13 } | 11 } |
14 | 12 |
15 deps_os = { | 13 deps_os = { |
16 "win": { | 14 "win": { |
17 "third_party/cygwin": | 15 "third_party/cygwin": |
18 Var("chrome_trunk") + "/deps/third_party/cygwin@66844", | 16 Var("chrome_trunk") + "/deps/third_party/cygwin@66844", |
19 | 17 |
20 "third_party/python_26": | 18 "third_party/python_26": |
21 Var("chrome_trunk") + "/tools/third_party/python_26@89111", | 19 Var("chrome_trunk") + "/tools/third_party/python_26@89111", |
22 | 20 |
23 "src/third_party/pefile": | 21 "src/third_party/pefile": |
24 (Var("googlecode_url") % "pefile") + "/trunk@63", | 22 (Var("googlecode_url") % "pefile") + "/trunk@63", |
25 }, | 23 }, |
26 } | 24 } |
OLD | NEW |