| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 'src/third_party/hunspell': | 136 'src/third_party/hunspell': |
| 137 Var('chromium_git') + '/chromium/deps/hunspell.git' + '@' + 'c956c0e97af00ef7
89afb2f64d02c9a5a50e6eb1', | 137 Var('chromium_git') + '/chromium/deps/hunspell.git' + '@' + 'c956c0e97af00ef7
89afb2f64d02c9a5a50e6eb1', |
| 138 | 138 |
| 139 'src/third_party/hunspell_dictionaries': | 139 'src/third_party/hunspell_dictionaries': |
| 140 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + '456
0bdd463a3500e2334e85c8a0e9e5d5d6774e7', | 140 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + '456
0bdd463a3500e2334e85c8a0e9e5d5d6774e7', |
| 141 | 141 |
| 142 'src/third_party/safe_browsing/testing': | 142 'src/third_party/safe_browsing/testing': |
| 143 Var('chromium_git') + '/external/google-safe-browsing/testing.git' + '@' + '
9d7e8064f3ca2e45891470c9b5b1dce54af6a9d6', | 143 Var('chromium_git') + '/external/google-safe-browsing/testing.git' + '@' + '
9d7e8064f3ca2e45891470c9b5b1dce54af6a9d6', |
| 144 | 144 |
| 145 'src/third_party/cacheinvalidation/src': | 145 'src/third_party/cacheinvalidation/src': |
| 146 Var('chromium_git') + '/external/google-cache-invalidation-api/src.git' + '@
' + '50c0a8563b62f6e3b780da14f82246d192f9c1e0', | 146 Var('chromium_git') + '/external/google-cache-invalidation-api/src.git' + '@
' + '108f1459d873db13c1914755a79333a09d4c563f', # from svn revision 339 |
| 147 | 147 |
| 148 'src/third_party/leveldatabase/src': | 148 'src/third_party/leveldatabase/src': |
| 149 Var('chromium_git') + '/external/leveldb.git' + '@' + '3f77584eb3f9754bbb707
9070873ece3f30a1e6b', | 149 Var('chromium_git') + '/external/leveldb.git' + '@' + '3f77584eb3f9754bbb707
9070873ece3f30a1e6b', |
| 150 | 150 |
| 151 'src/third_party/libc++/trunk': | 151 'src/third_party/libc++/trunk': |
| 152 Var('chromium_git') + '/chromium/llvm-project/libcxx.git' + '@' + Var('libcx
x_revision'), | 152 Var('chromium_git') + '/chromium/llvm-project/libcxx.git' + '@' + Var('libcx
x_revision'), |
| 153 | 153 |
| 154 'src/third_party/libc++abi/trunk': | 154 'src/third_party/libc++abi/trunk': |
| 155 Var('chromium_git') + '/chromium/llvm-project/libcxxabi.git' + '@' + Var('li
bcxxabi_revision'), | 155 Var('chromium_git') + '/chromium/llvm-project/libcxxabi.git' + '@' + Var('li
bcxxabi_revision'), |
| 156 | 156 |
| (...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 802 # corresponding .py files have already been deleted. | 802 # corresponding .py files have already been deleted. |
| 803 'name': 'remove_stale_pyc_files', | 803 'name': 'remove_stale_pyc_files', |
| 804 'pattern': 'src/tools/.*\\.py', | 804 'pattern': 'src/tools/.*\\.py', |
| 805 'action': [ | 805 'action': [ |
| 806 'python', | 806 'python', |
| 807 'src/tools/remove_stale_pyc_files.py', | 807 'src/tools/remove_stale_pyc_files.py', |
| 808 'src/tools', | 808 'src/tools', |
| 809 ], | 809 ], |
| 810 }, | 810 }, |
| 811 ] | 811 ] |
| OLD | NEW |