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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 # debugging when used with clang on Ubuntu Precise. | 154 # debugging when used with clang on Ubuntu Precise. |
155 # https://code.google.com/p/chromium/issues/detail?id=352046 | 155 # https://code.google.com/p/chromium/issues/detail?id=352046 |
156 { | 156 { |
157 'name': 'binutils', | 157 'name': 'binutils', |
158 'pattern': 'src/third_party/binutils', | 158 'pattern': 'src/third_party/binutils', |
159 'action': [ | 159 'action': [ |
160 'python', | 160 'python', |
161 'src/third_party/binutils/download.py', | 161 'src/third_party/binutils/download.py', |
162 ], | 162 ], |
163 }, | 163 }, |
| 164 # Pull the mojo_shell binary based on //third_party/mojo/MOJO_VERSION |
| 165 { |
| 166 'name': 'download_mojo_shell', |
| 167 'pattern': '', |
| 168 'action': [ 'python', |
| 169 'src/third_party/mojo/src/mojo/public/tools/download_shell_binar
y.py', |
| 170 '--tools-directory=../../../../../../tools', |
| 171 '--version-file=../../../../MOJO_VERSION', |
| 172 ], |
| 173 }, |
| 174 # Pull the archiecture (sic) independent blobs |
| 175 { |
| 176 'name': 'download_archiecture_independent_frameworks', |
| 177 'pattern': '', |
| 178 'action': [ 'python', |
| 179 'src/third_party/mojo/src/mojo/public/tools/download_archiecture
_independent_frameworks.py', |
| 180 '--tools-directory=../../../../../../tools', |
| 181 '--version-file=../../../../MOJO_VERSION', |
| 182 ], |
| 183 }, |
164 ] | 184 ] |
OLD | NEW |