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

Side by Side Diff: DEPS

Issue 8505051: Support mozc suggest window on ChromeOS. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: rebase Created 9 years 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chromeos/input_method/candidate_window.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 vars = { 1 vars = {
2 # Use this googlecode_url variable only if there is an internal mirror for it. 2 # Use this googlecode_url variable only if there is an internal mirror for it.
3 # If you do not know, use the full path while defining your new deps entry. 3 # If you do not know, use the full path while defining your new deps entry.
4 "googlecode_url": "http://%s.googlecode.com/svn", 4 "googlecode_url": "http://%s.googlecode.com/svn",
5 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", 5 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s",
6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", 6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk",
7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", 7 "nacl_trunk": "http://src.chromium.org/native_client/trunk",
8 "webkit_revision": "101876", 8 "webkit_revision": "101876",
9 "chromium_git": "http://git.chromium.org/git", 9 "chromium_git": "http://git.chromium.org/git",
10 "swig_revision": "69281", 10 "swig_revision": "69281",
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"), 288 "/trunk/jsoncpp/include@" + Var("jsoncpp_revision"),
289 289
290 "src/third_party/jsoncpp/source/src/lib_json": 290 "src/third_party/jsoncpp/source/src/lib_json":
291 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + 291 (Var("sourceforge_url") % {"repo": "jsoncpp"}) +
292 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), 292 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"),
293 293
294 "src/third_party/libyuv": 294 "src/third_party/libyuv":
295 (Var("googlecode_url") % "libyuv") + "/trunk@64", 295 (Var("googlecode_url") % "libyuv") + "/trunk@64",
296 296
297 "src/third_party/mozc/session": 297 "src/third_party/mozc/session":
298 (Var("googlecode_url") % "mozc") + "/trunk/src/session@58", 298 (Var("googlecode_url") % "mozc") + "/trunk/src/session@83",
299
300 "src/third_party/mozc/chrome/chromeos/renderer":
301 (Var("googlecode_url") % "mozc") + "/trunk/src/chrome/chromeos/renderer@83",
299 302
300 "src/third_party/smhasher/src": 303 "src/third_party/smhasher/src":
301 (Var("googlecode_url") % "smhasher") + "/trunk@136", 304 (Var("googlecode_url") % "smhasher") + "/trunk@136",
302 305
303 "src/third_party/libphonenumber/src/phonenumbers": 306 "src/third_party/libphonenumber/src/phonenumbers":
304 (Var("googlecode_url") % "libphonenumber") + 307 (Var("googlecode_url") % "libphonenumber") +
305 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"), 308 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"),
306 "src/third_party/libphonenumber/src/test": 309 "src/third_party/libphonenumber/src/test":
307 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" + 310 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" +
308 Var("libphonenumber_revision"), 311 Var("libphonenumber_revision"),
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 # which takes ~20s, but clang speeds up builds by more than 20s. 478 # which takes ~20s, but clang speeds up builds by more than 20s.
476 "pattern": ".", 479 "pattern": ".",
477 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"], 480 "action": ["python", "src/tools/clang/scripts/update.py", "--mac-only"],
478 }, 481 },
479 { 482 {
480 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 483 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
481 "pattern": ".", 484 "pattern": ".",
482 "action": ["python", "src/build/gyp_chromium"], 485 "action": ["python", "src/build/gyp_chromium"],
483 }, 486 },
484 ] 487 ]
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/input_method/candidate_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698