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

Side by Side Diff: DEPS

Issue 12316073: Add DEPS for new third party library in third_party/openmax_dl. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 9 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # When adding a new dependency, please update the top-level .gitignore file 1 # When adding a new dependency, please update the top-level .gitignore file
2 # to list the dependency's destination directory. 2 # to list the dependency's destination directory.
3 3
4 vars = { 4 vars = {
5 # Use this googlecode_url variable only if there is an internal mirror for it. 5 # Use this googlecode_url variable only if there is an internal mirror for it.
6 # If you do not know, use the full path while defining your new deps entry. 6 # If you do not know, use the full path while defining your new deps entry.
7 "googlecode_url": "http://%s.googlecode.com/svn", 7 "googlecode_url": "http://%s.googlecode.com/svn",
8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", 8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s",
9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", 9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk",
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk",
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 "src/third_party/pyftpdlib/src": 283 "src/third_party/pyftpdlib/src":
284 (Var("googlecode_url") % "pyftpdlib") + "/trunk@977", 284 (Var("googlecode_url") % "pyftpdlib") + "/trunk@977",
285 285
286 "src/third_party/scons-2.0.1": 286 "src/third_party/scons-2.0.1":
287 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" + 287 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" +
288 Var("nacl_tools_revision"), 288 Var("nacl_tools_revision"),
289 289
290 "src/third_party/webrtc": 290 "src/third_party/webrtc":
291 (Var("googlecode_url") % "webrtc") + "/stable/webrtc@" + Var("webrtc_revisio n"), 291 (Var("googlecode_url") % "webrtc") + "/stable/webrtc@" + Var("webrtc_revisio n"),
292 292
293 "src/third_party/openmax_dl":
294 (Var("googlecode_url") % "webrtc") + "/deps/third_party/openmax@3709",
295
293 "src/third_party/jsoncpp/source/include": 296 "src/third_party/jsoncpp/source/include":
294 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + 297 (Var("sourceforge_url") % {"repo": "jsoncpp"}) +
295 "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"), 298 "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"),
296 299
297 "src/third_party/jsoncpp/source/src/lib_json": 300 "src/third_party/jsoncpp/source/src/lib_json":
298 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + 301 (Var("sourceforge_url") % {"repo": "jsoncpp"}) +
299 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), 302 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"),
300 303
301 "src/third_party/libyuv": 304 "src/third_party/libyuv":
302 (Var("googlecode_url") % "libyuv") + "/trunk@540", 305 (Var("googlecode_url") % "libyuv") + "/trunk@540",
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
675 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 678 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
676 "pattern": ".", 679 "pattern": ".",
677 "action": ["python", "src/build/gyp_chromium"], 680 "action": ["python", "src/build/gyp_chromium"],
678 }, 681 },
679 { 682 {
680 # Check for landmines (reasons to clobber the build). 683 # Check for landmines (reasons to clobber the build).
681 "pattern": ".", 684 "pattern": ".",
682 "action": ["python", "src/build/landmines.py"], 685 "action": ["python", "src/build/landmines.py"],
683 }, 686 },
684 ] 687 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698