OLD | NEW |
1 # TODO(satorux): Remove this file after a month. | 1 # When adding a new dependency, please update the top-level .gitignore file |
2 print 'ERROR: src/tools/cros.DEPS/DEPS has been merged into src/DEPS.' | 2 # to list the dependency's destination directory. |
3 print 'ERROR: Please remove cros.DEPS rule from your .gclient file.' | 3 |
| 4 vars = { |
| 5 "chromiumos_git": "http://git.chromium.org/chromiumos", |
| 6 } |
| 7 |
| 8 deps_os = { |
| 9 "unix" : { |
| 10 "src/third_party/cros_system_api": |
| 11 Var("chromiumos_git") + "/platform/system_api.git@a6b76c4e", |
| 12 } |
| 13 } |
OLD | NEW |