| OLD | NEW |
| 1 # This file is automatically processed to create .DEPS.git which is the file | 1 # This file is automatically processed to create .DEPS.git which is the file |
| 2 # that gclient uses under git. | 2 # that gclient uses under git. |
| 3 # | 3 # |
| 4 # See http://code.google.com/p/chromium/wiki/UsingGit | 4 # See http://code.google.com/p/chromium/wiki/UsingGit |
| 5 # | 5 # |
| 6 # To test manually, run: | 6 # To test manually, run: |
| 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> | 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> |
| 8 # where <gcliendir> is the absolute path to the directory containing the | 8 # where <gcliendir> is the absolute path to the directory containing the |
| 9 # .gclient file (the parent of 'src'). | 9 # .gclient file (the parent of 'src'). |
| 10 # | 10 # |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 'src/third_party/colorama/src': | 120 'src/third_party/colorama/src': |
| 121 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d27
89ecbd7e8db2e18e6b8', | 121 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d27
89ecbd7e8db2e18e6b8', |
| 122 | 122 |
| 123 'src/third_party/trace-viewer': | 123 'src/third_party/trace-viewer': |
| 124 Var('chromium_git') + '/external/trace-viewer.git' + '@' + '76a4496033c164d8b
e9ee8c57f702b0859cb1911', | 124 Var('chromium_git') + '/external/trace-viewer.git' + '@' + '76a4496033c164d8b
e9ee8c57f702b0859cb1911', |
| 125 | 125 |
| 126 'src/third_party/WebKit': | 126 'src/third_party/WebKit': |
| 127 Var('chromium_git') + '/chromium/blink.git' + '@' + Var('webkit_revision'), | 127 Var('chromium_git') + '/chromium/blink.git' + '@' + Var('webkit_revision'), |
| 128 | 128 |
| 129 'src/third_party/icu': | 129 'src/third_party/icu': |
| 130 Var('chromium_git') + '/chromium/deps/icu52.git' + '@' + 'd2abf6c1e1f986f4a8d
b0341b8a8c55c55ec1174', # from svn revision 292003 | 130 Var('chromium_git') + '/chromium/deps/icu52.git' + '@' + '8ac906faf7b66180f22
08380c35ae1e07136c5cc', # from svn revision 292317 |
| 131 | 131 |
| 132 'src/third_party/libexif/sources': | 132 'src/third_party/libexif/sources': |
| 133 Var('chromium_git') + '/chromium/deps/libexif/sources.git' + '@' + 'ed98343da
abd7b4497f97fda972e132e6877c48a', | 133 Var('chromium_git') + '/chromium/deps/libexif/sources.git' + '@' + 'ed98343da
abd7b4497f97fda972e132e6877c48a', |
| 134 | 134 |
| 135 'src/third_party/hunspell': | 135 'src/third_party/hunspell': |
| 136 Var('chromium_git') + '/chromium/deps/hunspell.git' + '@' + 'c956c0e97af00ef7
89afb2f64d02c9a5a50e6eb1', | 136 Var('chromium_git') + '/chromium/deps/hunspell.git' + '@' + 'c956c0e97af00ef7
89afb2f64d02c9a5a50e6eb1', |
| 137 | 137 |
| 138 'src/third_party/hunspell_dictionaries': | 138 'src/third_party/hunspell_dictionaries': |
| 139 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + '456
0bdd463a3500e2334e85c8a0e9e5d5d6774e7', | 139 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + '456
0bdd463a3500e2334e85c8a0e9e5d5d6774e7', |
| 140 | 140 |
| (...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 790 # corresponding .py files have already been deleted. | 790 # corresponding .py files have already been deleted. |
| 791 'name': 'remove_stale_pyc_files', | 791 'name': 'remove_stale_pyc_files', |
| 792 'pattern': 'src/tools/.*\\.py', | 792 'pattern': 'src/tools/.*\\.py', |
| 793 'action': [ | 793 'action': [ |
| 794 'python', | 794 'python', |
| 795 'src/tools/remove_stale_pyc_files.py', | 795 'src/tools/remove_stale_pyc_files.py', |
| 796 'src/tools', | 796 'src/tools', |
| 797 ], | 797 ], |
| 798 }, | 798 }, |
| 799 ] | 799 ] |
| OLD | NEW |