Codebase list mozc / e6db051 DEPS
e6db051

Tree @e6db051 (Download .tar.gz)

DEPS @e6db051raw · history · blame

# Copyright 2010-2012, Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
#     * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#     * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following disclaimer
# in the documentation and/or other materials provided with the
# distribution.
#     * Neither the name of Google Inc. nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

vars = {
  "breakpad_revision": "999",
  "clang_helper_in_chromium_revision": "145022",
  "cygwin_in_chromium_revision": "66844",
  "gtest_revision": "617",
  "gmock_revision": "407",
  "gyp_revision": "1473",
  "jsoncpp_revision": "249",
  "memory_watcher_in_chromium_revision": "81926",
  "protobuf_revision": "375",
  "python_in_chromium_revision": "89111",
  "wtl_revision": "459",
  "zinnia_revision": "16",
}

deps = {
  "src/third_party/jsoncpp":
    "http://jsoncpp.svn.sourceforge.net/svnroot/jsoncpp/trunk/jsoncpp@" +
    Var("jsoncpp_revision"),
  "src/third_party/gmock":
    "http://googlemock.googlecode.com/svn/trunk@" + Var("gmock_revision"),
  "src/third_party/gtest":
    "http://googletest.googlecode.com/svn/trunk@" + Var("gtest_revision"),
  "src/third_party/gyp":
    "http://gyp.googlecode.com/svn/trunk@" + Var("gyp_revision"),
  "src/protobuf/files":
    "http://protobuf.googlecode.com/svn/trunk@" + Var("protobuf_revision"),
}

deps_os = {
  "win": {
    "src/third_party/breakpad":
      "http://google-breakpad.googlecode.com/svn/trunk@" +
      Var("breakpad_revision"),
    "src/third_party/cygwin":
      "http://src.chromium.org/svn/trunk/deps/third_party/cygwin@" +
      Var("cygwin_in_chromium_revision"),
    "src/third_party/python_26":
      "http://src.chromium.org/svn/trunk/tools/third_party/python_26@" +
      Var("python_in_chromium_revision"),
    "src/third_party/wtl/files/include":
      "https://wtl.svn.sourceforge.net/svnroot/wtl/trunk/wtl/include@" +
      Var("wtl_revision"),
    "src/third_party/sidestep":
      "http://src.chromium.org/svn/trunk/src/tools/memory_watcher@" +
      Var("memory_watcher_in_chromium_revision"),
    "src/third_party/zinnia/v0_04":
      "https://zinnia.svn.sourceforge.net/svnroot/zinnia/zinnia@" +
      Var("zinnia_revision"),
  },
  "mac": {
    "src/third_party/clang/scripts":
      "https://src.chromium.org/chrome/trunk/src/tools/clang/scripts@" +
      Var("clang_helper_in_chromium_revision"),
    "src/third_party/zinnia/v0_04":
      "https://zinnia.svn.sourceforge.net/svnroot/zinnia/zinnia@" +
       Var("zinnia_revision"),
  },
  "linux": {
    "src/third_party/clang/scripts":
      "https://src.chromium.org/chrome/trunk/src/tools/clang/scripts@" +
      Var("clang_helper_in_chromium_revision"),
  },
}