Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: DEPS

Issue 1150903004: Set up binary artifact downloading hook (Closed) Base URL: git@github.com:domokit/monet.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | build/module_args/mojo.gni » ('j') | third_party/mojo/MOJO_VERSION » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 ]
OLDNEW
« no previous file with comments | « no previous file | build/module_args/mojo.gni » ('j') | third_party/mojo/MOJO_VERSION » ('J')

Powered by Google App Engine
This is Rietveld 408576698