| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f722
0af6d5df2d3210e3bfc0919', | 149 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f722
0af6d5df2d3210e3bfc0919', |
| 150 | 150 |
| 151 'src/third_party/android_tools': | 151 'src/third_party/android_tools': |
| 152 Var('chromium_git') + '/android_tools.git' + '@' + 'ea50cccc11657404ce22cf9
28062ed1a3927eb39', | 152 Var('chromium_git') + '/android_tools.git' + '@' + 'ea50cccc11657404ce22cf9
28062ed1a3927eb39', |
| 153 | 153 |
| 154 'src/third_party/freetype': | 154 'src/third_party/freetype': |
| 155 Var('chromium_git') + '/chromium/src/third_party/freetype.git' + '@' + 'a
2b9955b49034a51dfbc8bf9f4e9d312149cecac', | 155 Var('chromium_git') + '/chromium/src/third_party/freetype.git' + '@' + 'a
2b9955b49034a51dfbc8bf9f4e9d312149cecac', |
| 156 }, | 156 }, |
| 157 'win': { | 157 'win': { |
| 158 'src/third_party/nss': | 158 'src/third_party/nss': |
| 159 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision'), | 159 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision
'), |
| 160 'src/third_party/bison': | 160 'src/third_party/bison': |
| 161 Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affdd54
64ee2b224c2df649c6e26c3', | 161 Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affd
d5464ee2b224c2df649c6e26c3', |
| 162 'src/third_party/gperf': | 162 'src/third_party/gperf': |
| 163 Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f944977
0443fb06da49b5a1e5d33c1', | 163 Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f944
9770443fb06da49b5a1e5d33c1', |
| 164 'src/tools/gyp': |
| 165 Var('chromium_git') + '/external/gyp.git' + '@' + '487c0b6ae8b44932e4534
7211bca0e8387718436', # from svn revision 1998 |
| 164 } | 166 } |
| 165 } | 167 } |
| 166 | 168 |
| 167 | 169 |
| 168 include_rules = [ | 170 include_rules = [ |
| 169 # Everybody can use some things. | 171 # Everybody can use some things. |
| 170 '+base', | 172 '+base', |
| 171 '+build', | 173 '+build', |
| 172 | 174 |
| 173 '+testing', | 175 '+testing', |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 # corresponding .py files have already been deleted. | 298 # corresponding .py files have already been deleted. |
| 297 'name': 'remove_stale_pyc_files', | 299 'name': 'remove_stale_pyc_files', |
| 298 'pattern': 'src/tools/.*\\.py', | 300 'pattern': 'src/tools/.*\\.py', |
| 299 'action': [ | 301 'action': [ |
| 300 'python', | 302 'python', |
| 301 'src/tools/remove_stale_pyc_files.py', | 303 'src/tools/remove_stale_pyc_files.py', |
| 302 'src/tools', | 304 'src/tools', |
| 303 ], | 305 ], |
| 304 }, | 306 }, |
| 305 ] | 307 ] |
| OLD | NEW |