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': 'f613c71b2ed7fe4b4eff33fb7fd3b53e640b4359', | 22 'base_revision': 'f613c71b2ed7fe4b4eff33fb7fd3b53e640b4359', |
23 'boringssl_revision': 'a7997f12be358e58aeb2345bb8b88a9d53240024', | 23 'boringssl_revision': 'a7997f12be358e58aeb2345bb8b88a9d53240024', |
24 'buildtools_revision': '222bd42ce39d1bd8f08fe089b066f49c469e1cdf', | 24 'buildtools_revision': '222bd42ce39d1bd8f08fe089b066f49c469e1cdf', |
25 'mojo_devtools_revision': '176889fd2e17f988727847a03b00c158af8a6c52', | 25 'mojo_devtools_revision': '176889fd2e17f988727847a03b00c158af8a6c52', |
26 'mojo_sdk_revision': '88ed73337a362aec488d070424e39c55ecdfa55c', | 26 'mojo_sdk_revision': '3762c8c0b74b48b00786a42fca8f7db7f761935f', |
27 } | 27 } |
28 | 28 |
29 # Only these hosts are allowed for dependencies in this DEPS file. | 29 # Only these hosts are allowed for dependencies in this DEPS file. |
30 # If you need to add a new host, contact chrome infrastructure team. | 30 # If you need to add a new host, contact chrome infrastructure team. |
31 allowed_hosts = [ | 31 allowed_hosts = [ |
32 'boringssl.googlesource.com', | 32 'boringssl.googlesource.com', |
33 'chromium.googlesource.com', | 33 'chromium.googlesource.com', |
34 ] | 34 ] |
35 | 35 |
36 deps = { | 36 deps = { |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 'action': [ 'src/tools/download_from_google_storage.py', | 201 'action': [ 'src/tools/download_from_google_storage.py', |
202 '--no_resume', | 202 '--no_resume', |
203 '--quiet', | 203 '--quiet', |
204 '--platform=linux*', | 204 '--platform=linux*', |
205 '--no_auth', | 205 '--no_auth', |
206 '--bucket', 'mojo/mojom_parser/linux64', | 206 '--bucket', 'mojo/mojom_parser/linux64', |
207 '-s', 'src/third_party/mojo/src/mojo/public/tools/bindings/mojom
_tool/bin/linux64/mojom.sha1', | 207 '-s', 'src/third_party/mojo/src/mojo/public/tools/bindings/mojom
_tool/bin/linux64/mojom.sha1', |
208 ], | 208 ], |
209 }, | 209 }, |
210 ] | 210 ] |
OLD | NEW |