| OLD | NEW |
| (Empty) |
| 1 # We pull 3 components from the Chrome tree at the trunk. | |
| 2 chrome_rev = '' | |
| 3 | |
| 4 # We pull 2 components from the Gears tree at this revision. | |
| 5 gears_rev = '@3147' | |
| 6 | |
| 7 deps = { | |
| 8 "src/build": | |
| 9 "svn://chrome-svn.corp.google.com/chrome/trunk/src/build" + chrome_rev, | |
| 10 | |
| 11 "src/site_scons": | |
| 12 "svn://chrome-svn.corp.google.com/chrome/trunk/src/site_scons" + chrome_rev, | |
| 13 | |
| 14 "src/third_party/scons": | |
| 15 "svn://chrome-svn.corp.google.com/chrome/trunk/src/third_party/scons" + chro
me_rev, | |
| 16 | |
| 17 "src/gears/gears": | |
| 18 "http://gears.googlecode.com/svn/trunk/gears" + gears_rev, | |
| 19 | |
| 20 "src/gears/third_party": | |
| 21 "http://gears.googlecode.com/svn/trunk/third_party" + gears_rev, | |
| 22 } | |
| 23 | |
| 24 # checkdeps.py shouldn't check include paths for files in these dirs: | |
| 25 skip_child_includes = [ | |
| 26 "gears", | |
| 27 "third_party", | |
| 28 ] | |
| OLD | NEW |