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 # |
11 # Then commit .DEPS.git locally (gclient doesn't like dirty trees) and run | 11 # Then commit .DEPS.git locally (gclient doesn't like dirty trees) and run |
12 # gclient sync | 12 # gclient sync |
13 # Verify the thing happened you wanted. Then revert your .DEPS.git change | 13 # Verify the thing happened you wanted. Then revert your .DEPS.git change |
14 # DO NOT CHECK IN CHANGES TO .DEPS.git upstream. It will be automatically | 14 # DO NOT CHECK IN CHANGES TO .DEPS.git upstream. It will be automatically |
15 # updated by a bot when you modify this one. | 15 # updated by a bot when you modify this one. |
16 # | 16 # |
17 # When adding a new dependency, please update the top-level .gitignore file | 17 # When adding a new dependency, please update the top-level .gitignore file |
18 # to list the dependency's destination directory. | 18 # to list the dependency's destination directory. |
19 | 19 |
20 vars = { | 20 vars = { |
21 'chromium_git': 'https://chromium.googlesource.com', | 21 'chromium_git': 'https://chromium.googlesource.com', |
22 'base_revision': '5e00da80f6adb7082d1c0e88d3274cf87cc43bc5', | 22 'base_revision': '5e00da80f6adb7082d1c0e88d3274cf87cc43bc5', |
23 'boringssl_revision': '2deb984187ce8f6c739c780e7fe95e859e93b3da', | 23 'boringssl_revision': '2deb984187ce8f6c739c780e7fe95e859e93b3da', |
24 'buildtools_revision': '222bd42ce39d1bd8f08fe089b066f49c469e1cdf', | 24 'buildtools_revision': '222bd42ce39d1bd8f08fe089b066f49c469e1cdf', |
25 'gurl_revision': '718eee97ed6a4df41d14726eb2eddc871d9eaaa3', | 25 'gurl_revision': '718eee97ed6a4df41d14726eb2eddc871d9eaaa3', |
26 'mojo_devtools_revision': 'd498890dc825363948a5852a2328b8ef937f5af4', | 26 'mojo_devtools_revision': 'd498890dc825363948a5852a2328b8ef937f5af4', |
27 'mojo_sdk_revision': '180ed7067bf773b345983aad50a9c3f378bffd14', | 27 'mojo_sdk_revision': 'ba9b92853a4f3df9222674d619dcf011214d4054', |
28 } | 28 } |
29 | 29 |
30 # Only these hosts are allowed for dependencies in this DEPS file. | 30 # Only these hosts are allowed for dependencies in this DEPS file. |
31 # If you need to add a new host, contact chrome infrastructure team. | 31 # If you need to add a new host, contact chrome infrastructure team. |
32 allowed_hosts = [ | 32 allowed_hosts = [ |
33 'boringssl.googlesource.com', | 33 'boringssl.googlesource.com', |
34 'chromium.googlesource.com', | 34 'chromium.googlesource.com', |
35 ] | 35 ] |
36 | 36 |
37 deps = { | 37 deps = { |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 'action': [ 'src/tools/download_from_google_storage.py', | 205 'action': [ 'src/tools/download_from_google_storage.py', |
206 '--no_resume', | 206 '--no_resume', |
207 '--quiet', | 207 '--quiet', |
208 '--platform=linux*', | 208 '--platform=linux*', |
209 '--no_auth', | 209 '--no_auth', |
210 '--bucket', 'mojo/mojom_parser/linux64', | 210 '--bucket', 'mojo/mojom_parser/linux64', |
211 '-s', 'src/third_party/mojo/src/mojo/public/tools/bindings/mojom
_tool/bin/linux64/mojom.sha1', | 211 '-s', 'src/third_party/mojo/src/mojo/public/tools/bindings/mojom
_tool/bin/linux64/mojom.sha1', |
212 ], | 212 ], |
213 }, | 213 }, |
214 ] | 214 ] |
OLD | NEW |