| OLD | NEW |
| 1 deps = { | 1 deps = { |
| 2 "build/scripts/gsd_generate_index": | 2 'build/scripts/gsd_generate_index': |
| 3 "svn://svn.chromium.org/chrome/trunk/tools/gsd_generate_index", | 3 'https://chromium.googlesource.com/chromium/tools/gsd_generate_index.git', |
| 4 | 4 'build/scripts/private/data/reliability': |
| 5 "build/scripts/private/data/reliability": | 5 'https://chromium.googlesource.com/chromium/src/chrome/test/data/reliability
.git', |
| 6 "svn://svn.chromium.org/chrome/trunk/src/chrome/test/data/reliability", | 6 'build/scripts/tools/deps2git': |
| 7 | 7 'https://chromium.googlesource.com/chromium/tools/deps2git.git', |
| 8 "build/third_party/gsutil": | 8 'build/third_party/gsutil': |
| 9 "svn://svn.chromium.org/gsutil/trunk/src@263", | 9 'https://chromium.googlesource.com/external/gsutil/src.git' |
| 10 | 10 '@5cba434b828da428a906c8197a23c9ae120d2636', |
| 11 "build/third_party/gsutil/boto": | 11 'build/third_party/gsutil/boto': |
| 12 "svn://svn.chromium.org/boto@7", | 12 'https://chromium.googlesource.com/external/boto.git' |
| 13 | 13 '@98fc59a5896f4ea990a4d527548204fed8f06c64', |
| 14 "build/third_party/lighttpd": | 14 'build/third_party/lighttpd': |
| 15 "svn://svn.chromium.org/chrome/trunk/deps/third_party/lighttpd@58968", | 15 'https://chromium.googlesource.com/chromium/deps/lighttpd.git' |
| 16 | 16 '@9dfa55d15937a688a92cbf2b7a8621b0927d06eb', |
| 17 "build/scripts/tools/deps2git": | 17 'depot_tools': |
| 18 "svn://svn.chromium.org/chrome/trunk/tools/deps2git", | 18 'https://chromium.googlesource.com/chromium/tools/depot_tools.git', |
| 19 | |
| 20 "depot_tools": | |
| 21 "svn://svn.chromium.org/chrome/trunk/tools/depot_tools", | |
| 22 } | 19 } |
| 23 | 20 |
| 24 deps_os = { | 21 deps_os = { |
| 25 "unix": { | 22 'unix': { |
| 26 "build/third_party/xvfb": | 23 'build/third_party/xvfb': |
| 27 "svn://svn.chromium.org/chrome/trunk/tools/third_party/xvfb", | 24 'https://chromium.googlesource.com/chromium/tools/third_party/xvfb.git', |
| 28 }, | 25 }, |
| 29 } | 26 } |
| 30 | 27 |
| 31 hooks = [ | 28 hooks = [ |
| 32 { | 29 { |
| 33 "pattern": ".", | 30 "pattern": ".", |
| 34 "action": [ | 31 "action": [ |
| 35 "python", "-u", "build/scripts/common/remove_orphaned_pycs.py", | 32 "python", "-u", "build/scripts/common/remove_orphaned_pycs.py", |
| 36 ], | 33 ], |
| 37 }, | 34 }, |
| 38 { | 35 { |
| 39 "name": "cros_chromite", | 36 "name": "cros_chromite", |
| 40 "pattern": r".*/cros_chromite_pins\.json", | 37 "pattern": r".*/cros_chromite_pins\.json", |
| 41 "action": [ | 38 "action": [ |
| 42 "python", "build/scripts/tools/runit.py", "python", | 39 "python", "build/scripts/tools/runit.py", "python", |
| 43 "build/scripts/common/cros_chromite.py", "-v", | 40 "build/scripts/common/cros_chromite.py", "-v", |
| 44 ], | 41 ], |
| 45 }, | 42 }, |
| 46 ] | 43 ] |
| OLD | NEW |