| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 'boringssl.googlesource.com', | 62 'boringssl.googlesource.com', |
| 63 'chromium.googlesource.com', | 63 'chromium.googlesource.com', |
| 64 'dart.googlecode.com', | 64 'dart.googlecode.com', |
| 65 'pdfium.googlesource.com', | 65 'pdfium.googlesource.com', |
| 66 ] | 66 ] |
| 67 | 67 |
| 68 deps = { | 68 deps = { |
| 69 'src/buildtools': | 69 'src/buildtools': |
| 70 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), | 70 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), |
| 71 | 71 |
| 72 'src/sdch/open-vcdiff': | |
| 73 Var('chromium_git') + '/external/open-vcdiff.git' + '@' + '438f2a5be6d809bc21
611a94cd37bfc8c28ceb33', # from svn revision 41 | |
| 74 | |
| 75 'src/testing/gtest': | 72 'src/testing/gtest': |
| 76 Var('chromium_git') + '/external/googletest.git' + '@' + 'be1868139ffe0ccd0e8
e3b37292b84c821d9c8ad', # from svn revision 704 | 73 Var('chromium_git') + '/external/googletest.git' + '@' + 'be1868139ffe0ccd0e8
e3b37292b84c821d9c8ad', # from svn revision 704 |
| 77 | 74 |
| 78 'src/testing/gmock': | 75 'src/testing/gmock': |
| 79 Var('chromium_git') + '/external/googlemock.git' + '@' + '29763965ab52f245652
99976b936d1265cb6a271', # from svn revision 501 | 76 Var('chromium_git') + '/external/googlemock.git' + '@' + '29763965ab52f245652
99976b936d1265cb6a271', # from svn revision 501 |
| 80 | 77 |
| 81 'src/third_party/angle': | 78 'src/third_party/angle': |
| 82 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), | 79 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| 83 | 80 |
| 84 'src/third_party/icu': | 81 'src/third_party/icu': |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 '+testing', | 180 '+testing', |
| 184 '+third_party/icu/source/common/unicode', | 181 '+third_party/icu/source/common/unicode', |
| 185 '+third_party/icu/source/i18n/unicode', | 182 '+third_party/icu/source/i18n/unicode', |
| 186 '+url', | 183 '+url', |
| 187 ] | 184 ] |
| 188 | 185 |
| 189 | 186 |
| 190 # checkdeps.py shouldn't check include paths for files in these dirs: | 187 # checkdeps.py shouldn't check include paths for files in these dirs: |
| 191 skip_child_includes = [ | 188 skip_child_includes = [ |
| 192 'examples', | 189 'examples', |
| 193 'sdch', | |
| 194 'services', | 190 'services', |
| 195 'shell', | 191 'shell', |
| 196 'skia', | 192 'skia', |
| 197 'sky', | 193 'sky', |
| 198 'testing', | 194 'testing', |
| 199 'third_party', | 195 'third_party', |
| 200 ] | 196 ] |
| 201 | 197 |
| 202 | 198 |
| 203 hooks = [ | 199 hooks = [ |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 # corresponding .py files have already been deleted. | 322 # corresponding .py files have already been deleted. |
| 327 'name': 'remove_stale_pyc_files', | 323 'name': 'remove_stale_pyc_files', |
| 328 'pattern': 'src/tools/.*\\.py', | 324 'pattern': 'src/tools/.*\\.py', |
| 329 'action': [ | 325 'action': [ |
| 330 'python', | 326 'python', |
| 331 'src/tools/remove_stale_pyc_files.py', | 327 'src/tools/remove_stale_pyc_files.py', |
| 332 'src/tools', | 328 'src/tools', |
| 333 ], | 329 ], |
| 334 }, | 330 }, |
| 335 ] | 331 ] |
| OLD | NEW |