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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 # the commit queue can handle CLs rolling lss | 47 # the commit queue can handle CLs rolling lss |
48 # and whatever else without interference from each other. | 48 # and whatever else without interference from each other. |
49 'lss_revision': '952107fa7cea0daaabead28c0e92d579bee517eb', | 49 'lss_revision': '952107fa7cea0daaabead28c0e92d579bee517eb', |
50 # Three lines of non-changing comments so that | 50 # Three lines of non-changing comments so that |
51 # the commit queue can handle CLs rolling nss | 51 # the commit queue can handle CLs rolling nss |
52 # and whatever else without interference from each other. | 52 # and whatever else without interference from each other. |
53 'nss_revision': '87b96db4268293187d7cf741907a6d5d1d8080e0', | 53 'nss_revision': '87b96db4268293187d7cf741907a6d5d1d8080e0', |
54 } | 54 } |
55 | 55 |
56 # Only these hosts are allowed for dependencies in this DEPS file. | 56 # Only these hosts are allowed for dependencies in this DEPS file. |
57 # If you need to add a new host, contact chrome infrastracture team. | 57 # If you need to add a new host, contact chrome infrastructure team. |
58 allowed_hosts = [ | 58 allowed_hosts = [ |
59 'chromium.googlesource.com', | 59 'chromium.googlesource.com', |
60 'boringssl.googlesource.com', | 60 'boringssl.googlesource.com', |
61 'pdfium.googlesource.com', | 61 'pdfium.googlesource.com', |
62 ] | 62 ] |
63 | 63 |
64 deps = { | 64 deps = { |
65 'src/buildtools': | 65 'src/buildtools': |
66 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), | 66 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), |
67 | 67 |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 # corresponding .py files have already been deleted. | 298 # corresponding .py files have already been deleted. |
299 'name': 'remove_stale_pyc_files', | 299 'name': 'remove_stale_pyc_files', |
300 'pattern': 'src/tools/.*\\.py', | 300 'pattern': 'src/tools/.*\\.py', |
301 'action': [ | 301 'action': [ |
302 'python', | 302 'python', |
303 'src/tools/remove_stale_pyc_files.py', | 303 'src/tools/remove_stale_pyc_files.py', |
304 'src/tools', | 304 'src/tools', |
305 ], | 305 ], |
306 }, | 306 }, |
307 ] | 307 ] |
OLD | NEW |